diff --git a/common/define-grammar.js b/common/define-grammar.js index d259523d..cee6b609 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -30,6 +30,10 @@ const PREC = { }; module.exports = function defineGrammar(dialect) { + if (dialect !== 'php' && dialect !== 'php_only') { + throw new Error(`Unknown dialect ${dialect}`); + } + return grammar({ name: dialect, @@ -87,20 +91,37 @@ module.exports = function defineGrammar(dialect) { $._variable_name, ], - extras: $ => [ - $.comment, - /[\s\uFEFF\u2060\u200B\u00A0]/, - $.text_interpolation - ], + extras: $ => { + const extras = [ + $.comment, + /[\s\uFEFF\u2060\u200B\u00A0]/, + ]; + + if (dialect === 'php') { + extras.push($.text_interpolation); + } + + return extras; + }, rules: { - program: $ => seq( - optional($.text), - optional(seq( - $.php_tag, - repeat($._statement) - )) - ), + program: $ => { + if (dialect === 'php') { + return seq( + optional($.text), + optional(seq( + $.php_tag, + repeat($._statement) + )), + ); + } + + return seq( + optional($.php_tag), + repeat($._statement), + optional('?>'), + ); + }, php_tag: $ => /<\?([pP][hH][pP]|=)?/, diff --git a/common/test/corpus/expressions.txt b/common/test/corpus/expressions.txt index 76a48a27..274ad1d1 100644 --- a/common/test/corpus/expressions.txt +++ b/common/test/corpus/expressions.txt @@ -402,7 +402,6 @@ Associativity of conditional --- @@ -415,8 +414,7 @@ true ? false : true ? "a" : "b"; (boolean) (boolean)) (encapsed_string (string_value)) - (encapsed_string (string_value)))) - (text_interpolation)) + (encapsed_string (string_value))))) ================================================= Associativity of null-coalescence @@ -424,7 +422,6 @@ Associativity of null-coalescence --- @@ -435,8 +432,7 @@ NULL ?? NULL ?? 1; (null) (binary_expression (null) - (integer)))) - (text_interpolation)) + (integer))))) ========================================= Associativity of negation @@ -445,7 +441,6 @@ Associativity of negation --- @@ -462,8 +457,7 @@ Associativity of negation (binary_expression (variable_name (name)) - (name)))) - (text_interpolation)) + (name))))) ==================================== Augmented assignment @@ -474,7 +468,6 @@ $i .= $j = "a"; $i += $j += 3; $i .= "a" . "b"; "a" . $i .= "b"; -?> --- @@ -509,8 +502,7 @@ $i .= "a" . "b"; (augmented_assignment_expression (variable_name (name)) - (encapsed_string (string_value))))) - (text_interpolation)) + (encapsed_string (string_value)))))) ======================================= Nested assignemnts @@ -649,7 +641,6 @@ Arrays print_r([1, 2, 3]); print_r(["foo" => "orange", "bar" => "apple", "baz" => "lemon"]); $a = [...$values]; -?> --- @@ -678,13 +669,7 @@ $a = [...$values]; (array_creation_expression (array_element_initializer (variadic_unpacking - (variable_name (name)) - ) - ) - ) - ) - ) - (text_interpolation)) + (variable_name (name)))))))) =============================================== Anonymous functions @@ -1020,7 +1005,7 @@ function foo() {} (arguments (variadic_placeholder)) ) ) - + (comment) (expression_statement (object_creation_expression @@ -1028,7 +1013,7 @@ function foo() {} (arguments (variadic_placeholder)) ) ) - + (function_definition (attribute_list (attribute_group diff --git a/common/test/corpus/literals.txt b/common/test/corpus/literals.txt index a8f71752..de45741e 100644 --- a/common/test/corpus/literals.txt +++ b/common/test/corpus/literals.txt @@ -9,7 +9,6 @@ TRUE; false; False; FALSE; -?> --- @@ -20,8 +19,7 @@ FALSE; (expression_statement (boolean)) (expression_statement (boolean)) (expression_statement (boolean)) - (expression_statement (boolean)) - (text_interpolation)) + (expression_statement (boolean))) ========================== Floats @@ -85,14 +83,16 @@ Integers Testing string scanner confirmance ============================== - + - - - ---- - -(program - (php_tag) - (if_statement - condition: (parenthesized_expression (variable_name (name))) - body: (colon_block - (text_interpolation (php_tag)) - (if_statement - condition: (parenthesized_expression (variable_name (name))) - body: (compound_statement (expression_statement (variable_name (name)))) - ) - ) - (text_interpolation (php_tag)) - alternative: (else_clause - body: (colon_block - (expression_statement (variable_name (name))) - ) - ) - ) - (text_interpolation) -) - ============================== While statements ============================== @@ -222,7 +176,6 @@ switch ($a) { echo "bad"; break; } -?> --- @@ -238,8 +191,7 @@ switch ($a) { value: (integer) (echo_statement (encapsed_string (string_value))) (break_statement)) (default_statement - (echo_statement (encapsed_string (string_value))) (break_statement)))) - (text_interpolation)) + (echo_statement (encapsed_string (string_value))) (break_statement))))) ============================== Alternative switch statements diff --git a/common/test/corpus/interpolation.txt b/php/test/corpus/interpolation.txt similarity index 78% rename from common/test/corpus/interpolation.txt rename to php/test/corpus/interpolation.txt index fa4e6dbe..0482c975 100644 --- a/common/test/corpus/interpolation.txt +++ b/php/test/corpus/interpolation.txt @@ -144,7 +144,7 @@ echo "hi"; ======================================= -Singel line comment without any content +Single line comment without any content ======================================= b + + + +--- + +(program + (php_tag) + (if_statement + condition: (parenthesized_expression (variable_name (name))) + body: (colon_block + (text_interpolation (php_tag)) + (if_statement + condition: (parenthesized_expression (variable_name (name))) + body: (compound_statement (expression_statement (variable_name (name)))) + ) + ) + (text_interpolation (php_tag)) + alternative: (else_clause + body: (colon_block + (expression_statement (variable_name (name))) + ) + ) + ) + (text_interpolation) +) + diff --git a/php_only/src/grammar.json b/php_only/src/grammar.json index 3177e131..638bd9ee 100644 --- a/php_only/src/grammar.json +++ b/php_only/src/grammar.json @@ -10,31 +10,26 @@ "members": [ { "type": "SYMBOL", - "name": "text" + "name": "php_tag" }, { "type": "BLANK" } ] }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "php_tag" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] + "type": "STRING", + "value": "?>" }, { "type": "BLANK" @@ -8944,10 +8939,6 @@ { "type": "PATTERN", "value": "[\\s\\uFEFF\\u2060\\u200B\\u00A0]" - }, - { - "type": "SYMBOL", - "name": "text_interpolation" } ], "conflicts": [ diff --git a/php_only/src/node-types.json b/php_only/src/node-types.json index 92245103..16bc156e 100644 --- a/php_only/src/node-types.json +++ b/php_only/src/node-types.json @@ -3661,10 +3661,6 @@ { "type": "php_tag", "named": true - }, - { - "type": "text", - "named": true } ] } @@ -4521,25 +4517,6 @@ "named": true, "fields": {} }, - { - "type": "text_interpolation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "php_tag", - "named": true - }, - { - "type": "text", - "named": true - } - ] - } - }, { "type": "throw_expression", "named": true, @@ -5491,11 +5468,11 @@ }, { "type": "null", - "named": true + "named": false }, { "type": "null", - "named": false + "named": true }, { "type": "or", diff --git a/php_only/src/parser.c b/php_only/src/parser.c index b554ffba..5be3a80f 100644 --- a/php_only/src/parser.c +++ b/php_only/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2658 -#define LARGE_STATE_COUNT 575 -#define SYMBOL_COUNT 403 +#define STATE_COUNT 2612 +#define LARGE_STATE_COUNT 568 +#define SYMBOL_COUNT 399 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 196 +#define TOKEN_COUNT 195 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 25 #define MAX_ALIAS_SEQUENCE_LENGTH 12 @@ -18,416 +18,411 @@ enum ts_symbol_identifiers { sym_name = 1, - sym_php_tag = 2, - anon_sym_QMARK_GT = 3, + anon_sym_QMARK_GT = 2, + sym_php_tag = 3, aux_sym_text_token1 = 4, - aux_sym_text_token2 = 5, - anon_sym_SEMI = 6, - anon_sym_AMP = 7, - aux_sym_function_static_declaration_token1 = 8, - anon_sym_COMMA = 9, - anon_sym_EQ = 10, - aux_sym_global_declaration_token1 = 11, - aux_sym_namespace_definition_token1 = 12, - aux_sym_namespace_use_declaration_token1 = 13, - aux_sym_namespace_use_declaration_token2 = 14, - aux_sym_namespace_use_declaration_token3 = 15, - anon_sym_BSLASH = 16, - aux_sym_namespace_aliasing_clause_token1 = 17, - anon_sym_LBRACE = 18, - anon_sym_RBRACE = 19, - aux_sym_trait_declaration_token1 = 20, - aux_sym_interface_declaration_token1 = 21, - aux_sym_base_clause_token1 = 22, - aux_sym_enum_declaration_token1 = 23, - anon_sym_COLON = 24, - anon_sym_string = 25, - anon_sym_int = 26, - aux_sym_enum_case_token1 = 27, - aux_sym_class_declaration_token1 = 28, - aux_sym_final_modifier_token1 = 29, - aux_sym_abstract_modifier_token1 = 30, - aux_sym_readonly_modifier_token1 = 31, - aux_sym_class_interface_clause_token1 = 32, - sym_var_modifier = 33, - aux_sym_use_instead_of_clause_token1 = 34, - aux_sym_visibility_modifier_token1 = 35, - aux_sym_visibility_modifier_token2 = 36, - aux_sym_visibility_modifier_token3 = 37, - aux_sym__arrow_function_header_token1 = 38, - anon_sym_EQ_GT = 39, - anon_sym_LPAREN = 40, - anon_sym_RPAREN = 41, - anon_sym_DOT_DOT_DOT = 42, - anon_sym_QMARK = 43, - sym_bottom_type = 44, - anon_sym_PIPE = 45, - anon_sym_array = 46, - aux_sym_primitive_type_token1 = 47, - anon_sym_iterable = 48, - anon_sym_bool = 49, - anon_sym_float = 50, - anon_sym_void = 51, - anon_sym_mixed = 52, - anon_sym_static = 53, - anon_sym_false = 54, - anon_sym_null = 55, - anon_sym_true = 56, - aux_sym_cast_type_token1 = 57, - aux_sym_cast_type_token2 = 58, - aux_sym_cast_type_token3 = 59, - aux_sym_cast_type_token4 = 60, - aux_sym_cast_type_token5 = 61, - aux_sym_cast_type_token6 = 62, - aux_sym_cast_type_token7 = 63, - aux_sym_cast_type_token8 = 64, - aux_sym_cast_type_token9 = 65, - aux_sym_cast_type_token10 = 66, - aux_sym_cast_type_token11 = 67, - aux_sym_cast_type_token12 = 68, - aux_sym_echo_statement_token1 = 69, - anon_sym_unset = 70, - aux_sym_declare_statement_token1 = 71, - aux_sym_declare_statement_token2 = 72, - anon_sym_ticks = 73, - anon_sym_encoding = 74, - anon_sym_strict_types = 75, - sym_float = 76, - aux_sym_try_statement_token1 = 77, - aux_sym_catch_clause_token1 = 78, - aux_sym_finally_clause_token1 = 79, - aux_sym_goto_statement_token1 = 80, - aux_sym_continue_statement_token1 = 81, - aux_sym_break_statement_token1 = 82, - sym_integer = 83, - aux_sym_return_statement_token1 = 84, - aux_sym_throw_expression_token1 = 85, - aux_sym_while_statement_token1 = 86, - aux_sym_while_statement_token2 = 87, - aux_sym_do_statement_token1 = 88, - aux_sym_for_statement_token1 = 89, - aux_sym_for_statement_token2 = 90, - aux_sym_foreach_statement_token1 = 91, - aux_sym_foreach_statement_token2 = 92, - aux_sym_if_statement_token1 = 93, - aux_sym_if_statement_token2 = 94, - aux_sym_else_if_clause_token1 = 95, - aux_sym_else_clause_token1 = 96, - aux_sym_match_expression_token1 = 97, - aux_sym_match_default_expression_token1 = 98, - aux_sym_switch_statement_token1 = 99, - aux_sym_switch_block_token1 = 100, - anon_sym_AT = 101, - anon_sym_PLUS = 102, - anon_sym_DASH = 103, - anon_sym_TILDE = 104, - anon_sym_BANG = 105, - anon_sym_STAR_STAR = 106, - aux_sym_clone_expression_token1 = 107, - anon_sym_COLON_COLON = 108, - aux_sym_print_intrinsic_token1 = 109, - aux_sym_object_creation_expression_token1 = 110, - anon_sym_PLUS_PLUS = 111, - anon_sym_DASH_DASH = 112, - anon_sym_STAR_STAR_EQ = 113, - anon_sym_STAR_EQ = 114, - anon_sym_SLASH_EQ = 115, - anon_sym_PERCENT_EQ = 116, - anon_sym_PLUS_EQ = 117, - anon_sym_DASH_EQ = 118, - anon_sym_DOT_EQ = 119, - anon_sym_LT_LT_EQ = 120, - anon_sym_GT_GT_EQ = 121, - anon_sym_AMP_EQ = 122, - anon_sym_CARET_EQ = 123, - anon_sym_PIPE_EQ = 124, - anon_sym_QMARK_QMARK_EQ = 125, - anon_sym_DASH_GT = 126, - anon_sym_QMARK_DASH_GT = 127, - aux_sym__list_destructing_token1 = 128, - anon_sym_LBRACK = 129, - anon_sym_RBRACK = 130, - anon_sym_self = 131, - anon_sym_parent = 132, - anon_sym_POUND_LBRACK = 133, - sym_escape_sequence = 134, - anon_sym_BSLASHu = 135, - anon_sym_SQUOTE = 136, - anon_sym_LT_QMARK = 137, - anon_sym_QMARK_GT2 = 138, - aux_sym_encapsed_string_token1 = 139, - anon_sym_DQUOTE = 140, - aux_sym_string_token1 = 141, - sym_string_value = 142, - anon_sym_LT_LT_LT = 143, - anon_sym_DQUOTE2 = 144, - aux_sym__new_line_token1 = 145, - aux_sym__new_line_token2 = 146, - anon_sym_ = 147, - anon_sym_SQUOTE2 = 148, - anon_sym_BQUOTE = 149, - sym_boolean = 150, - sym_null = 151, - anon_sym_DOLLAR = 152, - aux_sym_yield_expression_token1 = 153, - aux_sym_yield_expression_token2 = 154, - aux_sym_binary_expression_token1 = 155, - anon_sym_QMARK_QMARK = 156, - aux_sym_binary_expression_token2 = 157, - aux_sym_binary_expression_token3 = 158, - aux_sym_binary_expression_token4 = 159, - anon_sym_PIPE_PIPE = 160, - anon_sym_AMP_AMP = 161, - anon_sym_CARET = 162, - anon_sym_EQ_EQ = 163, - anon_sym_BANG_EQ = 164, - anon_sym_LT_GT = 165, - anon_sym_EQ_EQ_EQ = 166, - anon_sym_BANG_EQ_EQ = 167, - anon_sym_LT = 168, - anon_sym_GT = 169, - anon_sym_LT_EQ = 170, - anon_sym_GT_EQ = 171, - anon_sym_LT_EQ_GT = 172, - anon_sym_LT_LT = 173, - anon_sym_GT_GT = 174, - anon_sym_DOT = 175, - anon_sym_STAR = 176, - anon_sym_SLASH = 177, - anon_sym_PERCENT = 178, - aux_sym_include_expression_token1 = 179, - aux_sym_include_once_expression_token1 = 180, - aux_sym_require_expression_token1 = 181, - aux_sym_require_once_expression_token1 = 182, - sym_comment = 183, - sym__automatic_semicolon = 184, - sym_encapsed_string_chars = 185, - sym_encapsed_string_chars_after_variable = 186, - sym_execution_string_chars = 187, - sym_execution_string_chars_after_variable = 188, - sym_encapsed_string_chars_heredoc = 189, - sym_encapsed_string_chars_after_variable_heredoc = 190, - sym__eof = 191, - sym_heredoc_start = 192, - sym_heredoc_end = 193, - sym_nowdoc_string = 194, - sym_sentinel_error = 195, - sym_program = 196, - sym_text_interpolation = 197, - sym_text = 198, - sym_empty_statement = 199, - sym_reference_modifier = 200, - sym_function_static_declaration = 201, - sym_static_variable_declaration = 202, - sym_global_declaration = 203, - sym_namespace_definition = 204, - sym_namespace_use_declaration = 205, - sym_namespace_use_clause = 206, - sym_qualified_name = 207, - sym_namespace_name_as_prefix = 208, - sym_namespace_name = 209, - sym_namespace_aliasing_clause = 210, - sym_namespace_use_group = 211, - sym_namespace_use_group_clause = 212, - sym_trait_declaration = 213, - sym_interface_declaration = 214, - sym_base_clause = 215, - sym_enum_declaration = 216, - sym_enum_declaration_list = 217, - sym__enum_member_declaration = 218, - sym_enum_case = 219, - sym_class_declaration = 220, - sym_declaration_list = 221, - sym_final_modifier = 222, - sym_abstract_modifier = 223, - sym_readonly_modifier = 224, - sym_class_interface_clause = 225, - sym__member_declaration = 226, - sym_const_declaration = 227, - sym__class_const_declaration = 228, - sym__const_declaration = 229, - sym_property_declaration = 230, - sym__modifier = 231, - sym_property_element = 232, - sym_property_initializer = 233, - sym_method_declaration = 234, - sym_static_modifier = 235, - sym_use_declaration = 236, - sym_use_list = 237, - sym_use_instead_of_clause = 238, - sym_use_as_clause = 239, - sym_visibility_modifier = 240, - sym_function_definition = 241, - sym__function_definition_header = 242, - sym__arrow_function_header = 243, - sym_arrow_function = 244, - sym_formal_parameters = 245, - sym_property_promotion_parameter = 246, - sym_simple_parameter = 247, - sym_variadic_parameter = 248, - sym__type = 249, - sym__types = 250, - sym_named_type = 251, - sym_optional_type = 252, - sym_union_type = 253, - sym_intersection_type = 254, - sym_primitive_type = 255, - sym_cast_type = 256, - sym__return_type = 257, - sym_const_element = 258, - sym_echo_statement = 259, - sym_unset_statement = 260, - sym_declare_statement = 261, - sym_declare_directive = 262, - sym_try_statement = 263, - sym_catch_clause = 264, - sym_type_list = 265, - sym_finally_clause = 266, - sym_goto_statement = 267, - sym_continue_statement = 268, - sym_break_statement = 269, - sym_return_statement = 270, - sym_throw_expression = 271, - sym_while_statement = 272, - sym_do_statement = 273, - sym_for_statement = 274, - sym__expressions = 275, - sym_sequence_expression = 276, - sym_foreach_statement = 277, - sym_foreach_pair = 278, - sym_if_statement = 279, - sym_colon_block = 280, - sym_else_if_clause = 281, - sym_else_clause = 282, - sym_else_if_clause_2 = 283, - sym_else_clause_2 = 284, - sym_match_expression = 285, - sym_match_block = 286, - sym_match_condition_list = 287, - sym_match_conditional_expression = 288, - sym_match_default_expression = 289, - sym_switch_statement = 290, - sym_switch_block = 291, - sym_case_statement = 292, - sym_default_statement = 293, - sym_compound_statement = 294, - sym_named_label_statement = 295, - sym_expression_statement = 296, - sym__expression = 297, - sym__unary_expression = 298, - sym_unary_op_expression = 299, - sym_exponentiation_expression = 300, - sym_clone_expression = 301, - sym__primary_expression = 302, - sym_parenthesized_expression = 303, - sym_class_constant_access_expression = 304, - sym_print_intrinsic = 305, - sym_anonymous_function_creation_expression = 306, - sym_anonymous_function_use_clause = 307, - sym_object_creation_expression = 308, - sym_update_expression = 309, - sym_cast_expression = 310, - sym_cast_variable = 311, - sym_assignment_expression = 312, - sym_reference_assignment_expression = 313, - sym_conditional_expression = 314, - sym_augmented_assignment_expression = 315, - sym_member_access_expression = 316, - sym_nullsafe_member_access_expression = 317, - sym_scoped_property_access_expression = 318, - sym_list_literal = 319, - sym__list_destructing = 320, - sym__array_destructing = 321, - sym__array_destructing_element = 322, - sym_function_call_expression = 323, - sym_scoped_call_expression = 324, - sym__scope_resolution_qualifier = 325, - sym_relative_scope = 326, - sym_variadic_placeholder = 327, - sym_arguments = 328, - sym_argument = 329, - sym_member_call_expression = 330, - sym_nullsafe_member_call_expression = 331, - sym_variadic_unpacking = 332, - sym_subscript_expression = 333, - sym__dereferencable_expression = 334, - sym_array_creation_expression = 335, - sym_attribute_group = 336, - sym_attribute_list = 337, - sym_attribute = 338, - sym__complex_string_part = 339, - sym__simple_string_member_access_expression = 340, - sym__simple_string_subscript_unary_expression = 341, - sym__simple_string_array_access_argument = 342, - sym__simple_string_subscript_expression = 343, - sym__simple_string_part = 344, - aux_sym__interpolated_string_body = 345, - aux_sym__interpolated_string_body_heredoc = 346, - sym_encapsed_string = 347, - sym_string = 348, - sym_heredoc_body = 349, - sym_heredoc = 350, - sym__new_line = 351, - sym_nowdoc_body = 352, - sym_nowdoc = 353, - aux_sym__interpolated_execution_operator_body = 354, - sym_shell_command_expression = 355, - sym__string = 356, - sym_dynamic_variable_name = 357, - sym_variable_name = 358, - sym_variable_reference = 359, - sym_by_ref = 360, - sym_yield_expression = 361, - sym_array_element_initializer = 362, - sym_binary_expression = 363, - sym_include_expression = 364, - sym_include_once_expression = 365, - sym_require_expression = 366, - sym_require_once_expression = 367, - sym__reserved_identifier = 368, - aux_sym_program_repeat1 = 369, - aux_sym_text_repeat1 = 370, - aux_sym_function_static_declaration_repeat1 = 371, - aux_sym_global_declaration_repeat1 = 372, - aux_sym_namespace_use_declaration_repeat1 = 373, - aux_sym_namespace_name_repeat1 = 374, - aux_sym_namespace_use_group_repeat1 = 375, - aux_sym_base_clause_repeat1 = 376, - aux_sym_enum_declaration_list_repeat1 = 377, - aux_sym_declaration_list_repeat1 = 378, - aux_sym__const_declaration_repeat1 = 379, - aux_sym_property_declaration_repeat1 = 380, - aux_sym_property_declaration_repeat2 = 381, - aux_sym_use_list_repeat1 = 382, - aux_sym_formal_parameters_repeat1 = 383, - aux_sym_union_type_repeat1 = 384, - aux_sym_intersection_type_repeat1 = 385, - aux_sym_unset_statement_repeat1 = 386, - aux_sym_try_statement_repeat1 = 387, - aux_sym_type_list_repeat1 = 388, - aux_sym_if_statement_repeat1 = 389, - aux_sym_if_statement_repeat2 = 390, - aux_sym_match_block_repeat1 = 391, - aux_sym_match_condition_list_repeat1 = 392, - aux_sym_switch_block_repeat1 = 393, - aux_sym_anonymous_function_use_clause_repeat1 = 394, - aux_sym__list_destructing_repeat1 = 395, - aux_sym__array_destructing_repeat1 = 396, - aux_sym_arguments_repeat1 = 397, - aux_sym_array_creation_expression_repeat1 = 398, - aux_sym_attribute_group_repeat1 = 399, - aux_sym_attribute_list_repeat1 = 400, - aux_sym_heredoc_body_repeat1 = 401, - aux_sym_nowdoc_body_repeat1 = 402, + anon_sym_SEMI = 5, + anon_sym_AMP = 6, + aux_sym_function_static_declaration_token1 = 7, + anon_sym_COMMA = 8, + anon_sym_EQ = 9, + aux_sym_global_declaration_token1 = 10, + aux_sym_namespace_definition_token1 = 11, + aux_sym_namespace_use_declaration_token1 = 12, + aux_sym_namespace_use_declaration_token2 = 13, + aux_sym_namespace_use_declaration_token3 = 14, + anon_sym_BSLASH = 15, + aux_sym_namespace_aliasing_clause_token1 = 16, + anon_sym_LBRACE = 17, + anon_sym_RBRACE = 18, + aux_sym_trait_declaration_token1 = 19, + aux_sym_interface_declaration_token1 = 20, + aux_sym_base_clause_token1 = 21, + aux_sym_enum_declaration_token1 = 22, + anon_sym_COLON = 23, + anon_sym_string = 24, + anon_sym_int = 25, + aux_sym_enum_case_token1 = 26, + aux_sym_class_declaration_token1 = 27, + aux_sym_final_modifier_token1 = 28, + aux_sym_abstract_modifier_token1 = 29, + aux_sym_readonly_modifier_token1 = 30, + aux_sym_class_interface_clause_token1 = 31, + sym_var_modifier = 32, + aux_sym_use_instead_of_clause_token1 = 33, + aux_sym_visibility_modifier_token1 = 34, + aux_sym_visibility_modifier_token2 = 35, + aux_sym_visibility_modifier_token3 = 36, + aux_sym__arrow_function_header_token1 = 37, + anon_sym_EQ_GT = 38, + anon_sym_LPAREN = 39, + anon_sym_RPAREN = 40, + anon_sym_DOT_DOT_DOT = 41, + anon_sym_QMARK = 42, + sym_bottom_type = 43, + anon_sym_PIPE = 44, + anon_sym_array = 45, + aux_sym_primitive_type_token1 = 46, + anon_sym_iterable = 47, + anon_sym_bool = 48, + anon_sym_float = 49, + anon_sym_void = 50, + anon_sym_mixed = 51, + anon_sym_static = 52, + anon_sym_false = 53, + anon_sym_null = 54, + anon_sym_true = 55, + aux_sym_cast_type_token1 = 56, + aux_sym_cast_type_token2 = 57, + aux_sym_cast_type_token3 = 58, + aux_sym_cast_type_token4 = 59, + aux_sym_cast_type_token5 = 60, + aux_sym_cast_type_token6 = 61, + aux_sym_cast_type_token7 = 62, + aux_sym_cast_type_token8 = 63, + aux_sym_cast_type_token9 = 64, + aux_sym_cast_type_token10 = 65, + aux_sym_cast_type_token11 = 66, + aux_sym_cast_type_token12 = 67, + aux_sym_echo_statement_token1 = 68, + anon_sym_unset = 69, + aux_sym_declare_statement_token1 = 70, + aux_sym_declare_statement_token2 = 71, + anon_sym_ticks = 72, + anon_sym_encoding = 73, + anon_sym_strict_types = 74, + sym_float = 75, + aux_sym_try_statement_token1 = 76, + aux_sym_catch_clause_token1 = 77, + aux_sym_finally_clause_token1 = 78, + aux_sym_goto_statement_token1 = 79, + aux_sym_continue_statement_token1 = 80, + aux_sym_break_statement_token1 = 81, + sym_integer = 82, + aux_sym_return_statement_token1 = 83, + aux_sym_throw_expression_token1 = 84, + aux_sym_while_statement_token1 = 85, + aux_sym_while_statement_token2 = 86, + aux_sym_do_statement_token1 = 87, + aux_sym_for_statement_token1 = 88, + aux_sym_for_statement_token2 = 89, + aux_sym_foreach_statement_token1 = 90, + aux_sym_foreach_statement_token2 = 91, + aux_sym_if_statement_token1 = 92, + aux_sym_if_statement_token2 = 93, + aux_sym_else_if_clause_token1 = 94, + aux_sym_else_clause_token1 = 95, + aux_sym_match_expression_token1 = 96, + aux_sym_match_default_expression_token1 = 97, + aux_sym_switch_statement_token1 = 98, + aux_sym_switch_block_token1 = 99, + anon_sym_AT = 100, + anon_sym_PLUS = 101, + anon_sym_DASH = 102, + anon_sym_TILDE = 103, + anon_sym_BANG = 104, + anon_sym_STAR_STAR = 105, + aux_sym_clone_expression_token1 = 106, + anon_sym_COLON_COLON = 107, + aux_sym_print_intrinsic_token1 = 108, + aux_sym_object_creation_expression_token1 = 109, + anon_sym_PLUS_PLUS = 110, + anon_sym_DASH_DASH = 111, + anon_sym_STAR_STAR_EQ = 112, + anon_sym_STAR_EQ = 113, + anon_sym_SLASH_EQ = 114, + anon_sym_PERCENT_EQ = 115, + anon_sym_PLUS_EQ = 116, + anon_sym_DASH_EQ = 117, + anon_sym_DOT_EQ = 118, + anon_sym_LT_LT_EQ = 119, + anon_sym_GT_GT_EQ = 120, + anon_sym_AMP_EQ = 121, + anon_sym_CARET_EQ = 122, + anon_sym_PIPE_EQ = 123, + anon_sym_QMARK_QMARK_EQ = 124, + anon_sym_DASH_GT = 125, + anon_sym_QMARK_DASH_GT = 126, + aux_sym__list_destructing_token1 = 127, + anon_sym_LBRACK = 128, + anon_sym_RBRACK = 129, + anon_sym_self = 130, + anon_sym_parent = 131, + anon_sym_POUND_LBRACK = 132, + sym_escape_sequence = 133, + anon_sym_BSLASHu = 134, + anon_sym_SQUOTE = 135, + anon_sym_LT_QMARK = 136, + anon_sym_QMARK_GT2 = 137, + aux_sym_encapsed_string_token1 = 138, + anon_sym_DQUOTE = 139, + aux_sym_string_token1 = 140, + sym_string_value = 141, + anon_sym_LT_LT_LT = 142, + anon_sym_DQUOTE2 = 143, + aux_sym__new_line_token1 = 144, + aux_sym__new_line_token2 = 145, + anon_sym_ = 146, + anon_sym_SQUOTE2 = 147, + anon_sym_BQUOTE = 148, + sym_boolean = 149, + sym_null = 150, + anon_sym_DOLLAR = 151, + aux_sym_yield_expression_token1 = 152, + aux_sym_yield_expression_token2 = 153, + aux_sym_binary_expression_token1 = 154, + anon_sym_QMARK_QMARK = 155, + aux_sym_binary_expression_token2 = 156, + aux_sym_binary_expression_token3 = 157, + aux_sym_binary_expression_token4 = 158, + anon_sym_PIPE_PIPE = 159, + anon_sym_AMP_AMP = 160, + anon_sym_CARET = 161, + anon_sym_EQ_EQ = 162, + anon_sym_BANG_EQ = 163, + anon_sym_LT_GT = 164, + anon_sym_EQ_EQ_EQ = 165, + anon_sym_BANG_EQ_EQ = 166, + anon_sym_LT = 167, + anon_sym_GT = 168, + anon_sym_LT_EQ = 169, + anon_sym_GT_EQ = 170, + anon_sym_LT_EQ_GT = 171, + anon_sym_LT_LT = 172, + anon_sym_GT_GT = 173, + anon_sym_DOT = 174, + anon_sym_STAR = 175, + anon_sym_SLASH = 176, + anon_sym_PERCENT = 177, + aux_sym_include_expression_token1 = 178, + aux_sym_include_once_expression_token1 = 179, + aux_sym_require_expression_token1 = 180, + aux_sym_require_once_expression_token1 = 181, + sym_comment = 182, + sym__automatic_semicolon = 183, + sym_encapsed_string_chars = 184, + sym_encapsed_string_chars_after_variable = 185, + sym_execution_string_chars = 186, + sym_execution_string_chars_after_variable = 187, + sym_encapsed_string_chars_heredoc = 188, + sym_encapsed_string_chars_after_variable_heredoc = 189, + sym__eof = 190, + sym_heredoc_start = 191, + sym_heredoc_end = 192, + sym_nowdoc_string = 193, + sym_sentinel_error = 194, + sym_program = 195, + sym_empty_statement = 196, + sym_reference_modifier = 197, + sym_function_static_declaration = 198, + sym_static_variable_declaration = 199, + sym_global_declaration = 200, + sym_namespace_definition = 201, + sym_namespace_use_declaration = 202, + sym_namespace_use_clause = 203, + sym_qualified_name = 204, + sym_namespace_name_as_prefix = 205, + sym_namespace_name = 206, + sym_namespace_aliasing_clause = 207, + sym_namespace_use_group = 208, + sym_namespace_use_group_clause = 209, + sym_trait_declaration = 210, + sym_interface_declaration = 211, + sym_base_clause = 212, + sym_enum_declaration = 213, + sym_enum_declaration_list = 214, + sym__enum_member_declaration = 215, + sym_enum_case = 216, + sym_class_declaration = 217, + sym_declaration_list = 218, + sym_final_modifier = 219, + sym_abstract_modifier = 220, + sym_readonly_modifier = 221, + sym_class_interface_clause = 222, + sym__member_declaration = 223, + sym_const_declaration = 224, + sym__class_const_declaration = 225, + sym__const_declaration = 226, + sym_property_declaration = 227, + sym__modifier = 228, + sym_property_element = 229, + sym_property_initializer = 230, + sym_method_declaration = 231, + sym_static_modifier = 232, + sym_use_declaration = 233, + sym_use_list = 234, + sym_use_instead_of_clause = 235, + sym_use_as_clause = 236, + sym_visibility_modifier = 237, + sym_function_definition = 238, + sym__function_definition_header = 239, + sym__arrow_function_header = 240, + sym_arrow_function = 241, + sym_formal_parameters = 242, + sym_property_promotion_parameter = 243, + sym_simple_parameter = 244, + sym_variadic_parameter = 245, + sym__type = 246, + sym__types = 247, + sym_named_type = 248, + sym_optional_type = 249, + sym_union_type = 250, + sym_intersection_type = 251, + sym_primitive_type = 252, + sym_cast_type = 253, + sym__return_type = 254, + sym_const_element = 255, + sym_echo_statement = 256, + sym_unset_statement = 257, + sym_declare_statement = 258, + sym_declare_directive = 259, + sym_try_statement = 260, + sym_catch_clause = 261, + sym_type_list = 262, + sym_finally_clause = 263, + sym_goto_statement = 264, + sym_continue_statement = 265, + sym_break_statement = 266, + sym_return_statement = 267, + sym_throw_expression = 268, + sym_while_statement = 269, + sym_do_statement = 270, + sym_for_statement = 271, + sym__expressions = 272, + sym_sequence_expression = 273, + sym_foreach_statement = 274, + sym_foreach_pair = 275, + sym_if_statement = 276, + sym_colon_block = 277, + sym_else_if_clause = 278, + sym_else_clause = 279, + sym_else_if_clause_2 = 280, + sym_else_clause_2 = 281, + sym_match_expression = 282, + sym_match_block = 283, + sym_match_condition_list = 284, + sym_match_conditional_expression = 285, + sym_match_default_expression = 286, + sym_switch_statement = 287, + sym_switch_block = 288, + sym_case_statement = 289, + sym_default_statement = 290, + sym_compound_statement = 291, + sym_named_label_statement = 292, + sym_expression_statement = 293, + sym__expression = 294, + sym__unary_expression = 295, + sym_unary_op_expression = 296, + sym_exponentiation_expression = 297, + sym_clone_expression = 298, + sym__primary_expression = 299, + sym_parenthesized_expression = 300, + sym_class_constant_access_expression = 301, + sym_print_intrinsic = 302, + sym_anonymous_function_creation_expression = 303, + sym_anonymous_function_use_clause = 304, + sym_object_creation_expression = 305, + sym_update_expression = 306, + sym_cast_expression = 307, + sym_cast_variable = 308, + sym_assignment_expression = 309, + sym_reference_assignment_expression = 310, + sym_conditional_expression = 311, + sym_augmented_assignment_expression = 312, + sym_member_access_expression = 313, + sym_nullsafe_member_access_expression = 314, + sym_scoped_property_access_expression = 315, + sym_list_literal = 316, + sym__list_destructing = 317, + sym__array_destructing = 318, + sym__array_destructing_element = 319, + sym_function_call_expression = 320, + sym_scoped_call_expression = 321, + sym__scope_resolution_qualifier = 322, + sym_relative_scope = 323, + sym_variadic_placeholder = 324, + sym_arguments = 325, + sym_argument = 326, + sym_member_call_expression = 327, + sym_nullsafe_member_call_expression = 328, + sym_variadic_unpacking = 329, + sym_subscript_expression = 330, + sym__dereferencable_expression = 331, + sym_array_creation_expression = 332, + sym_attribute_group = 333, + sym_attribute_list = 334, + sym_attribute = 335, + sym__complex_string_part = 336, + sym__simple_string_member_access_expression = 337, + sym__simple_string_subscript_unary_expression = 338, + sym__simple_string_array_access_argument = 339, + sym__simple_string_subscript_expression = 340, + sym__simple_string_part = 341, + aux_sym__interpolated_string_body = 342, + aux_sym__interpolated_string_body_heredoc = 343, + sym_encapsed_string = 344, + sym_string = 345, + sym_heredoc_body = 346, + sym_heredoc = 347, + sym__new_line = 348, + sym_nowdoc_body = 349, + sym_nowdoc = 350, + aux_sym__interpolated_execution_operator_body = 351, + sym_shell_command_expression = 352, + sym__string = 353, + sym_dynamic_variable_name = 354, + sym_variable_name = 355, + sym_variable_reference = 356, + sym_by_ref = 357, + sym_yield_expression = 358, + sym_array_element_initializer = 359, + sym_binary_expression = 360, + sym_include_expression = 361, + sym_include_once_expression = 362, + sym_require_expression = 363, + sym_require_once_expression = 364, + sym__reserved_identifier = 365, + aux_sym_program_repeat1 = 366, + aux_sym_function_static_declaration_repeat1 = 367, + aux_sym_global_declaration_repeat1 = 368, + aux_sym_namespace_use_declaration_repeat1 = 369, + aux_sym_namespace_name_repeat1 = 370, + aux_sym_namespace_use_group_repeat1 = 371, + aux_sym_base_clause_repeat1 = 372, + aux_sym_enum_declaration_list_repeat1 = 373, + aux_sym_declaration_list_repeat1 = 374, + aux_sym__const_declaration_repeat1 = 375, + aux_sym_property_declaration_repeat1 = 376, + aux_sym_property_declaration_repeat2 = 377, + aux_sym_use_list_repeat1 = 378, + aux_sym_formal_parameters_repeat1 = 379, + aux_sym_union_type_repeat1 = 380, + aux_sym_intersection_type_repeat1 = 381, + aux_sym_unset_statement_repeat1 = 382, + aux_sym_try_statement_repeat1 = 383, + aux_sym_type_list_repeat1 = 384, + aux_sym_if_statement_repeat1 = 385, + aux_sym_if_statement_repeat2 = 386, + aux_sym_match_block_repeat1 = 387, + aux_sym_match_condition_list_repeat1 = 388, + aux_sym_switch_block_repeat1 = 389, + aux_sym_anonymous_function_use_clause_repeat1 = 390, + aux_sym__list_destructing_repeat1 = 391, + aux_sym__array_destructing_repeat1 = 392, + aux_sym_arguments_repeat1 = 393, + aux_sym_array_creation_expression_repeat1 = 394, + aux_sym_attribute_group_repeat1 = 395, + aux_sym_attribute_list_repeat1 = 396, + aux_sym_heredoc_body_repeat1 = 397, + aux_sym_nowdoc_body_repeat1 = 398, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_name] = "name", - [sym_php_tag] = "php_tag", [anon_sym_QMARK_GT] = "\?>", + [sym_php_tag] = "php_tag", [aux_sym_text_token1] = "text_token1", - [aux_sym_text_token2] = "text_token2", [anon_sym_SEMI] = ";", [anon_sym_AMP] = "&", [aux_sym_function_static_declaration_token1] = "static", @@ -619,8 +614,6 @@ static const char * const ts_symbol_names[] = { [sym_nowdoc_string] = "nowdoc_string", [sym_sentinel_error] = "sentinel_error", [sym_program] = "program", - [sym_text_interpolation] = "text_interpolation", - [sym_text] = "text", [sym_empty_statement] = "empty_statement", [sym_reference_modifier] = "reference_modifier", [sym_function_static_declaration] = "function_static_declaration", @@ -792,7 +785,6 @@ static const char * const ts_symbol_names[] = { [sym_require_once_expression] = "require_once_expression", [sym__reserved_identifier] = "name", [aux_sym_program_repeat1] = "program_repeat1", - [aux_sym_text_repeat1] = "text_repeat1", [aux_sym_function_static_declaration_repeat1] = "function_static_declaration_repeat1", [aux_sym_global_declaration_repeat1] = "global_declaration_repeat1", [aux_sym_namespace_use_declaration_repeat1] = "namespace_use_declaration_repeat1", @@ -830,10 +822,9 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_name] = sym_name, - [sym_php_tag] = sym_php_tag, [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, + [sym_php_tag] = sym_php_tag, [aux_sym_text_token1] = aux_sym_text_token1, - [aux_sym_text_token2] = aux_sym_text_token2, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_AMP] = anon_sym_AMP, [aux_sym_function_static_declaration_token1] = anon_sym_static, @@ -1025,8 +1016,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_nowdoc_string] = sym_nowdoc_string, [sym_sentinel_error] = sym_sentinel_error, [sym_program] = sym_program, - [sym_text_interpolation] = sym_text_interpolation, - [sym_text] = sym_text, [sym_empty_statement] = sym_empty_statement, [sym_reference_modifier] = sym_reference_modifier, [sym_function_static_declaration] = sym_function_static_declaration, @@ -1198,7 +1187,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_require_once_expression] = sym_require_once_expression, [sym__reserved_identifier] = sym_name, [aux_sym_program_repeat1] = aux_sym_program_repeat1, - [aux_sym_text_repeat1] = aux_sym_text_repeat1, [aux_sym_function_static_declaration_repeat1] = aux_sym_function_static_declaration_repeat1, [aux_sym_global_declaration_repeat1] = aux_sym_global_declaration_repeat1, [aux_sym_namespace_use_declaration_repeat1] = aux_sym_namespace_use_declaration_repeat1, @@ -1242,19 +1230,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_php_tag] = { - .visible = true, - .named = true, - }, [anon_sym_QMARK_GT] = { .visible = true, .named = false, }, - [aux_sym_text_token1] = { - .visible = false, - .named = false, + [sym_php_tag] = { + .visible = true, + .named = true, }, - [aux_sym_text_token2] = { + [aux_sym_text_token1] = { .visible = false, .named = false, }, @@ -2022,14 +2006,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_text_interpolation] = { - .visible = true, - .named = true, - }, - [sym_text] = { - .visible = true, - .named = true, - }, [sym_empty_statement] = { .visible = true, .named = true, @@ -2717,10 +2693,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_text_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_function_static_declaration_repeat1] = { .visible = false, .named = false, @@ -3845,434 +3817,434 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 8, [11] = 7, [12] = 12, - [13] = 12, + [13] = 13, [14] = 12, - [15] = 12, + [15] = 15, [16] = 16, - [17] = 17, - [18] = 18, + [17] = 12, + [18] = 12, [19] = 19, [20] = 20, [21] = 21, - [22] = 21, + [22] = 22, [23] = 23, [24] = 24, - [25] = 25, + [25] = 19, [26] = 26, - [27] = 19, - [28] = 26, - [29] = 24, - [30] = 30, + [27] = 24, + [28] = 28, + [29] = 22, + [30] = 26, [31] = 31, - [32] = 31, - [33] = 19, - [34] = 20, - [35] = 26, - [36] = 19, - [37] = 37, + [32] = 32, + [33] = 33, + [34] = 31, + [35] = 32, + [36] = 36, + [37] = 20, [38] = 38, - [39] = 39, - [40] = 31, + [39] = 21, + [40] = 21, [41] = 41, - [42] = 41, + [42] = 42, [43] = 43, - [44] = 39, + [44] = 44, [45] = 24, - [46] = 24, - [47] = 41, - [48] = 38, - [49] = 49, - [50] = 18, - [51] = 20, - [52] = 49, - [53] = 31, - [54] = 41, - [55] = 21, - [56] = 26, - [57] = 17, - [58] = 16, - [59] = 59, - [60] = 49, - [61] = 26, - [62] = 62, - [63] = 43, - [64] = 64, - [65] = 20, - [66] = 21, - [67] = 37, - [68] = 59, - [69] = 62, - [70] = 18, - [71] = 71, - [72] = 72, - [73] = 72, - [74] = 71, - [75] = 49, - [76] = 21, - [77] = 18, + [46] = 46, + [47] = 33, + [48] = 28, + [49] = 46, + [50] = 50, + [51] = 38, + [52] = 36, + [53] = 46, + [54] = 43, + [55] = 42, + [56] = 24, + [57] = 33, + [58] = 26, + [59] = 21, + [60] = 36, + [61] = 36, + [62] = 36, + [63] = 23, + [64] = 23, + [65] = 46, + [66] = 41, + [67] = 24, + [68] = 41, + [69] = 41, + [70] = 42, + [71] = 23, + [72] = 50, + [73] = 33, + [74] = 26, + [75] = 44, + [76] = 42, + [77] = 77, [78] = 78, [79] = 78, [80] = 80, - [81] = 80, - [82] = 82, - [83] = 82, + [81] = 78, + [82] = 77, + [83] = 78, [84] = 80, - [85] = 80, - [86] = 86, - [87] = 86, - [88] = 86, - [89] = 86, - [90] = 90, + [85] = 85, + [86] = 85, + [87] = 85, + [88] = 85, + [89] = 89, + [90] = 89, [91] = 91, - [92] = 90, - [93] = 90, + [92] = 91, + [93] = 89, [94] = 91, - [95] = 90, - [96] = 91, - [97] = 91, - [98] = 90, + [95] = 91, + [96] = 89, + [97] = 89, + [98] = 91, [99] = 91, - [100] = 91, - [101] = 101, - [102] = 101, - [103] = 101, - [104] = 101, - [105] = 101, - [106] = 106, - [107] = 106, - [108] = 106, - [109] = 106, - [110] = 106, - [111] = 106, - [112] = 106, - [113] = 106, + [100] = 100, + [101] = 100, + [102] = 100, + [103] = 100, + [104] = 100, + [105] = 105, + [106] = 105, + [107] = 105, + [108] = 105, + [109] = 105, + [110] = 105, + [111] = 105, + [112] = 105, + [113] = 113, [114] = 114, - [115] = 115, + [115] = 113, [116] = 114, - [117] = 115, - [118] = 118, + [117] = 117, + [118] = 117, [119] = 119, - [120] = 118, - [121] = 121, - [122] = 119, - [123] = 118, - [124] = 119, - [125] = 118, - [126] = 126, - [127] = 118, - [128] = 119, - [129] = 129, - [130] = 119, + [120] = 120, + [121] = 120, + [122] = 120, + [123] = 117, + [124] = 124, + [125] = 125, + [126] = 120, + [127] = 127, + [128] = 117, + [129] = 120, + [130] = 127, [131] = 119, - [132] = 132, - [133] = 126, - [134] = 134, - [135] = 118, - [136] = 119, - [137] = 134, - [138] = 118, - [139] = 121, - [140] = 118, - [141] = 132, - [142] = 119, - [143] = 129, + [132] = 125, + [133] = 117, + [134] = 124, + [135] = 117, + [136] = 117, + [137] = 120, + [138] = 120, + [139] = 117, + [140] = 140, + [141] = 140, + [142] = 120, + [143] = 143, [144] = 144, [145] = 145, - [146] = 145, - [147] = 147, - [148] = 144, + [146] = 146, + [147] = 146, + [148] = 148, [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 149, - [154] = 152, + [150] = 144, + [151] = 143, + [152] = 149, + [153] = 153, + [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 158, + [158] = 157, [159] = 159, [160] = 160, [161] = 161, - [162] = 158, + [162] = 161, [163] = 163, - [164] = 159, + [164] = 160, [165] = 165, - [166] = 163, - [167] = 167, - [168] = 159, - [169] = 167, - [170] = 163, - [171] = 165, - [172] = 165, - [173] = 161, - [174] = 160, - [175] = 163, - [176] = 161, - [177] = 159, - [178] = 160, - [179] = 167, - [180] = 158, - [181] = 165, - [182] = 161, - [183] = 158, - [184] = 167, - [185] = 160, + [166] = 166, + [167] = 165, + [168] = 166, + [169] = 163, + [170] = 161, + [171] = 159, + [172] = 166, + [173] = 159, + [174] = 159, + [175] = 166, + [176] = 157, + [177] = 161, + [178] = 163, + [179] = 157, + [180] = 165, + [181] = 163, + [182] = 165, + [183] = 160, + [184] = 160, + [185] = 185, [186] = 186, [187] = 187, - [188] = 186, + [188] = 187, [189] = 189, [190] = 190, - [191] = 186, - [192] = 192, - [193] = 186, - [194] = 186, - [195] = 195, + [191] = 187, + [192] = 185, + [193] = 187, + [194] = 194, + [195] = 187, [196] = 196, - [197] = 197, - [198] = 198, - [199] = 187, - [200] = 190, - [201] = 195, + [197] = 190, + [198] = 187, + [199] = 199, + [200] = 200, + [201] = 196, [202] = 186, - [203] = 192, + [203] = 203, [204] = 204, [205] = 205, - [206] = 206, - [207] = 207, - [208] = 205, - [209] = 207, - [210] = 207, - [211] = 204, - [212] = 207, - [213] = 205, - [214] = 206, - [215] = 207, - [216] = 216, - [217] = 204, - [218] = 206, - [219] = 207, - [220] = 205, - [221] = 206, + [206] = 204, + [207] = 203, + [208] = 208, + [209] = 203, + [210] = 208, + [211] = 211, + [212] = 205, + [213] = 203, + [214] = 204, + [215] = 205, + [216] = 204, + [217] = 208, + [218] = 204, + [219] = 204, + [220] = 208, + [221] = 221, [222] = 222, - [223] = 223, + [223] = 221, [224] = 224, - [225] = 225, + [225] = 221, [226] = 226, [227] = 227, - [228] = 224, - [229] = 227, - [230] = 227, + [228] = 228, + [229] = 229, + [230] = 230, [231] = 231, [232] = 232, - [233] = 223, - [234] = 231, + [233] = 233, + [234] = 222, [235] = 235, [236] = 236, [237] = 237, - [238] = 232, - [239] = 235, + [238] = 238, + [239] = 239, [240] = 240, [241] = 241, - [242] = 223, + [242] = 226, [243] = 243, [244] = 244, [245] = 245, [246] = 246, [247] = 247, - [248] = 248, + [248] = 231, [249] = 249, - [250] = 250, + [250] = 249, [251] = 251, [252] = 252, - [253] = 253, + [253] = 241, [254] = 254, - [255] = 244, - [256] = 256, + [255] = 255, + [256] = 224, [257] = 257, [258] = 258, - [259] = 245, - [260] = 224, - [261] = 261, - [262] = 258, - [263] = 257, - [264] = 231, - [265] = 256, - [266] = 266, - [267] = 245, - [268] = 268, - [269] = 235, - [270] = 244, + [259] = 254, + [260] = 231, + [261] = 224, + [262] = 221, + [263] = 254, + [264] = 240, + [265] = 254, + [266] = 239, + [267] = 251, + [268] = 246, + [269] = 221, + [270] = 270, [271] = 271, - [272] = 237, - [273] = 232, - [274] = 274, - [275] = 235, - [276] = 271, - [277] = 277, - [278] = 237, - [279] = 271, - [280] = 254, - [281] = 258, - [282] = 232, - [283] = 253, - [284] = 252, - [285] = 266, - [286] = 286, - [287] = 287, - [288] = 257, - [289] = 235, - [290] = 256, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 251, - [295] = 237, - [296] = 256, - [297] = 232, - [298] = 266, - [299] = 235, - [300] = 244, - [301] = 226, - [302] = 254, - [303] = 257, - [304] = 304, - [305] = 253, - [306] = 258, - [307] = 307, + [272] = 238, + [273] = 224, + [274] = 228, + [275] = 221, + [276] = 237, + [277] = 251, + [278] = 224, + [279] = 254, + [280] = 236, + [281] = 227, + [282] = 247, + [283] = 224, + [284] = 221, + [285] = 249, + [286] = 235, + [287] = 224, + [288] = 251, + [289] = 254, + [290] = 246, + [291] = 245, + [292] = 244, + [293] = 243, + [294] = 226, + [295] = 222, + [296] = 241, + [297] = 240, + [298] = 227, + [299] = 239, + [300] = 238, + [301] = 247, + [302] = 252, + [303] = 224, + [304] = 221, + [305] = 251, + [306] = 233, + [307] = 254, [308] = 237, - [309] = 240, - [310] = 293, - [311] = 232, - [312] = 277, - [313] = 313, - [314] = 266, - [315] = 291, - [316] = 250, - [317] = 227, - [318] = 245, - [319] = 224, - [320] = 235, - [321] = 321, - [322] = 322, + [309] = 236, + [310] = 235, + [311] = 311, + [312] = 312, + [313] = 232, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 270, + [321] = 222, + [322] = 233, [323] = 323, [324] = 324, - [325] = 252, - [326] = 237, - [327] = 274, - [328] = 271, + [325] = 232, + [326] = 229, + [327] = 327, + [328] = 328, [329] = 329, - [330] = 251, - [331] = 250, - [332] = 249, - [333] = 249, - [334] = 248, - [335] = 247, - [336] = 248, - [337] = 246, - [338] = 304, - [339] = 247, - [340] = 232, - [341] = 341, - [342] = 342, - [343] = 304, - [344] = 344, - [345] = 237, - [346] = 346, - [347] = 226, - [348] = 268, - [349] = 342, - [350] = 232, - [351] = 235, - [352] = 352, - [353] = 292, - [354] = 261, - [355] = 341, - [356] = 246, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 357, - [361] = 243, - [362] = 362, - [363] = 363, - [364] = 292, - [365] = 271, - [366] = 232, - [367] = 367, - [368] = 225, - [369] = 357, - [370] = 237, - [371] = 371, - [372] = 243, - [373] = 341, - [374] = 344, - [375] = 261, - [376] = 268, - [377] = 254, - [378] = 253, - [379] = 277, - [380] = 231, - [381] = 381, - [382] = 382, - [383] = 292, - [384] = 266, - [385] = 293, - [386] = 232, - [387] = 291, - [388] = 274, - [389] = 237, - [390] = 252, - [391] = 251, - [392] = 237, + [330] = 330, + [331] = 247, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 227, + [337] = 334, + [338] = 229, + [339] = 333, + [340] = 255, + [341] = 229, + [342] = 332, + [343] = 343, + [344] = 252, + [345] = 329, + [346] = 232, + [347] = 233, + [348] = 235, + [349] = 328, + [350] = 236, + [351] = 237, + [352] = 335, + [353] = 238, + [354] = 327, + [355] = 239, + [356] = 323, + [357] = 319, + [358] = 240, + [359] = 316, + [360] = 360, + [361] = 241, + [362] = 226, + [363] = 334, + [364] = 243, + [365] = 244, + [366] = 334, + [367] = 243, + [368] = 316, + [369] = 335, + [370] = 224, + [371] = 254, + [372] = 221, + [373] = 335, + [374] = 231, + [375] = 335, + [376] = 252, + [377] = 319, + [378] = 323, + [379] = 255, + [380] = 327, + [381] = 245, + [382] = 244, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 333, + [388] = 388, + [389] = 335, + [390] = 270, + [391] = 245, + [392] = 392, [393] = 393, - [394] = 250, - [395] = 266, - [396] = 225, - [397] = 274, - [398] = 291, - [399] = 293, - [400] = 223, - [401] = 277, - [402] = 342, - [403] = 240, - [404] = 304, - [405] = 268, - [406] = 261, - [407] = 341, - [408] = 357, - [409] = 225, - [410] = 342, - [411] = 243, - [412] = 249, - [413] = 246, - [414] = 235, - [415] = 344, - [416] = 247, - [417] = 248, - [418] = 271, - [419] = 226, + [394] = 270, + [395] = 395, + [396] = 396, + [397] = 228, + [398] = 316, + [399] = 255, + [400] = 332, + [401] = 257, + [402] = 246, + [403] = 254, + [404] = 329, + [405] = 249, + [406] = 251, + [407] = 407, + [408] = 328, + [409] = 329, + [410] = 328, + [411] = 319, + [412] = 332, + [413] = 327, + [414] = 333, + [415] = 323, + [416] = 221, + [417] = 224, + [418] = 257, + [419] = 419, [420] = 420, [421] = 421, [422] = 422, [423] = 422, - [424] = 424, - [425] = 424, - [426] = 426, - [427] = 422, - [428] = 422, - [429] = 426, + [424] = 421, + [425] = 425, + [426] = 425, + [427] = 425, + [428] = 425, + [429] = 429, [430] = 430, [431] = 431, - [432] = 430, - [433] = 430, + [432] = 432, + [433] = 433, [434] = 434, [435] = 435, [436] = 436, [437] = 437, - [438] = 430, + [438] = 438, [439] = 439, - [440] = 430, + [440] = 440, [441] = 441, [442] = 442, [443] = 443, @@ -4283,20 +4255,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [448] = 448, [449] = 449, [450] = 450, - [451] = 451, + [451] = 442, [452] = 452, [453] = 453, [454] = 454, - [455] = 455, + [455] = 442, [456] = 456, - [457] = 457, - [458] = 458, + [457] = 442, + [458] = 442, [459] = 459, [460] = 460, [461] = 461, [462] = 462, [463] = 463, - [464] = 464, + [464] = 433, [465] = 465, [466] = 466, [467] = 467, @@ -4312,7 +4284,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [477] = 477, [478] = 478, [479] = 479, - [480] = 480, + [480] = 459, [481] = 481, [482] = 482, [483] = 483, @@ -4359,10 +4331,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [524] = 524, [525] = 525, [526] = 526, - [527] = 453, + [527] = 527, [528] = 528, - [529] = 436, - [530] = 530, + [529] = 529, + [530] = 434, [531] = 531, [532] = 532, [533] = 533, @@ -4379,10 +4351,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [544] = 544, [545] = 545, [546] = 546, - [547] = 547, + [547] = 444, [548] = 548, [549] = 549, - [550] = 437, + [550] = 550, [551] = 551, [552] = 552, [553] = 553, @@ -4397,12 +4369,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [562] = 562, [563] = 563, [564] = 564, - [565] = 460, - [566] = 566, - [567] = 567, - [568] = 567, - [569] = 567, - [570] = 567, + [565] = 564, + [566] = 564, + [567] = 564, + [568] = 568, + [569] = 569, + [570] = 570, [571] = 571, [572] = 572, [573] = 573, @@ -4426,323 +4398,323 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [591] = 591, [592] = 592, [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 594, - [598] = 596, - [599] = 578, - [600] = 580, - [601] = 594, - [602] = 596, - [603] = 603, - [604] = 580, - [605] = 576, - [606] = 579, - [607] = 575, + [594] = 593, + [595] = 592, + [596] = 576, + [597] = 597, + [598] = 572, + [599] = 574, + [600] = 573, + [601] = 593, + [602] = 592, + [603] = 577, + [604] = 575, + [605] = 605, + [606] = 573, + [607] = 607, [608] = 608, - [609] = 609, - [610] = 577, - [611] = 582, - [612] = 586, - [613] = 596, - [614] = 573, - [615] = 574, - [616] = 594, - [617] = 588, - [618] = 587, - [619] = 592, - [620] = 584, - [621] = 621, - [622] = 589, - [623] = 572, - [624] = 591, - [625] = 581, - [626] = 609, - [627] = 593, - [628] = 621, - [629] = 583, - [630] = 585, - [631] = 631, - [632] = 571, - [633] = 603, - [634] = 590, - [635] = 595, - [636] = 636, + [609] = 589, + [610] = 568, + [611] = 608, + [612] = 588, + [613] = 580, + [614] = 578, + [615] = 590, + [616] = 582, + [617] = 597, + [618] = 583, + [619] = 587, + [620] = 593, + [621] = 592, + [622] = 605, + [623] = 585, + [624] = 569, + [625] = 584, + [626] = 581, + [627] = 570, + [628] = 571, + [629] = 579, + [630] = 630, + [631] = 586, + [632] = 591, + [633] = 605, + [634] = 597, + [635] = 635, + [636] = 591, [637] = 637, - [638] = 595, - [639] = 609, - [640] = 603, - [641] = 641, - [642] = 609, + [638] = 638, + [639] = 639, + [640] = 605, + [641] = 597, + [642] = 638, [643] = 643, - [644] = 643, - [645] = 603, + [644] = 644, + [645] = 645, [646] = 646, [647] = 647, - [648] = 648, - [649] = 649, + [648] = 577, + [649] = 574, [650] = 650, - [651] = 651, - [652] = 652, - [653] = 652, - [654] = 588, - [655] = 575, - [656] = 577, + [651] = 645, + [652] = 576, + [653] = 572, + [654] = 654, + [655] = 655, + [656] = 575, [657] = 579, - [658] = 578, - [659] = 659, - [660] = 576, - [661] = 573, - [662] = 588, - [663] = 584, - [664] = 592, - [665] = 590, - [666] = 666, - [667] = 581, - [668] = 589, - [669] = 572, - [670] = 571, - [671] = 574, - [672] = 672, - [673] = 585, - [674] = 582, - [675] = 586, - [676] = 583, - [677] = 587, - [678] = 666, - [679] = 679, - [680] = 593, - [681] = 591, - [682] = 579, - [683] = 577, + [658] = 583, + [659] = 584, + [660] = 660, + [661] = 581, + [662] = 578, + [663] = 590, + [664] = 588, + [665] = 665, + [666] = 582, + [667] = 586, + [668] = 587, + [669] = 589, + [670] = 579, + [671] = 571, + [672] = 665, + [673] = 568, + [674] = 674, + [675] = 570, + [676] = 569, + [677] = 580, + [678] = 585, + [679] = 575, + [680] = 674, + [681] = 574, + [682] = 576, + [683] = 572, [684] = 684, - [685] = 685, + [685] = 577, [686] = 575, - [687] = 648, - [688] = 688, + [687] = 687, + [688] = 577, [689] = 689, - [690] = 690, - [691] = 672, + [690] = 574, + [691] = 576, [692] = 692, [693] = 693, - [694] = 694, - [695] = 695, + [694] = 575, + [695] = 577, [696] = 696, [697] = 697, - [698] = 579, - [699] = 576, - [700] = 700, + [698] = 572, + [699] = 699, + [700] = 687, [701] = 701, [702] = 702, [703] = 703, - [704] = 700, + [704] = 644, [705] = 705, - [706] = 701, - [707] = 577, - [708] = 708, - [709] = 576, - [710] = 579, - [711] = 578, + [706] = 684, + [707] = 576, + [708] = 574, + [709] = 572, + [710] = 710, + [711] = 711, [712] = 712, - [713] = 576, - [714] = 575, - [715] = 577, - [716] = 694, - [717] = 578, - [718] = 575, - [719] = 578, - [720] = 590, - [721] = 721, - [722] = 574, + [713] = 713, + [714] = 714, + [715] = 699, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 580, + [722] = 722, [723] = 723, - [724] = 591, + [724] = 724, [725] = 725, - [726] = 581, + [726] = 584, [727] = 727, [728] = 728, - [729] = 729, - [730] = 571, - [731] = 572, - [732] = 732, - [733] = 733, - [734] = 593, + [729] = 563, + [730] = 730, + [731] = 731, + [732] = 725, + [733] = 724, + [734] = 734, [735] = 735, - [736] = 584, - [737] = 573, + [736] = 736, + [737] = 737, [738] = 738, - [739] = 582, + [739] = 739, [740] = 740, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 586, - [745] = 745, - [746] = 589, - [747] = 747, + [741] = 581, + [742] = 578, + [743] = 590, + [744] = 585, + [745] = 588, + [746] = 583, + [747] = 582, [748] = 748, [749] = 749, - [750] = 592, - [751] = 583, + [750] = 750, + [751] = 751, [752] = 752, - [753] = 745, + [753] = 753, [754] = 754, - [755] = 755, - [756] = 585, - [757] = 757, - [758] = 758, - [759] = 566, - [760] = 760, - [761] = 754, - [762] = 762, + [755] = 586, + [756] = 587, + [757] = 589, + [758] = 571, + [759] = 568, + [760] = 570, + [761] = 569, + [762] = 575, [763] = 763, - [764] = 764, - [765] = 587, - [766] = 437, - [767] = 652, - [768] = 651, + [764] = 644, + [765] = 572, + [766] = 574, + [767] = 576, + [768] = 577, [769] = 769, [770] = 770, - [771] = 696, - [772] = 575, - [773] = 579, - [774] = 577, - [775] = 576, - [776] = 776, - [777] = 436, - [778] = 652, - [779] = 578, - [780] = 780, - [781] = 647, + [771] = 771, + [772] = 645, + [773] = 773, + [774] = 696, + [775] = 434, + [776] = 433, + [777] = 645, + [778] = 655, + [779] = 647, + [780] = 654, + [781] = 701, [782] = 782, - [783] = 650, - [784] = 648, - [785] = 690, - [786] = 581, - [787] = 787, - [788] = 590, - [789] = 593, - [790] = 790, - [791] = 588, - [792] = 787, - [793] = 592, - [794] = 582, - [795] = 589, - [796] = 574, - [797] = 585, - [798] = 584, + [783] = 584, + [784] = 586, + [785] = 785, + [786] = 582, + [787] = 583, + [788] = 588, + [789] = 590, + [790] = 568, + [791] = 580, + [792] = 569, + [793] = 793, + [794] = 587, + [795] = 579, + [796] = 589, + [797] = 570, + [798] = 578, [799] = 571, - [800] = 573, - [801] = 801, - [802] = 583, - [803] = 587, - [804] = 586, - [805] = 591, - [806] = 572, - [807] = 689, - [808] = 808, - [809] = 577, - [810] = 693, - [811] = 811, - [812] = 578, - [813] = 701, - [814] = 579, - [815] = 690, - [816] = 808, - [817] = 817, - [818] = 708, + [800] = 785, + [801] = 581, + [802] = 585, + [803] = 711, + [804] = 574, + [805] = 699, + [806] = 576, + [807] = 684, + [808] = 696, + [809] = 575, + [810] = 810, + [811] = 577, + [812] = 812, + [813] = 716, + [814] = 459, + [815] = 714, + [816] = 712, + [817] = 644, + [818] = 710, [819] = 819, - [820] = 648, - [821] = 700, - [822] = 578, - [823] = 460, - [824] = 679, - [825] = 672, - [826] = 695, - [827] = 700, - [828] = 576, - [829] = 579, - [830] = 692, - [831] = 575, + [820] = 576, + [821] = 821, + [822] = 444, + [823] = 823, + [824] = 574, + [825] = 572, + [826] = 810, + [827] = 572, + [828] = 684, + [829] = 713, + [830] = 576, + [831] = 577, [832] = 575, - [833] = 588, - [834] = 672, - [835] = 577, - [836] = 453, - [837] = 701, - [838] = 817, - [839] = 839, - [840] = 575, - [841] = 576, - [842] = 702, - [843] = 808, - [844] = 844, - [845] = 811, - [846] = 703, - [847] = 578, - [848] = 839, - [849] = 817, - [850] = 696, - [851] = 808, - [852] = 808, - [853] = 685, - [854] = 844, - [855] = 579, - [856] = 576, - [857] = 577, - [858] = 748, + [833] = 674, + [834] = 699, + [835] = 701, + [836] = 836, + [837] = 574, + [838] = 572, + [839] = 823, + [840] = 693, + [841] = 577, + [842] = 692, + [843] = 575, + [844] = 812, + [845] = 579, + [846] = 821, + [847] = 823, + [848] = 823, + [849] = 674, + [850] = 812, + [851] = 660, + [852] = 823, + [853] = 819, + [854] = 752, + [855] = 748, + [856] = 563, + [857] = 730, + [858] = 751, [859] = 723, - [860] = 592, - [861] = 589, - [862] = 593, - [863] = 584, - [864] = 581, - [865] = 690, - [866] = 728, - [867] = 573, - [868] = 758, - [869] = 566, - [870] = 690, - [871] = 585, - [872] = 574, - [873] = 583, - [874] = 742, - [875] = 760, - [876] = 743, - [877] = 763, - [878] = 729, - [879] = 582, - [880] = 740, + [860] = 719, + [861] = 727, + [862] = 728, + [863] = 753, + [864] = 740, + [865] = 754, + [866] = 720, + [867] = 731, + [868] = 717, + [869] = 568, + [870] = 750, + [871] = 696, + [872] = 734, + [873] = 735, + [874] = 749, + [875] = 737, + [876] = 696, + [877] = 585, + [878] = 580, + [879] = 589, + [880] = 587, [881] = 586, - [882] = 571, - [883] = 732, - [884] = 757, - [885] = 587, - [886] = 733, - [887] = 725, - [888] = 749, - [889] = 735, - [890] = 591, - [891] = 721, - [892] = 727, - [893] = 752, - [894] = 572, - [895] = 738, - [896] = 755, - [897] = 764, - [898] = 590, - [899] = 747, - [900] = 741, - [901] = 696, - [902] = 782, - [903] = 770, - [904] = 776, - [905] = 780, - [906] = 906, + [882] = 736, + [883] = 569, + [884] = 570, + [885] = 718, + [886] = 582, + [887] = 583, + [888] = 588, + [889] = 578, + [890] = 584, + [891] = 739, + [892] = 581, + [893] = 571, + [894] = 738, + [895] = 590, + [896] = 763, + [897] = 701, + [898] = 769, + [899] = 770, + [900] = 771, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 568, + [906] = 571, [907] = 907, [908] = 908, [909] = 909, - [910] = 572, + [910] = 910, [911] = 911, [912] = 912, [913] = 913, @@ -4760,8 +4732,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [925] = 925, [926] = 926, [927] = 927, - [928] = 574, - [929] = 573, + [928] = 928, + [929] = 929, [930] = 930, [931] = 931, [932] = 932, @@ -4787,24 +4759,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [952] = 952, [953] = 953, [954] = 954, - [955] = 955, + [955] = 570, [956] = 956, [957] = 957, [958] = 958, - [959] = 571, + [959] = 569, [960] = 960, [961] = 961, [962] = 962, [963] = 963, [964] = 964, - [965] = 965, - [966] = 966, + [965] = 459, + [966] = 444, [967] = 967, [968] = 968, [969] = 969, [970] = 970, - [971] = 460, - [972] = 453, + [971] = 971, + [972] = 972, [973] = 973, [974] = 974, [975] = 975, @@ -4833,199 +4805,199 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 978, - [1008] = 989, - [1009] = 986, - [1010] = 975, - [1011] = 981, - [1012] = 980, - [1013] = 985, - [1014] = 987, - [1015] = 982, - [1016] = 1003, - [1017] = 974, - [1018] = 977, - [1019] = 991, - [1020] = 992, - [1021] = 995, - [1022] = 976, - [1023] = 1005, - [1024] = 1001, - [1025] = 996, - [1026] = 1002, - [1027] = 990, - [1028] = 1000, - [1029] = 999, - [1030] = 1006, - [1031] = 973, + [1001] = 997, + [1002] = 993, + [1003] = 988, + [1004] = 969, + [1005] = 996, + [1006] = 1000, + [1007] = 990, + [1008] = 999, + [1009] = 998, + [1010] = 987, + [1011] = 992, + [1012] = 975, + [1013] = 995, + [1014] = 991, + [1015] = 972, + [1016] = 983, + [1017] = 986, + [1018] = 979, + [1019] = 976, + [1020] = 968, + [1021] = 978, + [1022] = 982, + [1023] = 970, + [1024] = 973, + [1025] = 985, + [1026] = 977, + [1027] = 989, + [1028] = 980, + [1029] = 994, + [1030] = 967, + [1031] = 974, [1032] = 984, - [1033] = 979, - [1034] = 994, - [1035] = 998, - [1036] = 988, - [1037] = 1004, - [1038] = 997, - [1039] = 983, - [1040] = 989, - [1041] = 437, - [1042] = 978, - [1043] = 936, - [1044] = 914, - [1045] = 976, - [1046] = 960, - [1047] = 907, - [1048] = 964, - [1049] = 961, - [1050] = 958, - [1051] = 931, - [1052] = 957, - [1053] = 963, - [1054] = 977, - [1055] = 906, - [1056] = 962, - [1057] = 908, - [1058] = 934, - [1059] = 935, - [1060] = 909, - [1061] = 983, - [1062] = 1005, - [1063] = 997, - [1064] = 966, - [1065] = 946, - [1066] = 912, - [1067] = 985, - [1068] = 987, - [1069] = 942, - [1070] = 939, - [1071] = 943, - [1072] = 974, - [1073] = 944, - [1074] = 945, - [1075] = 991, - [1076] = 948, - [1077] = 949, - [1078] = 992, - [1079] = 995, - [1080] = 996, - [1081] = 998, - [1082] = 999, - [1083] = 1000, - [1084] = 1002, - [1085] = 1003, - [1086] = 1004, - [1087] = 917, - [1088] = 911, - [1089] = 950, - [1090] = 980, - [1091] = 573, - [1092] = 981, - [1093] = 572, - [1094] = 973, - [1095] = 956, - [1096] = 937, - [1097] = 1001, - [1098] = 990, - [1099] = 953, - [1100] = 947, - [1101] = 940, - [1102] = 571, - [1103] = 988, - [1104] = 930, - [1105] = 938, - [1106] = 968, - [1107] = 933, - [1108] = 913, - [1109] = 932, - [1110] = 994, - [1111] = 952, - [1112] = 574, - [1113] = 923, - [1114] = 951, - [1115] = 941, - [1116] = 970, - [1117] = 969, - [1118] = 1118, - [1119] = 967, - [1120] = 1006, - [1121] = 925, - [1122] = 965, - [1123] = 982, - [1124] = 986, - [1125] = 915, - [1126] = 436, - [1127] = 955, - [1128] = 975, - [1129] = 954, - [1130] = 920, - [1131] = 922, - [1132] = 918, - [1133] = 919, - [1134] = 979, - [1135] = 916, - [1136] = 927, - [1137] = 926, - [1138] = 924, - [1139] = 921, - [1140] = 984, - [1141] = 1002, - [1142] = 1006, - [1143] = 974, - [1144] = 995, - [1145] = 977, - [1146] = 989, - [1147] = 996, - [1148] = 987, - [1149] = 997, - [1150] = 998, - [1151] = 985, - [1152] = 980, + [1033] = 981, + [1034] = 948, + [1035] = 925, + [1036] = 1000, + [1037] = 944, + [1038] = 917, + [1039] = 929, + [1040] = 940, + [1041] = 930, + [1042] = 931, + [1043] = 963, + [1044] = 935, + [1045] = 961, + [1046] = 934, + [1047] = 938, + [1048] = 901, + [1049] = 928, + [1050] = 926, + [1051] = 902, + [1052] = 433, + [1053] = 910, + [1054] = 953, + [1055] = 924, + [1056] = 911, + [1057] = 992, + [1058] = 1058, + [1059] = 956, + [1060] = 960, + [1061] = 984, + [1062] = 916, + [1063] = 914, + [1064] = 962, + [1065] = 903, + [1066] = 981, + [1067] = 972, + [1068] = 974, + [1069] = 947, + [1070] = 950, + [1071] = 986, + [1072] = 969, + [1073] = 970, + [1074] = 958, + [1075] = 976, + [1076] = 946, + [1077] = 937, + [1078] = 997, + [1079] = 945, + [1080] = 943, + [1081] = 942, + [1082] = 922, + [1083] = 909, + [1084] = 975, + [1085] = 977, + [1086] = 978, + [1087] = 979, + [1088] = 999, + [1089] = 968, + [1090] = 982, + [1091] = 985, + [1092] = 941, + [1093] = 939, + [1094] = 987, + [1095] = 989, + [1096] = 936, + [1097] = 983, + [1098] = 994, + [1099] = 957, + [1100] = 933, + [1101] = 995, + [1102] = 998, + [1103] = 967, + [1104] = 923, + [1105] = 932, + [1106] = 980, + [1107] = 951, + [1108] = 952, + [1109] = 918, + [1110] = 908, + [1111] = 927, + [1112] = 920, + [1113] = 991, + [1114] = 990, + [1115] = 973, + [1116] = 954, + [1117] = 571, + [1118] = 921, + [1119] = 964, + [1120] = 907, + [1121] = 904, + [1122] = 949, + [1123] = 919, + [1124] = 915, + [1125] = 568, + [1126] = 988, + [1127] = 913, + [1128] = 570, + [1129] = 912, + [1130] = 569, + [1131] = 434, + [1132] = 993, + [1133] = 996, + [1134] = 967, + [1135] = 998, + [1136] = 995, + [1137] = 981, + [1138] = 977, + [1139] = 979, + [1140] = 975, + [1141] = 992, + [1142] = 974, + [1143] = 969, + [1144] = 973, + [1145] = 970, + [1146] = 1000, + [1147] = 990, + [1148] = 989, + [1149] = 972, + [1150] = 984, + [1151] = 999, + [1152] = 987, [1153] = 983, - [1154] = 979, - [1155] = 975, - [1156] = 984, - [1157] = 999, - [1158] = 990, - [1159] = 1000, - [1160] = 1003, - [1161] = 986, - [1162] = 1004, - [1163] = 982, - [1164] = 978, - [1165] = 981, - [1166] = 994, - [1167] = 992, - [1168] = 991, - [1169] = 976, - [1170] = 988, - [1171] = 1005, - [1172] = 973, - [1173] = 1001, - [1174] = 1174, + [1154] = 982, + [1155] = 991, + [1156] = 986, + [1157] = 997, + [1158] = 968, + [1159] = 978, + [1160] = 994, + [1161] = 996, + [1162] = 980, + [1163] = 985, + [1164] = 993, + [1165] = 976, + [1166] = 988, + [1167] = 984, + [1168] = 984, + [1169] = 1169, + [1170] = 1169, + [1171] = 1171, + [1172] = 1169, + [1173] = 1173, + [1174] = 1171, [1175] = 1175, - [1176] = 1176, + [1176] = 1171, [1177] = 1177, - [1178] = 1005, - [1179] = 1174, - [1180] = 1180, + [1178] = 1178, + [1179] = 1179, + [1180] = 1169, [1181] = 1181, - [1182] = 1182, + [1182] = 1171, [1183] = 1183, - [1184] = 1005, - [1185] = 1181, + [1184] = 1184, + [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1174, + [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 1181, - [1192] = 1174, - [1193] = 1181, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, [1194] = 1194, [1195] = 1195, [1196] = 1196, @@ -5033,222 +5005,222 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, + [1201] = 1184, + [1202] = 1184, [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1206, + [1206] = 1203, [1207] = 1207, [1208] = 1208, - [1209] = 1189, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1194, + [1209] = 1209, + [1210] = 1192, + [1211] = 1194, + [1212] = 1187, + [1213] = 1187, [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1195, + [1215] = 1195, + [1216] = 1178, + [1217] = 1217, [1218] = 1218, - [1219] = 1177, + [1219] = 1219, [1220] = 1220, [1221] = 1221, - [1222] = 1222, - [1223] = 1222, - [1224] = 1177, + [1222] = 1178, + [1223] = 1223, + [1224] = 1187, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1228, [1229] = 1229, - [1230] = 1195, - [1231] = 1189, - [1232] = 1215, - [1233] = 1195, - [1234] = 1214, - [1235] = 1235, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1231, + [1235] = 1230, [1236] = 1236, [1237] = 1237, [1238] = 1238, [1239] = 1239, - [1240] = 1240, + [1240] = 1231, [1241] = 1241, [1242] = 1242, - [1243] = 1241, + [1243] = 1243, [1244] = 1244, - [1245] = 1241, + [1245] = 1245, [1246] = 1246, - [1247] = 1244, - [1248] = 1240, - [1249] = 1244, - [1250] = 1238, - [1251] = 1244, - [1252] = 1252, - [1253] = 1253, - [1254] = 1253, - [1255] = 1253, - [1256] = 1238, - [1257] = 1237, - [1258] = 1237, - [1259] = 1259, - [1260] = 1238, - [1261] = 1236, - [1262] = 1241, - [1263] = 1244, - [1264] = 1236, - [1265] = 1241, - [1266] = 1252, - [1267] = 1252, - [1268] = 1268, - [1269] = 1236, - [1270] = 1244, - [1271] = 1253, - [1272] = 1272, - [1273] = 1253, - [1274] = 1253, - [1275] = 1252, - [1276] = 1236, - [1277] = 1244, - [1278] = 1239, - [1279] = 1236, - [1280] = 1240, - [1281] = 1236, - [1282] = 1282, - [1283] = 1244, - [1284] = 1253, - [1285] = 1285, - [1286] = 1237, - [1287] = 1287, - [1288] = 1252, - [1289] = 1289, - [1290] = 1241, - [1291] = 1244, - [1292] = 1253, - [1293] = 1238, - [1294] = 1239, - [1295] = 1295, - [1296] = 1236, - [1297] = 1252, - [1298] = 1239, - [1299] = 1253, - [1300] = 1253, - [1301] = 1236, - [1302] = 1295, - [1303] = 1244, - [1304] = 1238, - [1305] = 1285, + [1247] = 1229, + [1248] = 1248, + [1249] = 1243, + [1250] = 1230, + [1251] = 1231, + [1252] = 1248, + [1253] = 1233, + [1254] = 1229, + [1255] = 1229, + [1256] = 1233, + [1257] = 1229, + [1258] = 1233, + [1259] = 1229, + [1260] = 1260, + [1261] = 1261, + [1262] = 1246, + [1263] = 1229, + [1264] = 1248, + [1265] = 1265, + [1266] = 1266, + [1267] = 1232, + [1268] = 1265, + [1269] = 1266, + [1270] = 1243, + [1271] = 1230, + [1272] = 1266, + [1273] = 1233, + [1274] = 1246, + [1275] = 1265, + [1276] = 1245, + [1277] = 1248, + [1278] = 1248, + [1279] = 1248, + [1280] = 1231, + [1281] = 1243, + [1282] = 1233, + [1283] = 1229, + [1284] = 1248, + [1285] = 1229, + [1286] = 1248, + [1287] = 1233, + [1288] = 1266, + [1289] = 1243, + [1290] = 1230, + [1291] = 1229, + [1292] = 1231, + [1293] = 1243, + [1294] = 1233, + [1295] = 1233, + [1296] = 1248, + [1297] = 1248, + [1298] = 1232, + [1299] = 1244, + [1300] = 1246, + [1301] = 1230, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1304, [1306] = 1306, - [1307] = 1295, - [1308] = 1246, + [1307] = 1307, + [1308] = 1308, [1309] = 1309, [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1312, - [1314] = 1314, - [1315] = 1315, - [1316] = 1316, + [1313] = 1313, + [1314] = 1312, + [1315] = 1313, + [1316] = 1312, [1317] = 1317, - [1318] = 1318, + [1318] = 1313, [1319] = 1319, [1320] = 1320, [1321] = 1320, - [1322] = 1322, - [1323] = 1322, + [1322] = 1320, + [1323] = 1323, [1324] = 1324, - [1325] = 1325, + [1325] = 1302, [1326] = 1326, - [1327] = 1322, - [1328] = 1320, + [1327] = 1308, + [1328] = 1328, [1329] = 1329, [1330] = 1330, - [1331] = 1330, - [1332] = 1330, + [1331] = 1331, + [1332] = 1332, [1333] = 1333, [1334] = 1309, - [1335] = 1335, + [1335] = 1310, [1336] = 1336, - [1337] = 1317, - [1338] = 1338, + [1337] = 1337, + [1338] = 1058, [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, + [1340] = 1319, + [1341] = 1311, + [1342] = 1317, [1343] = 1343, [1344] = 1344, - [1345] = 1319, - [1346] = 1318, - [1347] = 1118, + [1345] = 1345, + [1346] = 585, + [1347] = 1347, [1348] = 1348, - [1349] = 1325, - [1350] = 1329, + [1349] = 1349, + [1350] = 1350, [1351] = 1351, - [1352] = 1326, - [1353] = 1324, + [1352] = 1352, + [1353] = 1353, [1354] = 1354, [1355] = 1355, [1356] = 1356, - [1357] = 436, - [1358] = 581, - [1359] = 437, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, [1360] = 1360, [1361] = 1361, [1362] = 1362, - [1363] = 1363, - [1364] = 1364, + [1363] = 434, + [1364] = 1359, [1365] = 1365, - [1366] = 1366, - [1367] = 1367, + [1366] = 433, + [1367] = 1362, [1368] = 1368, [1369] = 1369, [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1365, - [1374] = 1356, + [1373] = 1373, + [1374] = 1374, [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1380, - [1381] = 524, - [1382] = 562, - [1383] = 512, - [1384] = 1384, + [1380] = 542, + [1381] = 1381, + [1382] = 1369, + [1383] = 1383, + [1384] = 1373, [1385] = 1385, - [1386] = 1386, + [1386] = 481, [1387] = 1387, [1388] = 1388, - [1389] = 1389, + [1389] = 1379, [1390] = 1390, - [1391] = 1391, - [1392] = 1389, + [1391] = 1374, + [1392] = 1392, [1393] = 1393, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, + [1397] = 531, [1398] = 1398, [1399] = 1399, - [1400] = 1399, - [1401] = 1390, + [1400] = 1398, + [1401] = 1399, [1402] = 1402, [1403] = 1403, [1404] = 1404, [1405] = 1405, [1406] = 1406, - [1407] = 1406, + [1407] = 1407, [1408] = 1408, - [1409] = 1409, - [1410] = 1410, + [1409] = 585, + [1410] = 1407, [1411] = 1411, [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1414, - [1416] = 1413, + [1413] = 584, + [1414] = 580, + [1415] = 1403, + [1416] = 1404, [1417] = 1417, [1418] = 1418, [1419] = 1419, @@ -5256,489 +5228,489 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1421] = 1421, [1422] = 1422, [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, + [1424] = 1422, + [1425] = 713, + [1426] = 1423, [1427] = 1427, - [1428] = 1428, - [1429] = 593, + [1428] = 585, + [1429] = 644, [1430] = 1430, - [1431] = 591, - [1432] = 1427, + [1431] = 1431, + [1432] = 1432, [1433] = 1433, - [1434] = 1420, - [1435] = 581, - [1436] = 1421, + [1434] = 1434, + [1435] = 1435, + [1436] = 1302, [1437] = 1437, [1438] = 1438, [1439] = 1439, - [1440] = 1440, - [1441] = 581, - [1442] = 1442, - [1443] = 1443, - [1444] = 685, - [1445] = 1445, - [1446] = 1437, - [1447] = 1447, - [1448] = 648, + [1440] = 1437, + [1441] = 1439, + [1442] = 1434, + [1443] = 1439, + [1444] = 1306, + [1445] = 1434, + [1446] = 1434, + [1447] = 1434, + [1448] = 1448, [1449] = 1449, - [1450] = 1442, - [1451] = 1451, - [1452] = 1452, - [1453] = 1451, - [1454] = 1314, - [1455] = 1316, - [1456] = 1456, - [1457] = 1456, - [1458] = 1458, - [1459] = 1456, - [1460] = 1268, - [1461] = 1461, - [1462] = 1462, - [1463] = 1451, - [1464] = 1458, - [1465] = 1317, - [1466] = 1309, - [1467] = 1458, - [1468] = 1452, - [1469] = 1469, - [1470] = 1458, - [1471] = 1451, - [1472] = 1452, - [1473] = 1451, - [1474] = 1474, - [1475] = 1475, - [1476] = 1458, - [1477] = 1458, - [1478] = 1478, - [1479] = 581, - [1480] = 1451, - [1481] = 1452, - [1482] = 1452, - [1483] = 1310, - [1484] = 1452, - [1485] = 1458, - [1486] = 1486, + [1450] = 1434, + [1451] = 1437, + [1452] = 1308, + [1453] = 1437, + [1454] = 1434, + [1455] = 1439, + [1456] = 1449, + [1457] = 1457, + [1458] = 1437, + [1459] = 585, + [1460] = 1439, + [1461] = 1307, + [1462] = 1239, + [1463] = 1434, + [1464] = 1434, + [1465] = 1439, + [1466] = 1449, + [1467] = 1437, + [1468] = 1437, + [1469] = 1449, + [1470] = 1470, + [1471] = 1471, + [1472] = 1439, + [1473] = 1439, + [1474] = 1437, + [1475] = 1439, + [1476] = 1434, + [1477] = 1437, + [1478] = 1439, + [1479] = 1434, + [1480] = 1434, + [1481] = 1481, + [1482] = 1437, + [1483] = 1439, + [1484] = 1449, + [1485] = 1485, + [1486] = 1437, [1487] = 1487, - [1488] = 1315, - [1489] = 1451, - [1490] = 1451, - [1491] = 1458, - [1492] = 1452, - [1493] = 1451, - [1494] = 1458, - [1495] = 1452, - [1496] = 1456, - [1497] = 1458, - [1498] = 1452, - [1499] = 1451, - [1500] = 1456, - [1501] = 1501, - [1502] = 1458, - [1503] = 1503, - [1504] = 1452, - [1505] = 1452, - [1506] = 1452, - [1507] = 1452, + [1488] = 1488, + [1489] = 1434, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1491, + [1496] = 1493, + [1497] = 1490, + [1498] = 419, + [1499] = 1420, + [1500] = 1500, + [1501] = 1494, + [1502] = 420, + [1503] = 576, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, [1508] = 1508, - [1509] = 1451, + [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 1511, + [1512] = 1512, [1513] = 1513, - [1514] = 1445, - [1515] = 1515, - [1516] = 1440, - [1517] = 1517, - [1518] = 1517, - [1519] = 420, + [1514] = 1512, + [1515] = 580, + [1516] = 1512, + [1517] = 1510, + [1518] = 674, + [1519] = 576, [1520] = 1520, - [1521] = 421, - [1522] = 1510, - [1523] = 1520, - [1524] = 1524, + [1521] = 1510, + [1522] = 674, + [1523] = 1512, + [1524] = 1457, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 576, - [1529] = 1529, - [1530] = 1530, - [1531] = 1422, + [1526] = 1513, + [1527] = 585, + [1528] = 1510, + [1529] = 1512, + [1530] = 1411, + [1531] = 1405, [1532] = 1532, - [1533] = 1527, + [1533] = 1504, [1534] = 1534, - [1535] = 1534, - [1536] = 1534, - [1537] = 1524, - [1538] = 1538, - [1539] = 672, - [1540] = 1540, - [1541] = 672, - [1542] = 1542, - [1543] = 1426, - [1544] = 1524, - [1545] = 1461, - [1546] = 576, - [1547] = 1524, + [1535] = 1504, + [1536] = 1512, + [1537] = 1537, + [1538] = 584, + [1539] = 674, + [1540] = 1406, + [1541] = 1408, + [1542] = 1510, + [1543] = 1543, + [1544] = 1544, + [1545] = 793, + [1546] = 1546, + [1547] = 1547, [1548] = 1548, - [1549] = 1534, - [1550] = 1530, - [1551] = 1524, - [1552] = 591, - [1553] = 1534, - [1554] = 1527, + [1549] = 1549, + [1550] = 1550, + [1551] = 421, + [1552] = 1552, + [1553] = 1553, + [1554] = 421, [1555] = 1555, - [1556] = 1419, - [1557] = 581, + [1556] = 1556, + [1557] = 1557, [1558] = 1558, - [1559] = 1423, - [1560] = 1424, - [1561] = 593, - [1562] = 1524, + [1559] = 1559, + [1560] = 1406, + [1561] = 1561, + [1562] = 1562, [1563] = 1563, - [1564] = 672, - [1565] = 790, - [1566] = 1566, + [1564] = 422, + [1565] = 1565, + [1566] = 1408, [1567] = 1567, - [1568] = 1568, + [1568] = 580, [1569] = 1569, - [1570] = 426, - [1571] = 1571, - [1572] = 581, + [1570] = 1556, + [1571] = 1561, + [1572] = 1572, [1573] = 1573, - [1574] = 1574, + [1574] = 1565, [1575] = 1575, - [1576] = 1423, - [1577] = 1577, + [1576] = 1576, + [1577] = 585, [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, - [1582] = 1569, - [1583] = 424, + [1579] = 1565, + [1580] = 1567, + [1581] = 422, + [1582] = 1548, + [1583] = 584, [1584] = 1584, - [1585] = 1419, - [1586] = 1426, + [1585] = 1585, + [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1589, - [1590] = 1590, - [1591] = 1591, - [1592] = 1571, - [1593] = 1593, - [1594] = 1577, - [1595] = 1595, - [1596] = 426, + [1589] = 1552, + [1590] = 1587, + [1591] = 1586, + [1592] = 1592, + [1593] = 1569, + [1594] = 1576, + [1595] = 1572, + [1596] = 1584, [1597] = 1597, - [1598] = 424, + [1598] = 1598, [1599] = 1599, - [1600] = 1600, + [1600] = 1597, [1601] = 1601, - [1602] = 1580, - [1603] = 1603, - [1604] = 1424, - [1605] = 1605, - [1606] = 1606, - [1607] = 1574, - [1608] = 1608, - [1609] = 593, - [1610] = 1610, - [1611] = 1611, - [1612] = 1612, - [1613] = 1569, - [1614] = 1595, - [1615] = 591, - [1616] = 1616, - [1617] = 1573, - [1618] = 1530, + [1602] = 1553, + [1603] = 1575, + [1604] = 1411, + [1605] = 1567, + [1606] = 1588, + [1607] = 1601, + [1608] = 1513, + [1609] = 1550, + [1610] = 1578, + [1611] = 1405, + [1612] = 1559, + [1613] = 1555, + [1614] = 1557, + [1615] = 1615, + [1616] = 1546, + [1617] = 1585, + [1618] = 1618, [1619] = 1619, - [1620] = 1610, + [1620] = 1619, [1621] = 1621, [1622] = 1622, - [1623] = 1578, + [1623] = 1623, [1624] = 1624, - [1625] = 1422, - [1626] = 1626, - [1627] = 1622, + [1625] = 1625, + [1626] = 431, + [1627] = 1627, [1628] = 1628, - [1629] = 1587, - [1630] = 1611, - [1631] = 1600, - [1632] = 1590, - [1633] = 1591, - [1634] = 1624, - [1635] = 1612, - [1636] = 1616, - [1637] = 1621, - [1638] = 1581, - [1639] = 1588, - [1640] = 1616, - [1641] = 1589, - [1642] = 1642, - [1643] = 1584, - [1644] = 1628, - [1645] = 451, - [1646] = 447, - [1647] = 1647, - [1648] = 1648, + [1629] = 1618, + [1630] = 1623, + [1631] = 1631, + [1632] = 1632, + [1633] = 1632, + [1634] = 453, + [1635] = 1635, + [1636] = 430, + [1637] = 1623, + [1638] = 1638, + [1639] = 437, + [1640] = 438, + [1641] = 1619, + [1642] = 1623, + [1643] = 1643, + [1644] = 1623, + [1645] = 1619, + [1646] = 1619, + [1647] = 435, + [1648] = 1623, [1649] = 1649, - [1650] = 1605, + [1650] = 1650, [1651] = 1651, - [1652] = 454, + [1652] = 1643, [1653] = 1653, - [1654] = 1654, - [1655] = 1655, + [1654] = 1619, + [1655] = 1623, [1656] = 1656, - [1657] = 1593, - [1658] = 1658, - [1659] = 434, + [1657] = 1657, + [1658] = 1619, + [1659] = 1599, [1660] = 1660, - [1661] = 1661, + [1661] = 1624, [1662] = 1662, - [1663] = 459, - [1664] = 1664, - [1665] = 457, - [1666] = 1660, - [1667] = 1651, - [1668] = 1654, - [1669] = 1669, - [1670] = 1658, - [1671] = 443, + [1663] = 445, + [1664] = 1623, + [1665] = 1623, + [1666] = 449, + [1667] = 1667, + [1668] = 450, + [1669] = 1656, + [1670] = 1670, + [1671] = 452, [1672] = 1672, - [1673] = 1673, + [1673] = 456, [1674] = 1674, - [1675] = 442, + [1675] = 1619, [1676] = 1676, - [1677] = 1654, - [1678] = 1658, - [1679] = 1679, - [1680] = 441, - [1681] = 1647, - [1682] = 1654, - [1683] = 1683, - [1684] = 1606, - [1685] = 439, - [1686] = 1654, + [1677] = 1677, + [1678] = 1573, + [1679] = 1653, + [1680] = 1619, + [1681] = 1681, + [1682] = 448, + [1683] = 446, + [1684] = 1506, + [1685] = 1685, + [1686] = 1623, [1687] = 1687, - [1688] = 1651, - [1689] = 1654, - [1690] = 1690, - [1691] = 1651, - [1692] = 1692, - [1693] = 431, - [1694] = 461, - [1695] = 1654, - [1696] = 1654, - [1697] = 444, - [1698] = 1698, - [1699] = 1654, - [1700] = 448, - [1701] = 1648, - [1702] = 449, - [1703] = 450, - [1704] = 1704, - [1705] = 1705, - [1706] = 1651, - [1707] = 1679, - [1708] = 1651, - [1709] = 1651, - [1710] = 1661, - [1711] = 456, - [1712] = 446, - [1713] = 452, - [1714] = 1649, - [1715] = 1715, - [1716] = 1698, - [1717] = 1705, - [1718] = 1651, - [1719] = 1664, + [1688] = 1688, + [1689] = 447, + [1690] = 436, + [1691] = 440, + [1692] = 1619, + [1693] = 1667, + [1694] = 432, + [1695] = 1619, + [1696] = 1622, + [1697] = 1688, + [1698] = 1619, + [1699] = 1623, + [1700] = 454, + [1701] = 1701, + [1702] = 1660, + [1703] = 1703, + [1704] = 1667, + [1705] = 1562, + [1706] = 1676, + [1707] = 1621, + [1708] = 1653, + [1709] = 1709, + [1710] = 1710, + [1711] = 429, + [1712] = 1674, + [1713] = 443, + [1714] = 1672, + [1715] = 1662, + [1716] = 439, + [1717] = 441, + [1718] = 1718, + [1719] = 1719, [1720] = 1720, [1721] = 1721, - [1722] = 1619, - [1723] = 1654, - [1724] = 1651, - [1725] = 1538, + [1722] = 1563, + [1723] = 1657, + [1724] = 1724, + [1725] = 1725, [1726] = 1726, - [1727] = 455, - [1728] = 1673, - [1729] = 1698, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, [1730] = 1730, [1731] = 1731, - [1732] = 1692, - [1733] = 1655, + [1732] = 1732, + [1733] = 1733, [1734] = 1734, - [1735] = 1683, - [1736] = 1653, - [1737] = 435, - [1738] = 1654, - [1739] = 458, - [1740] = 1740, - [1741] = 445, - [1742] = 1651, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 660, + [1739] = 1739, + [1740] = 1730, + [1741] = 1719, + [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1687, - [1747] = 1730, + [1746] = 1746, + [1747] = 1747, [1748] = 1748, - [1749] = 1651, - [1750] = 1651, + [1749] = 1749, + [1750] = 1750, [1751] = 1751, - [1752] = 1752, + [1752] = 1719, [1753] = 1753, - [1754] = 1754, + [1754] = 1725, [1755] = 1755, - [1756] = 1756, + [1756] = 1751, [1757] = 1757, [1758] = 1758, [1759] = 1759, [1760] = 1760, [1761] = 1761, - [1762] = 1762, - [1763] = 1756, - [1764] = 1754, + [1762] = 1732, + [1763] = 1763, + [1764] = 1764, [1765] = 1765, [1766] = 1766, - [1767] = 1767, + [1767] = 1734, [1768] = 1768, [1769] = 1769, - [1770] = 1770, + [1770] = 1755, [1771] = 1771, [1772] = 1772, [1773] = 1773, - [1774] = 1774, + [1774] = 1727, [1775] = 1775, [1776] = 1776, [1777] = 1777, [1778] = 1778, [1779] = 1779, [1780] = 1780, - [1781] = 1777, - [1782] = 1754, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1766, - [1787] = 1787, + [1781] = 1763, + [1782] = 1745, + [1783] = 1726, + [1784] = 1724, + [1785] = 1729, + [1786] = 1786, + [1787] = 1764, [1788] = 1788, [1789] = 1789, - [1790] = 1790, + [1790] = 1727, [1791] = 1791, - [1792] = 1792, + [1792] = 1742, [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1601, - [1797] = 1745, - [1798] = 1759, + [1794] = 1749, + [1795] = 1757, + [1796] = 1748, + [1797] = 1677, + [1798] = 1798, [1799] = 1799, [1800] = 1800, - [1801] = 1801, + [1801] = 1737, [1802] = 1802, - [1803] = 1803, + [1803] = 1747, [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1811, + [1806] = 1744, + [1807] = 1727, + [1808] = 1736, + [1809] = 1760, + [1810] = 1786, + [1811] = 1676, [1812] = 1812, [1813] = 1813, [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 1817, - [1818] = 1791, + [1817] = 1735, + [1818] = 1773, [1819] = 1819, [1820] = 1820, [1821] = 1821, [1822] = 1822, - [1823] = 1772, - [1824] = 1799, + [1823] = 1816, + [1824] = 1824, [1825] = 1825, - [1826] = 1801, - [1827] = 1827, - [1828] = 1780, - [1829] = 1778, - [1830] = 1802, - [1831] = 1773, - [1832] = 1803, - [1833] = 1833, - [1834] = 1834, - [1835] = 1770, - [1836] = 1836, - [1837] = 1754, + [1826] = 1826, + [1827] = 1793, + [1828] = 1728, + [1829] = 1829, + [1830] = 1826, + [1831] = 1768, + [1832] = 1822, + [1833] = 1824, + [1834] = 1825, + [1835] = 1761, + [1836] = 1829, + [1837] = 1837, [1838] = 1769, - [1839] = 1839, + [1839] = 1753, [1840] = 1840, - [1841] = 1767, + [1841] = 1721, [1842] = 1842, - [1843] = 1827, + [1843] = 1733, [1844] = 1844, - [1845] = 1788, - [1846] = 1819, + [1845] = 1845, + [1846] = 1846, [1847] = 1847, [1848] = 1848, - [1849] = 1731, - [1850] = 1752, - [1851] = 1851, - [1852] = 1844, - [1853] = 1770, - [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1789, - [1858] = 1785, - [1859] = 1660, - [1860] = 1860, - [1861] = 1861, - [1862] = 1807, - [1863] = 1810, - [1864] = 1808, - [1865] = 1705, - [1866] = 1833, - [1867] = 1765, + [1849] = 1804, + [1850] = 1850, + [1851] = 1730, + [1852] = 1758, + [1853] = 1621, + [1854] = 1842, + [1855] = 1733, + [1856] = 1743, + [1857] = 1857, + [1858] = 1846, + [1859] = 1734, + [1860] = 1779, + [1861] = 1718, + [1862] = 461, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, [1868] = 1868, - [1869] = 1855, + [1869] = 1869, [1870] = 1870, - [1871] = 1771, + [1871] = 1871, [1872] = 1872, - [1873] = 1757, - [1874] = 1762, + [1873] = 1873, + [1874] = 1874, [1875] = 1875, - [1876] = 1861, - [1877] = 1848, - [1878] = 1836, - [1879] = 1839, - [1880] = 1840, - [1881] = 1768, - [1882] = 1854, - [1883] = 1875, - [1884] = 1884, - [1885] = 1776, - [1886] = 1800, - [1887] = 1752, - [1888] = 1872, - [1889] = 1875, - [1890] = 679, - [1891] = 1768, - [1892] = 1892, - [1893] = 1893, - [1894] = 1774, - [1895] = 1775, - [1896] = 1896, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 1879, + [1880] = 1867, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, + [1884] = 1879, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1881, + [1890] = 1890, + [1891] = 1687, + [1892] = 1878, + [1893] = 1875, + [1894] = 1870, + [1895] = 1895, + [1896] = 1876, [1897] = 1897, - [1898] = 1892, - [1899] = 1847, + [1898] = 1898, + [1899] = 1899, [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1904, + [1904] = 1865, [1905] = 1905, - [1906] = 1906, + [1906] = 1871, [1907] = 1907, [1908] = 1908, [1909] = 1909, @@ -5748,248 +5720,248 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1913] = 1913, [1914] = 1914, [1915] = 1915, - [1916] = 1916, + [1916] = 1888, [1917] = 1917, [1918] = 1918, [1919] = 1919, - [1920] = 1904, - [1921] = 1915, - [1922] = 1922, + [1920] = 1920, + [1921] = 1921, + [1922] = 1709, [1923] = 1923, [1924] = 1924, - [1925] = 1919, - [1926] = 1914, - [1927] = 1910, - [1928] = 1928, - [1929] = 1929, - [1930] = 1918, - [1931] = 1931, - [1932] = 1720, - [1933] = 1933, + [1925] = 543, + [1926] = 523, + [1927] = 562, + [1928] = 536, + [1929] = 465, + [1930] = 1897, + [1931] = 471, + [1932] = 1932, + [1933] = 477, [1934] = 1934, - [1935] = 1907, - [1936] = 1936, - [1937] = 1937, + [1935] = 488, + [1936] = 1905, + [1937] = 506, [1938] = 1938, [1939] = 1939, - [1940] = 1909, + [1940] = 553, [1941] = 1941, - [1942] = 1911, - [1943] = 1943, - [1944] = 1917, - [1945] = 1945, + [1942] = 1942, + [1943] = 520, + [1944] = 1944, + [1945] = 466, [1946] = 1946, [1947] = 1947, - [1948] = 1948, + [1948] = 489, [1949] = 1949, [1950] = 1950, - [1951] = 1951, + [1951] = 1872, [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 1934, - [1957] = 1957, - [1958] = 1958, + [1953] = 493, + [1954] = 496, + [1955] = 524, + [1956] = 545, + [1957] = 1921, + [1958] = 548, [1959] = 1959, - [1960] = 516, - [1961] = 465, + [1960] = 1960, + [1961] = 556, [1962] = 1962, - [1963] = 1662, - [1964] = 513, - [1965] = 495, - [1966] = 502, - [1967] = 1967, - [1968] = 506, - [1969] = 1969, - [1970] = 509, - [1971] = 517, - [1972] = 520, - [1973] = 526, - [1974] = 528, - [1975] = 538, - [1976] = 1976, - [1977] = 481, - [1978] = 1943, - [1979] = 557, + [1963] = 554, + [1964] = 1964, + [1965] = 549, + [1966] = 1966, + [1967] = 546, + [1968] = 1968, + [1969] = 544, + [1970] = 1970, + [1971] = 511, + [1972] = 1972, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 540, + [1977] = 538, + [1978] = 1978, + [1979] = 537, [1980] = 1980, - [1981] = 563, + [1981] = 1981, [1982] = 1982, - [1983] = 560, - [1984] = 1951, - [1985] = 1985, - [1986] = 558, + [1983] = 1983, + [1984] = 1984, + [1985] = 535, + [1986] = 1986, [1987] = 1987, - [1988] = 1988, - [1989] = 556, - [1990] = 1990, - [1991] = 546, + [1988] = 1987, + [1989] = 1964, + [1990] = 526, + [1991] = 1949, [1992] = 1992, [1993] = 1993, - [1994] = 545, - [1995] = 1995, - [1996] = 1996, - [1997] = 1908, + [1994] = 1994, + [1995] = 519, + [1996] = 1932, + [1997] = 1997, [1998] = 1998, - [1999] = 541, - [2000] = 540, - [2001] = 536, - [2002] = 534, - [2003] = 1967, - [2004] = 533, - [2005] = 2005, - [2006] = 2006, - [2007] = 531, - [2008] = 2008, - [2009] = 525, - [2010] = 2010, - [2011] = 523, - [2012] = 2012, - [2013] = 522, - [2014] = 2014, - [2015] = 521, - [2016] = 2016, - [2017] = 512, - [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 498, - [2023] = 479, - [2024] = 2024, - [2025] = 464, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, + [1999] = 514, + [2000] = 1912, + [2001] = 1911, + [2002] = 2002, + [2003] = 2003, + [2004] = 512, + [2005] = 541, + [2006] = 507, + [2007] = 492, + [2008] = 486, + [2009] = 483, + [2010] = 479, + [2011] = 478, + [2012] = 469, + [2013] = 468, + [2014] = 560, + [2015] = 513, + [2016] = 518, + [2017] = 505, + [2018] = 499, + [2019] = 491, + [2020] = 481, + [2021] = 472, + [2022] = 473, + [2023] = 539, + [2024] = 557, + [2025] = 555, + [2026] = 516, + [2027] = 1902, + [2028] = 515, + [2029] = 462, [2030] = 2030, - [2031] = 468, - [2032] = 2032, - [2033] = 2032, - [2034] = 2010, - [2035] = 1995, - [2036] = 472, - [2037] = 2037, - [2038] = 1980, - [2039] = 2039, - [2040] = 1950, - [2041] = 474, - [2042] = 1949, - [2043] = 2043, + [2031] = 1886, + [2032] = 463, + [2033] = 467, + [2034] = 460, + [2035] = 474, + [2036] = 2036, + [2037] = 476, + [2038] = 2038, + [2039] = 534, + [2040] = 550, + [2041] = 482, + [2042] = 508, + [2043] = 510, [2044] = 2044, - [2045] = 478, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, - [2050] = 484, - [2051] = 486, - [2052] = 488, - [2053] = 499, - [2054] = 503, - [2055] = 505, - [2056] = 561, - [2057] = 537, - [2058] = 530, - [2059] = 504, - [2060] = 508, - [2061] = 473, - [2062] = 475, - [2063] = 476, - [2064] = 477, - [2065] = 480, - [2066] = 482, - [2067] = 485, - [2068] = 487, - [2069] = 493, - [2070] = 496, - [2071] = 511, - [2072] = 519, - [2073] = 1928, - [2074] = 2074, - [2075] = 544, - [2076] = 2076, - [2077] = 1903, - [2078] = 492, - [2079] = 491, - [2080] = 507, - [2081] = 463, - [2082] = 2082, - [2083] = 2083, - [2084] = 1902, - [2085] = 539, - [2086] = 543, - [2087] = 553, - [2088] = 555, - [2089] = 562, - [2090] = 2090, + [2045] = 2045, + [2046] = 528, + [2047] = 532, + [2048] = 1866, + [2049] = 559, + [2050] = 2050, + [2051] = 1871, + [2052] = 558, + [2053] = 542, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 502, + [2058] = 1864, + [2059] = 498, + [2060] = 1921, + [2061] = 494, + [2062] = 490, + [2063] = 485, + [2064] = 497, + [2065] = 500, + [2066] = 2066, + [2067] = 501, + [2068] = 503, + [2069] = 504, + [2070] = 509, + [2071] = 522, + [2072] = 527, + [2073] = 529, + [2074] = 531, + [2075] = 1631, + [2076] = 552, + [2077] = 561, + [2078] = 551, + [2079] = 2079, + [2080] = 2080, + [2081] = 487, + [2082] = 470, + [2083] = 525, + [2084] = 495, + [2085] = 517, + [2086] = 484, + [2087] = 533, + [2088] = 2088, + [2089] = 521, + [2090] = 1302, [2091] = 2091, - [2092] = 2092, - [2093] = 518, - [2094] = 2094, - [2095] = 514, - [2096] = 2096, - [2097] = 1917, - [2098] = 510, - [2099] = 467, + [2092] = 1871, + [2093] = 475, + [2094] = 1771, + [2095] = 2095, + [2096] = 1921, + [2097] = 2097, + [2098] = 1921, + [2099] = 1871, [2100] = 2100, - [2101] = 564, - [2102] = 552, - [2103] = 551, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, [2104] = 2104, - [2105] = 549, - [2106] = 1967, - [2107] = 548, - [2108] = 547, - [2109] = 554, - [2110] = 535, - [2111] = 462, + [2105] = 1921, + [2106] = 2106, + [2107] = 1871, + [2108] = 2108, + [2109] = 2109, + [2110] = 1921, + [2111] = 2111, [2112] = 2112, - [2113] = 532, - [2114] = 524, - [2115] = 1669, - [2116] = 501, - [2117] = 497, - [2118] = 494, - [2119] = 490, - [2120] = 489, - [2121] = 471, - [2122] = 469, + [2113] = 1871, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 1921, + [2119] = 1871, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, [2123] = 2123, - [2124] = 515, - [2125] = 1825, - [2126] = 500, - [2127] = 470, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, [2128] = 2128, - [2129] = 483, - [2130] = 1967, - [2131] = 542, - [2132] = 1309, - [2133] = 466, - [2134] = 1917, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, [2135] = 2135, [2136] = 2136, [2137] = 2137, - [2138] = 1917, - [2139] = 1967, - [2140] = 1917, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, [2141] = 2141, [2142] = 2142, [2143] = 2143, - [2144] = 1967, + [2144] = 2144, [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 2148, - [2149] = 1967, - [2150] = 1917, + [2148] = 2128, + [2149] = 2149, + [2150] = 2150, [2151] = 2151, [2152] = 2152, [2153] = 2153, - [2154] = 1967, + [2154] = 2154, [2155] = 2155, [2156] = 2156, - [2157] = 1917, + [2157] = 2157, [2158] = 2158, [2159] = 2159, [2160] = 2160, @@ -5998,11 +5970,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2163] = 2163, [2164] = 2164, [2165] = 2165, - [2166] = 2166, - [2167] = 2167, + [2166] = 2121, + [2167] = 2128, [2168] = 2168, [2169] = 2169, - [2170] = 2170, + [2170] = 2138, [2171] = 2171, [2172] = 2172, [2173] = 2173, @@ -6015,7 +5987,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2180] = 2180, [2181] = 2181, [2182] = 2182, - [2183] = 2183, + [2183] = 1618, [2184] = 2184, [2185] = 2185, [2186] = 2186, @@ -6023,473 +5995,427 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 2191, + [2191] = 2128, [2192] = 2192, - [2193] = 2193, - [2194] = 2174, + [2193] = 1913, + [2194] = 2194, [2195] = 2195, - [2196] = 2174, + [2196] = 2196, [2197] = 2197, [2198] = 2198, [2199] = 2199, [2200] = 2200, - [2201] = 2201, + [2201] = 2132, [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, + [2203] = 2139, + [2204] = 2144, + [2205] = 2151, [2206] = 2206, [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2210, + [2208] = 1624, + [2209] = 2134, + [2210] = 2207, [2211] = 2211, [2212] = 2212, [2213] = 2213, - [2214] = 2178, + [2214] = 2214, [2215] = 2215, [2216] = 2216, [2217] = 2217, [2218] = 2218, [2219] = 2219, - [2220] = 1730, + [2220] = 2133, [2221] = 2221, [2222] = 2222, [2223] = 2223, - [2224] = 2174, + [2224] = 2224, [2225] = 2225, - [2226] = 2226, - [2227] = 2227, + [2226] = 2216, + [2227] = 2122, [2228] = 2228, [2229] = 2229, - [2230] = 2230, + [2230] = 2128, [2231] = 2231, [2232] = 2232, - [2233] = 2221, + [2233] = 2233, [2234] = 2234, [2235] = 2235, - [2236] = 2236, - [2237] = 1952, + [2236] = 2202, + [2237] = 2139, [2238] = 2238, - [2239] = 2239, + [2239] = 2199, [2240] = 2240, - [2241] = 2180, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, + [2241] = 2124, + [2242] = 2229, + [2243] = 2223, + [2244] = 2181, + [2245] = 2165, [2246] = 2246, - [2247] = 2173, - [2248] = 2248, - [2249] = 2185, - [2250] = 2192, - [2251] = 2193, - [2252] = 2252, - [2253] = 2180, - [2254] = 1653, - [2255] = 2255, - [2256] = 2256, + [2247] = 2188, + [2248] = 2180, + [2249] = 2173, + [2250] = 2250, + [2251] = 2251, + [2252] = 2161, + [2253] = 2253, + [2254] = 2155, + [2255] = 2154, + [2256] = 2127, [2257] = 2257, [2258] = 2258, - [2259] = 2259, - [2260] = 2258, + [2259] = 2195, + [2260] = 2260, [2261] = 2261, [2262] = 2262, [2263] = 2263, [2264] = 2264, [2265] = 2265, - [2266] = 2248, - [2267] = 2174, - [2268] = 2240, + [2266] = 2141, + [2267] = 2197, + [2268] = 2268, [2269] = 2269, - [2270] = 2234, - [2271] = 2271, - [2272] = 2262, - [2273] = 2188, - [2274] = 2274, - [2275] = 2275, - [2276] = 2185, - [2277] = 2219, + [2270] = 2142, + [2271] = 2120, + [2272] = 2194, + [2273] = 2273, + [2274] = 2185, + [2275] = 2192, + [2276] = 2192, + [2277] = 2277, [2278] = 2278, - [2279] = 2229, - [2280] = 2217, + [2279] = 2279, + [2280] = 2280, [2281] = 2281, - [2282] = 2282, - [2283] = 2245, + [2282] = 2143, + [2283] = 2182, [2284] = 2284, - [2285] = 2242, + [2285] = 2145, [2286] = 2286, - [2287] = 2278, - [2288] = 2275, - [2289] = 2239, - [2290] = 2207, - [2291] = 2200, - [2292] = 2223, - [2293] = 2165, - [2294] = 2190, - [2295] = 2186, + [2287] = 2146, + [2288] = 2288, + [2289] = 2289, + [2290] = 2290, + [2291] = 2134, + [2292] = 2147, + [2293] = 2149, + [2294] = 2294, + [2295] = 2295, [2296] = 2296, [2297] = 2297, - [2298] = 2298, - [2299] = 2299, - [2300] = 2160, - [2301] = 2301, - [2302] = 2162, - [2303] = 2181, + [2298] = 2219, + [2299] = 2164, + [2300] = 2300, + [2301] = 2169, + [2302] = 2302, + [2303] = 2176, [2304] = 2304, - [2305] = 2202, - [2306] = 2306, + [2305] = 2305, + [2306] = 2177, [2307] = 2307, - [2308] = 2222, - [2309] = 2309, + [2308] = 2308, + [2309] = 2213, [2310] = 2310, - [2311] = 2225, - [2312] = 2182, + [2311] = 2214, + [2312] = 2218, [2313] = 2313, - [2314] = 2231, - [2315] = 2282, - [2316] = 2183, - [2317] = 2170, - [2318] = 2318, - [2319] = 2216, + [2314] = 2314, + [2315] = 2150, + [2316] = 2316, + [2317] = 2262, + [2318] = 2222, + [2319] = 2319, [2320] = 2320, - [2321] = 2184, - [2322] = 2231, - [2323] = 2323, - [2324] = 2324, - [2325] = 2187, + [2321] = 2225, + [2322] = 2322, + [2323] = 2174, + [2324] = 2172, + [2325] = 2221, [2326] = 2326, [2327] = 2327, - [2328] = 2328, + [2328] = 2264, [2329] = 2329, - [2330] = 2330, + [2330] = 2263, [2331] = 2331, - [2332] = 2189, + [2332] = 2128, [2333] = 2333, - [2334] = 2334, + [2334] = 2232, [2335] = 2335, - [2336] = 2336, + [2336] = 2224, [2337] = 2337, - [2338] = 2328, - [2339] = 2339, - [2340] = 2206, - [2341] = 2210, - [2342] = 2342, - [2343] = 2215, - [2344] = 2344, - [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 2218, - [2349] = 2349, + [2338] = 2338, + [2339] = 2234, + [2340] = 2340, + [2341] = 2257, + [2342] = 2258, + [2343] = 2343, + [2344] = 2284, + [2345] = 2260, + [2346] = 2268, + [2347] = 2269, + [2348] = 2286, + [2349] = 2288, [2350] = 2350, - [2351] = 2255, - [2352] = 2352, - [2353] = 2256, - [2354] = 2259, + [2351] = 2296, + [2352] = 2331, + [2353] = 2297, + [2354] = 2215, [2355] = 2355, - [2356] = 2356, - [2357] = 2261, + [2356] = 2319, + [2357] = 2320, [2358] = 2358, - [2359] = 2359, - [2360] = 2263, + [2359] = 2134, + [2360] = 2261, [2361] = 2361, - [2362] = 2362, - [2363] = 2264, - [2364] = 2364, - [2365] = 2365, - [2366] = 2159, + [2362] = 2280, + [2363] = 2279, + [2364] = 2278, + [2365] = 2277, + [2366] = 2326, [2367] = 2265, - [2368] = 2368, - [2369] = 2369, - [2370] = 2310, - [2371] = 2371, - [2372] = 2309, - [2373] = 2198, - [2374] = 2174, - [2375] = 2375, - [2376] = 2271, - [2377] = 2377, - [2378] = 2208, - [2379] = 2345, - [2380] = 2281, - [2381] = 2381, - [2382] = 2209, + [2368] = 2217, + [2369] = 2327, + [2370] = 2253, + [2371] = 2235, + [2372] = 2329, + [2373] = 2139, + [2374] = 2233, + [2375] = 2054, + [2376] = 2192, + [2377] = 2231, + [2378] = 2333, + [2379] = 2152, + [2380] = 2380, + [2381] = 2153, + [2382] = 2382, [2383] = 2383, - [2384] = 2297, - [2385] = 2298, + [2384] = 2384, + [2385] = 2385, [2386] = 2386, - [2387] = 2301, - [2388] = 2306, - [2389] = 2307, - [2390] = 2327, - [2391] = 2330, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, [2392] = 2392, - [2393] = 2339, + [2393] = 2393, [2394] = 2394, [2395] = 2395, [2396] = 2396, [2397] = 2397, - [2398] = 2359, - [2399] = 2395, + [2398] = 2055, + [2399] = 2399, [2400] = 2400, - [2401] = 2197, - [2402] = 2185, - [2403] = 2403, - [2404] = 2361, + [2401] = 2401, + [2402] = 2401, + [2403] = 2384, + [2404] = 2404, [2405] = 2405, [2406] = 2406, - [2407] = 2296, - [2408] = 2365, - [2409] = 2394, - [2410] = 2180, - [2411] = 1445, - [2412] = 2412, - [2413] = 2231, - [2414] = 2375, - [2415] = 2336, - [2416] = 2334, - [2417] = 2304, - [2418] = 2362, - [2419] = 2329, - [2420] = 2244, - [2421] = 2368, - [2422] = 2299, - [2423] = 2090, - [2424] = 2318, - [2425] = 2324, - [2426] = 2369, - [2427] = 2371, + [2407] = 2407, + [2408] = 2408, + [2409] = 2399, + [2410] = 2410, + [2411] = 2408, + [2412] = 2393, + [2413] = 2395, + [2414] = 2414, + [2415] = 2405, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2038, + [2425] = 2385, + [2426] = 2426, + [2427] = 2427, [2428] = 2428, [2429] = 2429, - [2430] = 2430, + [2430] = 2396, [2431] = 2431, [2432] = 2432, [2433] = 2433, [2434] = 2434, [2435] = 2435, - [2436] = 2091, - [2437] = 2437, - [2438] = 2438, + [2436] = 2394, + [2437] = 2392, + [2438] = 2389, [2439] = 2439, [2440] = 2440, [2441] = 2441, - [2442] = 2442, + [2442] = 2391, [2443] = 2443, - [2444] = 2444, + [2444] = 2391, [2445] = 2445, - [2446] = 2446, - [2447] = 2432, - [2448] = 2448, + [2446] = 2406, + [2447] = 2447, + [2448] = 2389, [2449] = 2449, [2450] = 2450, [2451] = 2451, - [2452] = 2452, + [2452] = 2404, [2453] = 2453, - [2454] = 2454, - [2455] = 2441, - [2456] = 2438, - [2457] = 2448, + [2454] = 2401, + [2455] = 2443, + [2456] = 2456, + [2457] = 2420, [2458] = 2458, [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2074, - [2463] = 2463, - [2464] = 2464, - [2465] = 2465, - [2466] = 2442, - [2467] = 2433, - [2468] = 2468, - [2469] = 2469, + [2460] = 2384, + [2461] = 2393, + [2462] = 2395, + [2463] = 2397, + [2464] = 2422, + [2465] = 2385, + [2466] = 2466, + [2467] = 2428, + [2468] = 2432, + [2469] = 2433, [2470] = 2470, - [2471] = 2471, - [2472] = 2444, - [2473] = 2473, - [2474] = 2474, + [2471] = 2406, + [2472] = 2406, + [2473] = 2400, + [2474] = 2449, [2475] = 2475, - [2476] = 2476, - [2477] = 2440, + [2476] = 2404, + [2477] = 2477, [2478] = 2478, - [2479] = 2443, + [2479] = 2406, [2480] = 2480, - [2481] = 2439, - [2482] = 2482, - [2483] = 2437, + [2481] = 2395, + [2482] = 2397, + [2483] = 2483, [2484] = 2484, - [2485] = 2435, - [2486] = 2435, - [2487] = 2429, - [2488] = 2488, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2440, [2489] = 2489, [2490] = 2490, - [2491] = 2437, + [2491] = 2491, [2492] = 2492, - [2493] = 2461, + [2493] = 2493, [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 2497, + [2495] = 2397, + [2496] = 2459, + [2497] = 2485, [2498] = 2498, - [2499] = 2446, - [2500] = 2432, + [2499] = 2499, + [2500] = 2489, [2501] = 2501, - [2502] = 2482, - [2503] = 2464, - [2504] = 2470, - [2505] = 2474, - [2506] = 2444, - [2507] = 2443, - [2508] = 2439, - [2509] = 2434, - [2510] = 2475, - [2511] = 2433, - [2512] = 2489, - [2513] = 2513, - [2514] = 2514, - [2515] = 2434, - [2516] = 2492, - [2517] = 2489, - [2518] = 2495, - [2519] = 2519, - [2520] = 2520, - [2521] = 2521, - [2522] = 2488, - [2523] = 2523, - [2524] = 2524, - [2525] = 2489, + [2502] = 2401, + [2503] = 2478, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2434, + [2508] = 2480, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2509, + [2513] = 2499, + [2514] = 2395, + [2515] = 2431, + [2516] = 2494, + [2517] = 2484, + [2518] = 2483, + [2519] = 2404, + [2520] = 2511, + [2521] = 2475, + [2522] = 2522, + [2523] = 2421, + [2524] = 2416, + [2525] = 2397, [2526] = 2526, - [2527] = 2527, - [2528] = 2428, - [2529] = 2529, - [2530] = 2530, + [2527] = 2388, + [2528] = 2528, + [2529] = 2456, + [2530] = 2385, [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, + [2532] = 2389, + [2533] = 2492, + [2534] = 2441, + [2535] = 2391, [2536] = 2536, - [2537] = 2439, - [2538] = 2519, - [2539] = 2520, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2489, + [2537] = 2537, + [2538] = 2394, + [2539] = 2408, + [2540] = 2396, + [2541] = 2510, + [2542] = 2395, + [2543] = 2395, [2544] = 2544, - [2545] = 2532, - [2546] = 2546, - [2547] = 2547, - [2548] = 2434, - [2549] = 2524, + [2545] = 2545, + [2546] = 2431, + [2547] = 2431, + [2548] = 2395, + [2549] = 2439, [2550] = 2550, [2551] = 2551, - [2552] = 2552, - [2553] = 2531, - [2554] = 2433, - [2555] = 2521, - [2556] = 2556, - [2557] = 2547, - [2558] = 2546, - [2559] = 2541, + [2552] = 2394, + [2553] = 2506, + [2554] = 2505, + [2555] = 2555, + [2556] = 2431, + [2557] = 2395, + [2558] = 2414, + [2559] = 2388, [2560] = 2560, - [2561] = 2473, - [2562] = 2536, - [2563] = 2527, - [2564] = 2526, - [2565] = 2495, - [2566] = 2566, - [2567] = 2567, + [2561] = 2395, + [2562] = 2395, + [2563] = 2441, + [2564] = 2393, + [2565] = 2384, + [2566] = 2431, + [2567] = 2505, [2568] = 2568, - [2569] = 2463, - [2570] = 2449, - [2571] = 2476, - [2572] = 2533, - [2573] = 2445, - [2574] = 2574, - [2575] = 2575, - [2576] = 2556, - [2577] = 2432, - [2578] = 2435, - [2579] = 2476, + [2569] = 2504, + [2570] = 2445, + [2571] = 2571, + [2572] = 2400, + [2573] = 2573, + [2574] = 2434, + [2575] = 2423, + [2576] = 2576, + [2577] = 2426, + [2578] = 2395, + [2579] = 2579, [2580] = 2580, - [2581] = 2437, - [2582] = 2473, - [2583] = 2439, - [2584] = 2440, - [2585] = 1445, - [2586] = 2442, - [2587] = 2434, - [2588] = 2588, - [2589] = 2441, - [2590] = 2439, - [2591] = 2591, - [2592] = 2439, - [2593] = 2495, - [2594] = 2594, - [2595] = 2473, - [2596] = 2552, - [2597] = 2478, - [2598] = 2498, - [2599] = 2440, - [2600] = 2551, - [2601] = 2484, - [2602] = 2439, - [2603] = 2603, - [2604] = 2439, - [2605] = 2445, - [2606] = 2439, - [2607] = 2443, - [2608] = 2444, - [2609] = 2429, - [2610] = 2473, - [2611] = 2551, - [2612] = 2612, - [2613] = 2550, - [2614] = 2473, - [2615] = 2615, - [2616] = 2454, - [2617] = 2617, - [2618] = 2439, - [2619] = 2619, - [2620] = 2468, - [2621] = 2469, - [2622] = 2473, - [2623] = 2544, - [2624] = 2624, - [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 2560, - [2629] = 2439, - [2630] = 2439, - [2631] = 2627, - [2632] = 2632, - [2633] = 2494, - [2634] = 2626, - [2635] = 2490, - [2636] = 2566, - [2637] = 2445, - [2638] = 2567, - [2639] = 2568, - [2640] = 2429, - [2641] = 2627, - [2642] = 2574, - [2643] = 2490, - [2644] = 2575, - [2645] = 2627, - [2646] = 2624, - [2647] = 2465, - [2648] = 2454, - [2649] = 2490, - [2650] = 2473, - [2651] = 2624, - [2652] = 2544, - [2653] = 2624, - [2654] = 2544, - [2655] = 2442, - [2656] = 2656, - [2657] = 2657, + [2581] = 2581, + [2582] = 2582, + [2583] = 2431, + [2584] = 2584, + [2585] = 2585, + [2586] = 2429, + [2587] = 2451, + [2588] = 2522, + [2589] = 2447, + [2590] = 2396, + [2591] = 2388, + [2592] = 2581, + [2593] = 2580, + [2594] = 2441, + [2595] = 2581, + [2596] = 2526, + [2597] = 2447, + [2598] = 2528, + [2599] = 2581, + [2600] = 2584, + [2601] = 2531, + [2602] = 2536, + [2603] = 2447, + [2604] = 2537, + [2605] = 2584, + [2606] = 2395, + [2607] = 2584, + [2608] = 2582, + [2609] = 2431, + [2610] = 2582, + [2611] = 2582, }; static inline bool sym_escape_sequence_character_set_1(int32_t c) { @@ -6510,90 +6436,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); switch (state) { case 0: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(190); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(236); - if (lookahead == '&') ADVANCE(93); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(229); - if (lookahead == '/') ADVANCE(234); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(217); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(106); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(208); - if (lookahead == '_') ADVANCE(276); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(182); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(217); + if (lookahead == '+') ADVANCE(122); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(204); + if (lookahead == '?') ADVANCE(94); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(194); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); + lookahead == 'b') ADVANCE(223); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(226); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(241); + lookahead == 'f') ADVANCE(227); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(259); + lookahead == 'i') ADVANCE(245); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(260); if (lookahead == 'S' || - lookahead == 's') ADVANCE(267); + lookahead == 's') ADVANCE(253); if (lookahead == 'T' || - lookahead == 't') ADVANCE(263); + lookahead == 't') ADVANCE(249); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'u') ADVANCE(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69) + lookahead == 65279) SKIP(70) if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(279); + if (lookahead == '\n') ADVANCE(265); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(279); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(280); + lookahead != '>') ADVANCE(266); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '-') ADVANCE(34); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '-') ADVANCE(36); if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(59); + if (lookahead == '{') ADVANCE(85); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6602,18 +6528,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '-') ADVANCE(34); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '-') ADVANCE(36); if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '{') ADVANCE(85); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6622,11 +6548,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '\r') ADVANCE(194); - if (lookahead == '#') ADVANCE(282); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(180); + if (lookahead == '#') ADVANCE(268); if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(38); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6635,53 +6560,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(5) END_STATE(); case 6: - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(229); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '_') ADVANCE(276); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(221); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(219); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(238); + lookahead == 'b') ADVANCE(224); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(226); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(242); + lookahead == 'f') ADVANCE(228); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(260); if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); + lookahead == 's') ADVANCE(258); if (lookahead == 'T' || - lookahead == 't') ADVANCE(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6689,47 +6614,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(6) if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(120); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(107); if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '_') ADVANCE(276); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '~') ADVANCE(128); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(238); + lookahead == 'b') ADVANCE(224); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(226); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(242); + lookahead == 'f') ADVANCE(228); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(260); if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); + lookahead == 's') ADVANCE(258); if (lookahead == 'T' || - lookahead == 't') ADVANCE(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6738,47 +6662,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(7) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == '+') ADVANCE(134); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(121); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == '+') ADVANCE(121); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == '_') ADVANCE(276); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '~') ADVANCE(128); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); + lookahead == 'b') ADVANCE(223); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(226); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(241); + lookahead == 'f') ADVANCE(227); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(259); + lookahead == 'i') ADVANCE(245); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(260); if (lookahead == 'S' || - lookahead == 's') ADVANCE(267); + lookahead == 's') ADVANCE(253); if (lookahead == 'T' || - lookahead == 't') ADVANCE(263); + lookahead == 't') ADVANCE(249); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'u') ADVANCE(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6787,39 +6710,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(8) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(190); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(176); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(221); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(182); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(219); + if (lookahead == '0') ADVANCE(116); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6828,38 +6751,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(12) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(221); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(219); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(59); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6867,38 +6790,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(11) if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(221); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(126); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(219); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6906,37 +6829,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(11) if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '?') ADVANCE(108); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(221); + if (lookahead == '&') ADVANCE(79); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(219); + if (lookahead == '0') ADVANCE(116); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(96); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6945,32 +6868,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(12) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '&') ADVANCE(92); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '+') ADVANCE(133); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(136); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '/') ADVANCE(233); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(207); - if (lookahead == '|') ADVANCE(113); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(221); + if (lookahead == '&') ADVANCE(79); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '+') ADVANCE(120); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(219); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(205); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(193); + if (lookahead == '|') ADVANCE(100); + if (lookahead == '}') ADVANCE(86); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6980,29 +6903,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(178); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(238); + lookahead == 'b') ADVANCE(224); if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); + lookahead == 's') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7012,29 +6934,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(129); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == '}') ADVANCE(99); + if (lookahead == '0') ADVANCE(116); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '}') ADVANCE(86); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(238); + lookahead == 'b') ADVANCE(224); if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + lookahead == 's') ADVANCE(258); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7044,64 +6965,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '.') ADVANCE(121); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(32); if (lookahead == '?') ADVANCE(38); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '\\') ADVANCE(59); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '{') ADVANCE(85); if (lookahead == 'B' || lookahead == 'b') ADVANCE(14); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(44); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(44); + lookahead == 'f') ADVANCE(45); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(54); + lookahead == 'n') ADVANCE(55); if (lookahead == 'T' || - lookahead == 't') ADVANCE(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 65279) SKIP(18) END_STATE(); case 18: - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '&') ADVANCE(91); - if (lookahead == ')') ADVANCE(104); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '.') ADVANCE(27); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '0') ADVANCE(111); + if (lookahead == '<') ADVANCE(32); + if (lookahead == '?') ADVANCE(38); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '{') ADVANCE(85); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(14); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(44); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(45); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(55); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(18) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(281); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(78); + if (lookahead == ')') ADVANCE(91); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '.') ADVANCE(27); if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '}') ADVANCE(99); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '\\') ADVANCE(84); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7111,16 +7048,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 20: - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '.') ADVANCE(27); + if (lookahead == '#') ADVANCE(267); if (lookahead == '/') ADVANCE(24); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(97); + if (lookahead == '}') ADVANCE(86); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7130,61 +7065,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '\'') ADVANCE(173); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '.') ADVANCE(27); if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(98); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22) + lookahead == 65279) SKIP(21) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '\'') ADVANCE(173); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '.') ADVANCE(27); if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(40); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == '{') ADVANCE(98); + if (lookahead == '?') ADVANCE(93); + if (lookahead == '\\') ADVANCE(84); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(22) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 23: - if (lookahead == '#') ADVANCE(188); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(182); - if (lookahead == '?') ADVANCE(185); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '#') ADVANCE(174); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(169); + if (lookahead == '\\') ADVANCE(69); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(181); - if (lookahead != 0) ADVANCE(187); + lookahead == 65279) ADVANCE(168); + if (lookahead != 0) ADVANCE(173); END_STATE(); case 24: if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(280); + if (lookahead == '/') ADVANCE(266); END_STATE(); case 25: if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(279); + if (lookahead == '/') ADVANCE(265); if (lookahead != 0) ADVANCE(26); END_STATE(); case 26: @@ -7195,367 +7143,332 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(29); END_STATE(); case 28: - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(62); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); END_STATE(); case 29: - if (lookahead == '.') ADVANCE(105); + if (lookahead == '.') ADVANCE(92); END_STATE(); case 30: - if (lookahead == '<') ADVANCE(189); + if (lookahead == '<') ADVANCE(33); END_STATE(); case 31: - if (lookahead == '<') ADVANCE(30); + if (lookahead == '<') ADVANCE(33); + if (lookahead == '?') ADVANCE(76); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(210); + if (lookahead == '<') ADVANCE(33); + if (lookahead == '?') ADVANCE(161); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(209); - if (lookahead == '>') ADVANCE(102); + if (lookahead == '<') ADVANCE(175); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(162); + if (lookahead == '=') ADVANCE(196); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(102); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(89); END_STATE(); case 36: - if (lookahead == '>') ADVANCE(175); + if (lookahead == '>') ADVANCE(149); END_STATE(); case 37: - if (lookahead == '>') ADVANCE(163); + if (lookahead == '>') ADVANCE(89); END_STATE(); case 38: - if (lookahead == '>') ADVANCE(77); + if (lookahead == '>') ADVANCE(162); END_STATE(); case 39: - if (lookahead == '?') ADVANCE(76); + if (lookahead == '>') ADVANCE(150); END_STATE(); case 40: - if (lookahead == '?') ADVANCE(174); + if (lookahead == '>') ADVANCE(74); END_STATE(); case 41: - if (lookahead == 'u') ADVANCE(171); + if (lookahead == '?') ADVANCE(161); END_STATE(); case 42: - if (lookahead == '}') ADVANCE(167); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + if (lookahead == 'u') ADVANCE(158); END_STATE(); case 43: - if (lookahead == '+' || - lookahead == '-') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '}') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 44: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(47); + if (lookahead == '+' || + lookahead == '-') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 45: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(198); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(48); END_STATE(); case 46: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(50); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(184); END_STATE(); case 47: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(52); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(51); END_STATE(); case 48: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(200); + lookahead == 'l') ADVANCE(53); END_STATE(); case 49: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(48); + lookahead == 'l') ADVANCE(186); END_STATE(); case 50: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(75); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(49); END_STATE(); case 51: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(53); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(75); END_STATE(); case 52: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(45); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(54); END_STATE(); case 53: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(45); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(46); END_STATE(); case 54: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(49); + lookahead == 'u') ADVANCE(46); END_STATE(); case 55: - if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(50); END_STATE(); case 56: - if (lookahead == '8' || - lookahead == '9') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (lookahead == '0' || + lookahead == '1') ADVANCE(114); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (lookahead == '8' || + lookahead == '9') ADVANCE(28); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); END_STATE(); case 58: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(167); - if (lookahead == 'u') ADVANCE(172); - if (lookahead == 'x') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(169); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(154); + if (lookahead == 'u') ADVANCE(159); + if (lookahead == 'x') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(156); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); END_STATE(); case 62: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); END_STATE(); case 63: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 64: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); END_STATE(); case 65: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 66: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); END_STATE(); case 67: - if (lookahead != 0 && - lookahead != '*') ADVANCE(184); - if (lookahead == '*') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 68: - if (lookahead != 0) ADVANCE(187); + if (lookahead != 0 && + lookahead != '*') ADVANCE(171); + if (lookahead == '*') ADVANCE(170); END_STATE(); case 69: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(236); - if (lookahead == '&') ADVANCE(93); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(229); - if (lookahead == '/') ADVANCE(234); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(217); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(106); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(208); - if (lookahead == '_') ADVANCE(276); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + if (lookahead != 0) ADVANCE(173); + END_STATE(); + case 70: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(217); + if (lookahead == '+') ADVANCE(122); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(220); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(204); + if (lookahead == '?') ADVANCE(94); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(194); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(237); + lookahead == 'b') ADVANCE(223); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(226); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(241); + lookahead == 'f') ADVANCE(227); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(259); + lookahead == 'i') ADVANCE(245); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(260); if (lookahead == 'S' || - lookahead == 's') ADVANCE(267); + lookahead == 's') ADVANCE(253); if (lookahead == 'T' || - lookahead == 't') ADVANCE(263); + lookahead == 't') ADVANCE(249); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'u') ADVANCE(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(69) + lookahead == 65279) SKIP(70) if (('C' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 70: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(142); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(281); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '+') ADVANCE(134); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '.') ADVANCE(121); + case 71: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '&') ADVANCE(78); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '+') ADVANCE(121); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(124); + if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(90); + if (lookahead == '0') ADVANCE(111); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(77); if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(38); - if (lookahead == '@') ADVANCE(132); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '_') ADVANCE(276); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '}') ADVANCE(99); - if (lookahead == '~') ADVANCE(141); + if (lookahead == '?') ADVANCE(40); + if (lookahead == '@') ADVANCE(119); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '_') ADVANCE(262); + if (lookahead == '`') ADVANCE(183); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '}') ADVANCE(86); + if (lookahead == '~') ADVANCE(128); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(264); + lookahead == 'a') ADVANCE(250); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(238); + lookahead == 'b') ADVANCE(224); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(226); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(242); + lookahead == 'f') ADVANCE(228); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(260); if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); + lookahead == 's') ADVANCE(258); if (lookahead == 'T' || - lookahead == 't') ADVANCE(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 't') ADVANCE(249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(70) + lookahead == 65279) SKIP(71) if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 71: - if (eof) ADVANCE(74); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(177); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '%') ADVANCE(236); - if (lookahead == '&') ADVANCE(93); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(95); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(230); - if (lookahead == '/') ADVANCE(234); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(101); - if (lookahead == ';') ADVANCE(90); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(96); - if (lookahead == '>') ADVANCE(218); - if (lookahead == '?') ADVANCE(107); - if (lookahead == '[') ADVANCE(164); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '^') ADVANCE(208); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(112); - if (lookahead == '}') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + case 72: + if (eof) ADVANCE(73); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '"') ADVANCE(164); + if (lookahead == '#') ADVANCE(268); + if (lookahead == '$') ADVANCE(188); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '(') ADVANCE(90); + if (lookahead == ')') ADVANCE(91); + if (lookahead == '*') ADVANCE(217); + if (lookahead == '+') ADVANCE(122); + if (lookahead == ',') ADVANCE(82); + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(216); + if (lookahead == '/') ADVANCE(220); + if (lookahead == '0') ADVANCE(116); + if (lookahead == ':') ADVANCE(88); + if (lookahead == ';') ADVANCE(77); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(83); + if (lookahead == '>') ADVANCE(204); + if (lookahead == '?') ADVANCE(95); + if (lookahead == '[') ADVANCE(151); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == ']') ADVANCE(152); + if (lookahead == '^') ADVANCE(194); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(99); + if (lookahead == '}') ADVANCE(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(118); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(71) + lookahead == 65279) SKIP(72) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); - END_STATE(); - case 72: - if (eof) ADVANCE(74); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '<') ADVANCE(79); - if (lookahead == '?') ADVANCE(88); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(82); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) - if (lookahead != 0) ADVANCE(89); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); case 73: - if (eof) ADVANCE(74); - if (lookahead == '#') ADVANCE(282); - if (lookahead == '$') ADVANCE(202); - if (lookahead == '&') ADVANCE(91); - if (lookahead == '(') ADVANCE(103); - if (lookahead == ')') ADVANCE(104); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(39); - if (lookahead == '=') ADVANCE(35); - if (lookahead == '?') ADVANCE(109); - if (lookahead == '\\') ADVANCE(97); - if (lookahead == ']') ADVANCE(165); - if (lookahead == '{') ADVANCE(98); - if (lookahead == '|') ADVANCE(111); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(272); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(73) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 74: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); case 75: ACCEPT_TOKEN(sym_php_tag); @@ -7564,1240 +7477,1139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_php_tag); if (lookahead == '=') ADVANCE(75); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(46); + lookahead == 'p') ADVANCE(47); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_QMARK_GT); - if (lookahead != 0 && - lookahead != '<') ADVANCE(89); - END_STATE(); - case 79: - ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(76); - END_STATE(); - case 80: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(89); - if (lookahead == '\r') ADVANCE(81); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '>') ADVANCE(89); - if (lookahead != 0) ADVANCE(86); - END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(89); - if (lookahead != 0 && - lookahead != '<') ADVANCE(89); - END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '?') ADVANCE(88); - if (lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(82); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(82); - if (lookahead != 0 && - lookahead != '<') ADVANCE(89); - END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(85); - if (lookahead == '/') ADVANCE(86); - if (lookahead != 0 && - lookahead != '<') ADVANCE(89); - END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(89); - if (lookahead == '<') ADVANCE(26); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 85: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '<') ADVANCE(26); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 86: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(89); - if (lookahead != 0) ADVANCE(86); - END_STATE(); - case 87: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(89); - if (lookahead != 0) ADVANCE(86); - END_STATE(); - case 88: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(78); - if (lookahead != 0 && - lookahead != '<') ADVANCE(89); - END_STATE(); - case 89: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead != 0 && - lookahead != '<') ADVANCE(89); - END_STATE(); - case 90: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 91: + case 78: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 92: + case 79: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(206); + if (lookahead == '&') ADVANCE(192); END_STATE(); - case 93: + case 80: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(206); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '=') ADVANCE(145); END_STATE(); - case 94: + case 81: ACCEPT_TOKEN(aux_sym_function_static_declaration_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 95: + case 82: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 96: + case 83: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(209); - if (lookahead == '>') ADVANCE(102); + if (lookahead == '=') ADVANCE(195); + if (lookahead == '>') ADVANCE(89); END_STATE(); - case 97: + case 84: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 98: + case 85: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 99: + case 86: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 100: + case 87: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 101: + case 88: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(146); + if (lookahead == ':') ADVANCE(133); END_STATE(); - case 102: + case 89: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 103: + case 90: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 104: + case 91: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 105: + case 92: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 106: + case 93: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(175); - if (lookahead == '?') ADVANCE(204); END_STATE(); - case 107: + case 94: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(77); - if (lookahead == '?') ADVANCE(204); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(190); END_STATE(); - case 108: + case 95: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(77); - if (lookahead == '?') ADVANCE(203); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '?') ADVANCE(190); END_STATE(); - case 109: + case 96: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(77); + if (lookahead == '-') ADVANCE(39); + if (lookahead == '?') ADVANCE(189); END_STATE(); - case 110: + case 97: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(77); - if (lookahead == '?') ADVANCE(203); + if (lookahead == '?') ADVANCE(189); END_STATE(); - case 111: + case 98: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 112: + case 99: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(160); - if (lookahead == '|') ADVANCE(205); + if (lookahead == '=') ADVANCE(147); + if (lookahead == '|') ADVANCE(191); END_STATE(); - case 113: + case 100: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(205); + if (lookahead == '|') ADVANCE(191); END_STATE(); - case 114: + case 101: ACCEPT_TOKEN(aux_sym_cast_type_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 115: + case 102: ACCEPT_TOKEN(aux_sym_cast_type_token3); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 116: + case 103: ACCEPT_TOKEN(aux_sym_cast_type_token6); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 117: + case 104: ACCEPT_TOKEN(aux_sym_cast_type_token8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 118: + case 105: ACCEPT_TOKEN(aux_sym_cast_type_token11); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 119: + case 106: ACCEPT_TOKEN(aux_sym_cast_type_token12); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 120: + case 107: ACCEPT_TOKEN(sym_float); if (lookahead == '.') ADVANCE(29); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); END_STATE(); - case 121: + case 108: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); END_STATE(); - case 122: + case 109: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(277); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (lookahead == '_') ADVANCE(263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 123: + case 110: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(123); + if (lookahead == '_') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); - case 124: + case 111: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(55); + lookahead == 'b') ADVANCE(56); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(44); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(130); + lookahead == 'o') ADVANCE(117); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(64); + lookahead == 'x') ADVANCE(65); if (lookahead == '8' || lookahead == '9') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); END_STATE(); - case 125: + case 112: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); + lookahead == 'e') ADVANCE(44); if (lookahead == '8' || lookahead == '9') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); END_STATE(); - case 126: + case 113: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(59); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(60); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); END_STATE(); - case 127: + case 114: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(56); if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + lookahead == '1') ADVANCE(114); END_STATE(); - case 128: + case 115: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(64); + if (lookahead == '_') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); - case 129: + case 116: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(55); + lookahead == 'b') ADVANCE(56); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(130); + lookahead == 'o') ADVANCE(117); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + lookahead == 'x') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); END_STATE(); - case 130: + case 117: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (lookahead == '_') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); END_STATE(); - case 131: + case 118: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (lookahead == '_') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); END_STATE(); - case 132: + case 119: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 133: + case 120: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 134: + case 121: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); + if (lookahead == '+') ADVANCE(134); END_STATE(); - case 135: + case 122: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); - if (lookahead == '=') ADVANCE(153); + if (lookahead == '+') ADVANCE(134); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 136: + case 123: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 137: + case 124: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); + if (lookahead == '-') ADVANCE(135); END_STATE(); - case 138: + case 125: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '=') ADVANCE(154); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '=') ADVANCE(141); + if (lookahead == '>') ADVANCE(149); END_STATE(); - case 139: + case 126: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '>') ADVANCE(149); END_STATE(); - case 140: + case 127: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(162); + if (lookahead == '>') ADVANCE(149); END_STATE(); - case 141: + case 128: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 142: + case 129: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 143: + case 130: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(210); + if (lookahead == '=') ADVANCE(196); END_STATE(); - case 144: + case 131: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 145: + case 132: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '=') ADVANCE(136); END_STATE(); - case 146: + case 133: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 147: + case 134: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 148: + case 135: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 149: + case 136: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 150: + case 137: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 151: + case 138: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 152: + case 139: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 153: + case 140: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 154: + case 141: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 155: + case 142: ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); - case 156: + case 143: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 157: + case 144: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 158: + case 145: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 159: + case 146: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 160: + case 147: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 161: + case 148: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 162: + case 149: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 163: + case 150: ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); - case 164: + case 151: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 165: + case 152: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 166: + case 153: ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); - case 167: + case 154: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 168: + case 155: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(167); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(154); END_STATE(); - case 169: + case 156: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(168); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); END_STATE(); - case 170: + case 157: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); - case 171: + case 158: ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); - case 172: + case 159: ACCEPT_TOKEN(anon_sym_BSLASHu); - if (lookahead == '{') ADVANCE(66); + if (lookahead == '{') ADVANCE(67); END_STATE(); - case 173: + case 160: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 174: + case 161: ACCEPT_TOKEN(anon_sym_LT_QMARK); END_STATE(); - case 175: + case 162: ACCEPT_TOKEN(anon_sym_QMARK_GT2); END_STATE(); - case 176: + case 163: ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); - case 177: + case 164: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 178: + case 165: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 179: + case 166: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\r') ADVANCE(180); - if (lookahead == '>') ADVANCE(187); - if (lookahead == '\\') ADVANCE(283); + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '\r') ADVANCE(167); + if (lookahead == '>') ADVANCE(173); + if (lookahead == '\\') ADVANCE(269); if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 180: + case 167: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(173); END_STATE(); - case 181: + case 168: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(188); - if (lookahead == '/') ADVANCE(182); - if (lookahead == '?') ADVANCE(185); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '#') ADVANCE(174); + if (lookahead == '/') ADVANCE(169); + if (lookahead == '\\') ADVANCE(69); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(181); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); - END_STATE(); - case 182: - ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == '\\') ADVANCE(68); + lookahead == 65279) ADVANCE(168); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(173); END_STATE(); - case 183: + case 169: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(187); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(172); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(173); END_STATE(); - case 184: + case 170: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '\\') ADVANCE(67); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '\\') ADVANCE(68); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(171); END_STATE(); - case 185: + case 171: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '>') ADVANCE(187); + if (lookahead == '*') ADVANCE(170); if (lookahead == '\\') ADVANCE(68); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(171); END_STATE(); - case 186: + case 172: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(179); - if (lookahead == '\\') ADVANCE(283); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '\\') ADVANCE(269); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(187); + lookahead == '\r') ADVANCE(173); if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 187: + case 173: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\\') ADVANCE(69); if (lookahead != 0 && - lookahead != '\'') ADVANCE(187); + lookahead != '\'') ADVANCE(173); END_STATE(); - case 188: + case 174: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(283); + if (lookahead == '\\') ADVANCE(269); if (lookahead == '\n' || lookahead == '\r' || lookahead == '?' || - lookahead == '[') ADVANCE(187); + lookahead == '[') ADVANCE(173); if (lookahead != 0 && - lookahead != '\'') ADVANCE(186); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 189: + case 175: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 190: + case 176: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 191: + case 177: ACCEPT_TOKEN(aux_sym__new_line_token1); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - if (lookahead == '?') ADVANCE(36); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '?') ADVANCE(38); END_STATE(); - case 192: + case 178: ACCEPT_TOKEN(aux_sym__new_line_token1); - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '\r') ADVANCE(194); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(180); END_STATE(); - case 193: + case 179: ACCEPT_TOKEN(aux_sym__new_line_token2); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '\r') ADVANCE(193); - if (lookahead == '?') ADVANCE(36); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\r') ADVANCE(179); + if (lookahead == '?') ADVANCE(38); END_STATE(); - case 194: + case 180: ACCEPT_TOKEN(aux_sym__new_line_token2); - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '\r') ADVANCE(194); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(180); END_STATE(); - case 195: + case 181: ACCEPT_TOKEN(anon_sym_); END_STATE(); - case 196: + case 182: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 197: + case 183: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 198: + case 184: ACCEPT_TOKEN(sym_boolean); END_STATE(); - case 199: + case 185: ACCEPT_TOKEN(sym_boolean); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 200: + case 186: ACCEPT_TOKEN(sym_null); END_STATE(); - case 201: + case 187: ACCEPT_TOKEN(sym_null); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 202: + case 188: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 203: + case 189: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 204: + case 190: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(161); + if (lookahead == '=') ADVANCE(148); END_STATE(); - case 205: + case 191: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 206: + case 192: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 207: + case 193: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 208: + case 194: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(159); + if (lookahead == '=') ADVANCE(146); END_STATE(); - case 209: + case 195: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(212); + if (lookahead == '=') ADVANCE(198); END_STATE(); - case 210: + case 196: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(199); END_STATE(); - case 211: + case 197: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 212: + case 198: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 213: + case 199: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 214: + case 200: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(224); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(211); END_STATE(); - case 215: + case 201: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(225); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(211); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); - case 216: + case 202: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(211); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); - case 217: + case 203: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(76); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(197); END_STATE(); - case 218: + case 204: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(221); - if (lookahead == '>') ADVANCE(227); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(213); END_STATE(); - case 219: + case 205: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(221); - if (lookahead == '>') ADVANCE(226); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(212); END_STATE(); - case 220: + case 206: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(222); + if (lookahead == '>') ADVANCE(208); END_STATE(); - case 221: + case 207: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 222: + case 208: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 223: + case 209: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 224: + case 210: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(189); + if (lookahead == '<') ADVANCE(175); END_STATE(); - case 225: + case 211: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(156); + if (lookahead == '=') ADVANCE(143); END_STATE(); - case 226: + case 212: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 227: + case 213: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(157); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 228: + case 214: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 229: + case 215: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(29); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'e') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); END_STATE(); - case 230: + case 216: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(155); + if (lookahead == '=') ADVANCE(142); END_STATE(); - case 231: + case 217: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(145); - if (lookahead == '=') ADVANCE(150); + if (lookahead == '*') ADVANCE(132); + if (lookahead == '=') ADVANCE(137); END_STATE(); - case 232: + case 218: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(144); + if (lookahead == '*') ADVANCE(131); END_STATE(); - case 233: + case 219: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(280); + if (lookahead == '/') ADVANCE(266); END_STATE(); - case 234: + case 220: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(280); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '=') ADVANCE(138); END_STATE(); - case 235: + case 221: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 236: + case 222: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '=') ADVANCE(139); END_STATE(); - case 237: + case 223: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(178); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(261); + lookahead == 'o') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 238: + case 224: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(176); - if (lookahead == '\'') ADVANCE(178); + if (lookahead == '"') ADVANCE(163); + if (lookahead == '\'') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 239: + case 225: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(276); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '_') ADVANCE(262); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + lookahead == 'e') ADVANCE(226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 240: + case 226: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || - lookahead == '-') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + lookahead == '-') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 241: + case 227: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); + lookahead == 'a') ADVANCE(242); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(260); + lookahead == 'l') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 242: + case 228: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(256); + lookahead == 'a') ADVANCE(242); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 243: + case 229: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(275); + lookahead == 'a') ADVANCE(261); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 244: + case 230: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(271); + lookahead == 'a') ADVANCE(257); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(252); + lookahead == 'r') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 245: + case 231: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(271); + lookahead == 'a') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 246: + case 232: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(269); + lookahead == 'a') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 247: + case 233: ACCEPT_TOKEN(sym_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(94); + lookahead == 'c') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 248: + case 234: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(199); + lookahead == 'e') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 249: + case 235: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(270); + lookahead == 'e') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 250: + case 236: ACCEPT_TOKEN(sym_name); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(118); + lookahead == 'g') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 251: + case 237: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(247); + lookahead == 'i') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 252: + case 238: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(258); + lookahead == 'i') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 253: + case 239: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(115); + lookahead == 'l') ADVANCE(102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 254: + case 240: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(201); + lookahead == 'l') ADVANCE(187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 255: + case 241: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(254); + lookahead == 'l') ADVANCE(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 256: + case 242: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(265); + lookahead == 'l') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 257: + case 243: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(266); + lookahead == 'n') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 258: + case 244: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(250); + lookahead == 'n') ADVANCE(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 259: + case 245: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(268); + lookahead == 'n') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 260: + case 246: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(246); + lookahead == 'o') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 261: + case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(253); + lookahead == 'o') ADVANCE(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 262: + case 248: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(243); + lookahead == 'r') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 263: + case 249: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(273); + lookahead == 'r') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 264: + case 250: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(262); + lookahead == 'r') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 265: + case 251: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(248); + lookahead == 's') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 266: + case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(249); + lookahead == 's') ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 267: + case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(244); + lookahead == 't') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 268: + case 254: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(116); + lookahead == 't') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 269: + case 255: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(117); + lookahead == 't') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 270: + case 256: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(119); + lookahead == 't') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 271: + case 257: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(251); + lookahead == 't') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 272: + case 258: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(245); + lookahead == 't') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 273: + case 259: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(248); + lookahead == 'u') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 274: + case 260: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(255); + lookahead == 'u') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 275: + case 261: ACCEPT_TOKEN(sym_name); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(114); + lookahead == 'y') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 276: + case 262: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 277: + case 263: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 278: + case 264: ACCEPT_TOKEN(sym_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(278); + (161 <= lookahead && lookahead <= 255)) ADVANCE(264); END_STATE(); - case 279: + case 265: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 280: + case 266: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(280); + lookahead != '\r') ADVANCE(266); END_STATE(); - case 281: + case 267: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(166); + if (lookahead == '[') ADVANCE(153); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(280); + lookahead != '?') ADVANCE(266); END_STATE(); - case 282: + case 268: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(280); + lookahead != '[') ADVANCE(266); END_STATE(); - case 283: + case 269: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(186); - if (lookahead == '?') ADVANCE(179); + lookahead != '?') ADVANCE(172); + if (lookahead == '?') ADVANCE(166); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(187); + lookahead == '\r') ADVANCE(173); END_STATE(); default: return false; @@ -10459,95 +10271,95 @@ 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 = 72}, - [2] = {.lex_state = 70}, - [3] = {.lex_state = 70}, - [4] = {.lex_state = 70}, - [5] = {.lex_state = 70}, - [6] = {.lex_state = 70}, - [7] = {.lex_state = 70}, - [8] = {.lex_state = 70}, - [9] = {.lex_state = 70}, - [10] = {.lex_state = 70}, - [11] = {.lex_state = 70}, - [12] = {.lex_state = 70, .external_lex_state = 2}, - [13] = {.lex_state = 70, .external_lex_state = 2}, - [14] = {.lex_state = 70, .external_lex_state = 2}, - [15] = {.lex_state = 70, .external_lex_state = 2}, - [16] = {.lex_state = 70}, - [17] = {.lex_state = 70}, - [18] = {.lex_state = 70, .external_lex_state = 2}, - [19] = {.lex_state = 70}, - [20] = {.lex_state = 70}, - [21] = {.lex_state = 70}, - [22] = {.lex_state = 70}, - [23] = {.lex_state = 70}, - [24] = {.lex_state = 70, .external_lex_state = 2}, - [25] = {.lex_state = 70}, - [26] = {.lex_state = 70}, - [27] = {.lex_state = 70}, - [28] = {.lex_state = 70}, - [29] = {.lex_state = 70, .external_lex_state = 2}, - [30] = {.lex_state = 70}, - [31] = {.lex_state = 70, .external_lex_state = 2}, - [32] = {.lex_state = 70, .external_lex_state = 2}, - [33] = {.lex_state = 70}, - [34] = {.lex_state = 70}, - [35] = {.lex_state = 70}, - [36] = {.lex_state = 70}, - [37] = {.lex_state = 70}, - [38] = {.lex_state = 70}, - [39] = {.lex_state = 70}, - [40] = {.lex_state = 70, .external_lex_state = 2}, - [41] = {.lex_state = 70, .external_lex_state = 2}, - [42] = {.lex_state = 70, .external_lex_state = 2}, - [43] = {.lex_state = 70}, - [44] = {.lex_state = 70}, - [45] = {.lex_state = 70, .external_lex_state = 2}, - [46] = {.lex_state = 70, .external_lex_state = 2}, - [47] = {.lex_state = 70, .external_lex_state = 2}, - [48] = {.lex_state = 70}, - [49] = {.lex_state = 70, .external_lex_state = 2}, - [50] = {.lex_state = 70, .external_lex_state = 2}, - [51] = {.lex_state = 70}, - [52] = {.lex_state = 70, .external_lex_state = 2}, - [53] = {.lex_state = 70, .external_lex_state = 2}, - [54] = {.lex_state = 70, .external_lex_state = 2}, - [55] = {.lex_state = 70}, - [56] = {.lex_state = 70}, - [57] = {.lex_state = 70}, - [58] = {.lex_state = 70}, - [59] = {.lex_state = 70}, - [60] = {.lex_state = 70, .external_lex_state = 2}, - [61] = {.lex_state = 70}, - [62] = {.lex_state = 70}, - [63] = {.lex_state = 70}, - [64] = {.lex_state = 70}, - [65] = {.lex_state = 70}, - [66] = {.lex_state = 70}, - [67] = {.lex_state = 70}, - [68] = {.lex_state = 70}, - [69] = {.lex_state = 70}, - [70] = {.lex_state = 70, .external_lex_state = 2}, - [71] = {.lex_state = 70}, - [72] = {.lex_state = 70}, - [73] = {.lex_state = 70}, - [74] = {.lex_state = 70}, - [75] = {.lex_state = 70, .external_lex_state = 2}, - [76] = {.lex_state = 70}, - [77] = {.lex_state = 70, .external_lex_state = 2}, - [78] = {.lex_state = 70}, - [79] = {.lex_state = 70}, - [80] = {.lex_state = 70}, - [81] = {.lex_state = 70}, - [82] = {.lex_state = 70}, - [83] = {.lex_state = 70}, - [84] = {.lex_state = 70}, - [85] = {.lex_state = 70}, + [1] = {.lex_state = 71}, + [2] = {.lex_state = 71}, + [3] = {.lex_state = 71}, + [4] = {.lex_state = 71}, + [5] = {.lex_state = 71}, + [6] = {.lex_state = 71}, + [7] = {.lex_state = 71}, + [8] = {.lex_state = 71}, + [9] = {.lex_state = 71}, + [10] = {.lex_state = 71}, + [11] = {.lex_state = 71}, + [12] = {.lex_state = 71, .external_lex_state = 2}, + [13] = {.lex_state = 71}, + [14] = {.lex_state = 71, .external_lex_state = 2}, + [15] = {.lex_state = 71}, + [16] = {.lex_state = 71}, + [17] = {.lex_state = 71, .external_lex_state = 2}, + [18] = {.lex_state = 71, .external_lex_state = 2}, + [19] = {.lex_state = 71}, + [20] = {.lex_state = 71}, + [21] = {.lex_state = 71, .external_lex_state = 2}, + [22] = {.lex_state = 71}, + [23] = {.lex_state = 71}, + [24] = {.lex_state = 71}, + [25] = {.lex_state = 71}, + [26] = {.lex_state = 71, .external_lex_state = 2}, + [27] = {.lex_state = 71}, + [28] = {.lex_state = 71}, + [29] = {.lex_state = 71}, + [30] = {.lex_state = 71, .external_lex_state = 2}, + [31] = {.lex_state = 71}, + [32] = {.lex_state = 71}, + [33] = {.lex_state = 71, .external_lex_state = 2}, + [34] = {.lex_state = 71}, + [35] = {.lex_state = 71}, + [36] = {.lex_state = 71}, + [37] = {.lex_state = 71}, + [38] = {.lex_state = 71}, + [39] = {.lex_state = 71, .external_lex_state = 2}, + [40] = {.lex_state = 71, .external_lex_state = 2}, + [41] = {.lex_state = 71}, + [42] = {.lex_state = 71, .external_lex_state = 2}, + [43] = {.lex_state = 71}, + [44] = {.lex_state = 71}, + [45] = {.lex_state = 71}, + [46] = {.lex_state = 71, .external_lex_state = 2}, + [47] = {.lex_state = 71, .external_lex_state = 2}, + [48] = {.lex_state = 71}, + [49] = {.lex_state = 71, .external_lex_state = 2}, + [50] = {.lex_state = 71}, + [51] = {.lex_state = 71}, + [52] = {.lex_state = 71}, + [53] = {.lex_state = 71, .external_lex_state = 2}, + [54] = {.lex_state = 71}, + [55] = {.lex_state = 71, .external_lex_state = 2}, + [56] = {.lex_state = 71}, + [57] = {.lex_state = 71, .external_lex_state = 2}, + [58] = {.lex_state = 71, .external_lex_state = 2}, + [59] = {.lex_state = 71, .external_lex_state = 2}, + [60] = {.lex_state = 71}, + [61] = {.lex_state = 71}, + [62] = {.lex_state = 71}, + [63] = {.lex_state = 71}, + [64] = {.lex_state = 71}, + [65] = {.lex_state = 71, .external_lex_state = 2}, + [66] = {.lex_state = 71}, + [67] = {.lex_state = 71}, + [68] = {.lex_state = 71}, + [69] = {.lex_state = 71}, + [70] = {.lex_state = 71, .external_lex_state = 2}, + [71] = {.lex_state = 71}, + [72] = {.lex_state = 71}, + [73] = {.lex_state = 71, .external_lex_state = 2}, + [74] = {.lex_state = 71, .external_lex_state = 2}, + [75] = {.lex_state = 71}, + [76] = {.lex_state = 71, .external_lex_state = 2}, + [77] = {.lex_state = 71}, + [78] = {.lex_state = 71}, + [79] = {.lex_state = 71}, + [80] = {.lex_state = 71}, + [81] = {.lex_state = 71}, + [82] = {.lex_state = 71}, + [83] = {.lex_state = 71}, + [84] = {.lex_state = 71}, + [85] = {.lex_state = 6}, [86] = {.lex_state = 6}, - [87] = {.lex_state = 6}, - [88] = {.lex_state = 6, .external_lex_state = 2}, - [89] = {.lex_state = 6}, + [87] = {.lex_state = 6, .external_lex_state = 2}, + [88] = {.lex_state = 6}, + [89] = {.lex_state = 8}, [90] = {.lex_state = 8}, [91] = {.lex_state = 8}, [92] = {.lex_state = 8}, @@ -10558,7 +10370,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 8}, [98] = {.lex_state = 8}, [99] = {.lex_state = 8}, - [100] = {.lex_state = 8}, + [100] = {.lex_state = 7}, [101] = {.lex_state = 7}, [102] = {.lex_state = 7}, [103] = {.lex_state = 7}, @@ -10584,614 +10396,614 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [123] = {.lex_state = 7}, [124] = {.lex_state = 7}, [125] = {.lex_state = 7}, - [126] = {.lex_state = 70}, + [126] = {.lex_state = 7}, [127] = {.lex_state = 7}, [128] = {.lex_state = 7}, [129] = {.lex_state = 7}, [130] = {.lex_state = 7}, [131] = {.lex_state = 7}, [132] = {.lex_state = 7}, - [133] = {.lex_state = 70}, + [133] = {.lex_state = 7}, [134] = {.lex_state = 7}, [135] = {.lex_state = 7}, [136] = {.lex_state = 7}, [137] = {.lex_state = 7}, [138] = {.lex_state = 7}, [139] = {.lex_state = 7}, - [140] = {.lex_state = 7}, - [141] = {.lex_state = 7}, + [140] = {.lex_state = 71}, + [141] = {.lex_state = 71}, [142] = {.lex_state = 7}, [143] = {.lex_state = 7}, - [144] = {.lex_state = 7}, - [145] = {.lex_state = 70}, - [146] = {.lex_state = 70}, - [147] = {.lex_state = 70}, - [148] = {.lex_state = 7}, - [149] = {.lex_state = 70}, - [150] = {.lex_state = 7}, - [151] = {.lex_state = 70}, - [152] = {.lex_state = 70}, - [153] = {.lex_state = 70}, - [154] = {.lex_state = 70}, - [155] = {.lex_state = 7}, - [156] = {.lex_state = 70}, - [157] = {.lex_state = 70}, - [158] = {.lex_state = 70}, - [159] = {.lex_state = 70}, - [160] = {.lex_state = 70}, - [161] = {.lex_state = 70}, - [162] = {.lex_state = 70}, - [163] = {.lex_state = 70}, - [164] = {.lex_state = 70}, - [165] = {.lex_state = 70}, - [166] = {.lex_state = 70}, - [167] = {.lex_state = 70}, - [168] = {.lex_state = 70}, - [169] = {.lex_state = 70}, - [170] = {.lex_state = 70}, - [171] = {.lex_state = 70}, - [172] = {.lex_state = 70}, - [173] = {.lex_state = 70}, - [174] = {.lex_state = 70}, - [175] = {.lex_state = 70}, - [176] = {.lex_state = 70}, - [177] = {.lex_state = 70}, - [178] = {.lex_state = 70}, - [179] = {.lex_state = 70}, - [180] = {.lex_state = 70}, - [181] = {.lex_state = 70}, - [182] = {.lex_state = 70}, - [183] = {.lex_state = 70}, - [184] = {.lex_state = 70}, - [185] = {.lex_state = 70}, - [186] = {.lex_state = 70}, - [187] = {.lex_state = 70, .external_lex_state = 2}, - [188] = {.lex_state = 70}, - [189] = {.lex_state = 70}, - [190] = {.lex_state = 70, .external_lex_state = 2}, - [191] = {.lex_state = 70}, - [192] = {.lex_state = 70}, - [193] = {.lex_state = 70}, - [194] = {.lex_state = 70}, - [195] = {.lex_state = 70, .external_lex_state = 2}, - [196] = {.lex_state = 7}, - [197] = {.lex_state = 7}, - [198] = {.lex_state = 70}, - [199] = {.lex_state = 70, .external_lex_state = 2}, - [200] = {.lex_state = 70, .external_lex_state = 2}, - [201] = {.lex_state = 70, .external_lex_state = 2}, - [202] = {.lex_state = 70}, - [203] = {.lex_state = 70}, - [204] = {.lex_state = 70}, - [205] = {.lex_state = 70}, - [206] = {.lex_state = 70}, - [207] = {.lex_state = 70}, - [208] = {.lex_state = 70}, - [209] = {.lex_state = 70}, - [210] = {.lex_state = 70}, - [211] = {.lex_state = 70}, - [212] = {.lex_state = 70}, - [213] = {.lex_state = 70}, - [214] = {.lex_state = 70}, - [215] = {.lex_state = 70}, - [216] = {.lex_state = 70}, - [217] = {.lex_state = 70}, - [218] = {.lex_state = 70}, - [219] = {.lex_state = 70}, - [220] = {.lex_state = 70}, - [221] = {.lex_state = 70}, - [222] = {.lex_state = 70}, - [223] = {.lex_state = 70}, - [224] = {.lex_state = 70}, - [225] = {.lex_state = 70}, - [226] = {.lex_state = 70}, - [227] = {.lex_state = 70}, - [228] = {.lex_state = 70}, - [229] = {.lex_state = 70}, - [230] = {.lex_state = 70}, - [231] = {.lex_state = 70}, - [232] = {.lex_state = 70}, - [233] = {.lex_state = 70}, - [234] = {.lex_state = 70}, - [235] = {.lex_state = 70}, - [236] = {.lex_state = 70}, - [237] = {.lex_state = 70}, - [238] = {.lex_state = 70}, - [239] = {.lex_state = 70}, - [240] = {.lex_state = 70}, - [241] = {.lex_state = 70}, - [242] = {.lex_state = 70}, - [243] = {.lex_state = 70}, - [244] = {.lex_state = 70}, - [245] = {.lex_state = 70}, - [246] = {.lex_state = 70}, - [247] = {.lex_state = 70}, - [248] = {.lex_state = 70}, - [249] = {.lex_state = 70}, - [250] = {.lex_state = 70}, - [251] = {.lex_state = 70}, - [252] = {.lex_state = 70}, - [253] = {.lex_state = 70}, - [254] = {.lex_state = 70}, - [255] = {.lex_state = 70}, - [256] = {.lex_state = 70}, - [257] = {.lex_state = 70}, - [258] = {.lex_state = 70}, - [259] = {.lex_state = 70}, - [260] = {.lex_state = 70}, - [261] = {.lex_state = 70}, - [262] = {.lex_state = 70}, - [263] = {.lex_state = 70}, - [264] = {.lex_state = 70}, - [265] = {.lex_state = 70}, - [266] = {.lex_state = 70}, - [267] = {.lex_state = 70}, - [268] = {.lex_state = 70}, - [269] = {.lex_state = 70}, - [270] = {.lex_state = 70}, - [271] = {.lex_state = 70}, - [272] = {.lex_state = 70}, - [273] = {.lex_state = 70}, - [274] = {.lex_state = 70}, - [275] = {.lex_state = 70}, - [276] = {.lex_state = 70}, - [277] = {.lex_state = 70}, - [278] = {.lex_state = 70}, - [279] = {.lex_state = 70}, - [280] = {.lex_state = 70}, - [281] = {.lex_state = 70}, - [282] = {.lex_state = 70}, - [283] = {.lex_state = 70}, - [284] = {.lex_state = 70}, - [285] = {.lex_state = 70}, - [286] = {.lex_state = 70}, - [287] = {.lex_state = 70}, - [288] = {.lex_state = 70}, - [289] = {.lex_state = 70}, - [290] = {.lex_state = 70}, - [291] = {.lex_state = 70}, - [292] = {.lex_state = 70}, - [293] = {.lex_state = 70}, - [294] = {.lex_state = 70}, - [295] = {.lex_state = 70}, - [296] = {.lex_state = 70}, - [297] = {.lex_state = 70}, - [298] = {.lex_state = 70}, - [299] = {.lex_state = 70}, - [300] = {.lex_state = 70}, - [301] = {.lex_state = 70}, - [302] = {.lex_state = 70}, - [303] = {.lex_state = 70}, - [304] = {.lex_state = 70}, - [305] = {.lex_state = 70}, - [306] = {.lex_state = 70}, - [307] = {.lex_state = 70}, - [308] = {.lex_state = 70}, - [309] = {.lex_state = 70}, - [310] = {.lex_state = 70}, - [311] = {.lex_state = 70}, - [312] = {.lex_state = 70}, - [313] = {.lex_state = 70}, - [314] = {.lex_state = 70}, - [315] = {.lex_state = 70}, - [316] = {.lex_state = 70}, - [317] = {.lex_state = 70}, - [318] = {.lex_state = 70}, - [319] = {.lex_state = 70}, - [320] = {.lex_state = 70}, - [321] = {.lex_state = 70}, - [322] = {.lex_state = 70}, - [323] = {.lex_state = 70}, - [324] = {.lex_state = 70}, - [325] = {.lex_state = 70}, - [326] = {.lex_state = 70}, - [327] = {.lex_state = 70}, - [328] = {.lex_state = 70}, - [329] = {.lex_state = 70}, - [330] = {.lex_state = 70}, - [331] = {.lex_state = 70}, - [332] = {.lex_state = 70}, - [333] = {.lex_state = 70}, - [334] = {.lex_state = 70}, - [335] = {.lex_state = 70}, - [336] = {.lex_state = 70}, - [337] = {.lex_state = 70}, - [338] = {.lex_state = 70}, - [339] = {.lex_state = 70}, - [340] = {.lex_state = 70}, - [341] = {.lex_state = 70}, - [342] = {.lex_state = 70}, - [343] = {.lex_state = 70}, - [344] = {.lex_state = 70}, - [345] = {.lex_state = 70}, - [346] = {.lex_state = 70}, - [347] = {.lex_state = 70}, - [348] = {.lex_state = 70}, - [349] = {.lex_state = 70}, - [350] = {.lex_state = 70}, - [351] = {.lex_state = 70}, - [352] = {.lex_state = 70}, - [353] = {.lex_state = 70}, - [354] = {.lex_state = 70}, - [355] = {.lex_state = 70}, - [356] = {.lex_state = 70}, - [357] = {.lex_state = 70}, - [358] = {.lex_state = 70}, - [359] = {.lex_state = 70}, - [360] = {.lex_state = 70}, - [361] = {.lex_state = 70}, - [362] = {.lex_state = 70}, - [363] = {.lex_state = 70}, - [364] = {.lex_state = 70}, - [365] = {.lex_state = 70}, - [366] = {.lex_state = 70}, - [367] = {.lex_state = 70}, - [368] = {.lex_state = 70}, - [369] = {.lex_state = 70}, - [370] = {.lex_state = 70}, - [371] = {.lex_state = 70}, - [372] = {.lex_state = 70}, - [373] = {.lex_state = 70}, - [374] = {.lex_state = 70}, - [375] = {.lex_state = 70}, - [376] = {.lex_state = 70}, - [377] = {.lex_state = 70}, - [378] = {.lex_state = 70}, - [379] = {.lex_state = 70}, - [380] = {.lex_state = 70}, - [381] = {.lex_state = 70}, - [382] = {.lex_state = 70}, - [383] = {.lex_state = 70}, - [384] = {.lex_state = 70}, - [385] = {.lex_state = 70}, - [386] = {.lex_state = 70}, - [387] = {.lex_state = 70}, - [388] = {.lex_state = 70}, - [389] = {.lex_state = 70}, - [390] = {.lex_state = 70}, - [391] = {.lex_state = 70}, - [392] = {.lex_state = 70}, - [393] = {.lex_state = 70}, - [394] = {.lex_state = 70}, - [395] = {.lex_state = 70}, - [396] = {.lex_state = 70}, - [397] = {.lex_state = 70}, - [398] = {.lex_state = 70}, - [399] = {.lex_state = 70}, - [400] = {.lex_state = 70}, - [401] = {.lex_state = 70}, - [402] = {.lex_state = 70}, - [403] = {.lex_state = 70}, - [404] = {.lex_state = 70}, - [405] = {.lex_state = 70}, - [406] = {.lex_state = 70}, - [407] = {.lex_state = 70}, - [408] = {.lex_state = 70}, - [409] = {.lex_state = 70}, - [410] = {.lex_state = 70}, - [411] = {.lex_state = 70}, - [412] = {.lex_state = 70}, - [413] = {.lex_state = 70}, - [414] = {.lex_state = 70}, - [415] = {.lex_state = 70}, - [416] = {.lex_state = 70}, - [417] = {.lex_state = 70}, - [418] = {.lex_state = 70}, - [419] = {.lex_state = 70}, - [420] = {.lex_state = 70}, - [421] = {.lex_state = 70}, - [422] = {.lex_state = 70}, - [423] = {.lex_state = 70}, - [424] = {.lex_state = 70}, - [425] = {.lex_state = 70}, - [426] = {.lex_state = 70}, - [427] = {.lex_state = 70}, - [428] = {.lex_state = 70}, - [429] = {.lex_state = 70}, - [430] = {.lex_state = 70}, - [431] = {.lex_state = 70}, - [432] = {.lex_state = 70}, - [433] = {.lex_state = 70}, - [434] = {.lex_state = 70}, - [435] = {.lex_state = 70}, - [436] = {.lex_state = 70}, - [437] = {.lex_state = 70}, - [438] = {.lex_state = 70}, - [439] = {.lex_state = 70}, - [440] = {.lex_state = 70}, - [441] = {.lex_state = 70}, - [442] = {.lex_state = 70, .external_lex_state = 2}, - [443] = {.lex_state = 70, .external_lex_state = 2}, - [444] = {.lex_state = 70, .external_lex_state = 2}, - [445] = {.lex_state = 70, .external_lex_state = 2}, - [446] = {.lex_state = 70, .external_lex_state = 2}, - [447] = {.lex_state = 70, .external_lex_state = 2}, - [448] = {.lex_state = 70, .external_lex_state = 2}, - [449] = {.lex_state = 70, .external_lex_state = 2}, - [450] = {.lex_state = 70, .external_lex_state = 2}, - [451] = {.lex_state = 70, .external_lex_state = 2}, - [452] = {.lex_state = 70, .external_lex_state = 2}, - [453] = {.lex_state = 70, .external_lex_state = 2}, - [454] = {.lex_state = 70, .external_lex_state = 2}, - [455] = {.lex_state = 70, .external_lex_state = 2}, - [456] = {.lex_state = 70, .external_lex_state = 2}, - [457] = {.lex_state = 70, .external_lex_state = 2}, - [458] = {.lex_state = 70, .external_lex_state = 2}, - [459] = {.lex_state = 70, .external_lex_state = 2}, - [460] = {.lex_state = 70, .external_lex_state = 2}, - [461] = {.lex_state = 70, .external_lex_state = 2}, - [462] = {.lex_state = 70}, - [463] = {.lex_state = 70}, - [464] = {.lex_state = 70}, - [465] = {.lex_state = 70}, - [466] = {.lex_state = 70}, - [467] = {.lex_state = 70}, - [468] = {.lex_state = 70}, - [469] = {.lex_state = 70}, - [470] = {.lex_state = 70}, - [471] = {.lex_state = 70}, - [472] = {.lex_state = 70}, - [473] = {.lex_state = 70}, - [474] = {.lex_state = 70}, - [475] = {.lex_state = 70}, - [476] = {.lex_state = 70}, - [477] = {.lex_state = 70}, - [478] = {.lex_state = 70}, - [479] = {.lex_state = 70}, - [480] = {.lex_state = 70}, - [481] = {.lex_state = 70}, - [482] = {.lex_state = 70}, - [483] = {.lex_state = 70}, - [484] = {.lex_state = 70}, - [485] = {.lex_state = 70}, - [486] = {.lex_state = 70}, - [487] = {.lex_state = 70}, - [488] = {.lex_state = 70}, - [489] = {.lex_state = 70}, - [490] = {.lex_state = 70}, - [491] = {.lex_state = 70}, - [492] = {.lex_state = 70}, - [493] = {.lex_state = 70}, - [494] = {.lex_state = 70}, - [495] = {.lex_state = 70}, - [496] = {.lex_state = 70}, - [497] = {.lex_state = 70}, - [498] = {.lex_state = 70}, - [499] = {.lex_state = 70}, - [500] = {.lex_state = 70}, - [501] = {.lex_state = 70}, - [502] = {.lex_state = 70}, - [503] = {.lex_state = 70}, - [504] = {.lex_state = 70}, - [505] = {.lex_state = 70}, - [506] = {.lex_state = 70}, - [507] = {.lex_state = 70}, - [508] = {.lex_state = 70}, - [509] = {.lex_state = 70}, - [510] = {.lex_state = 70}, - [511] = {.lex_state = 70}, - [512] = {.lex_state = 70}, - [513] = {.lex_state = 70}, - [514] = {.lex_state = 70}, - [515] = {.lex_state = 70}, - [516] = {.lex_state = 70}, - [517] = {.lex_state = 70}, - [518] = {.lex_state = 70}, - [519] = {.lex_state = 70}, - [520] = {.lex_state = 70}, - [521] = {.lex_state = 70}, - [522] = {.lex_state = 70}, - [523] = {.lex_state = 70}, - [524] = {.lex_state = 70}, - [525] = {.lex_state = 70}, - [526] = {.lex_state = 70}, - [527] = {.lex_state = 70}, - [528] = {.lex_state = 70}, - [529] = {.lex_state = 70}, - [530] = {.lex_state = 70}, - [531] = {.lex_state = 70}, - [532] = {.lex_state = 70}, - [533] = {.lex_state = 70}, - [534] = {.lex_state = 70}, - [535] = {.lex_state = 70}, - [536] = {.lex_state = 70}, - [537] = {.lex_state = 70}, - [538] = {.lex_state = 70}, - [539] = {.lex_state = 70}, - [540] = {.lex_state = 70}, - [541] = {.lex_state = 70}, - [542] = {.lex_state = 70}, - [543] = {.lex_state = 70}, - [544] = {.lex_state = 70}, - [545] = {.lex_state = 70}, - [546] = {.lex_state = 70}, - [547] = {.lex_state = 70}, - [548] = {.lex_state = 70}, - [549] = {.lex_state = 70}, - [550] = {.lex_state = 70}, - [551] = {.lex_state = 70}, - [552] = {.lex_state = 70}, - [553] = {.lex_state = 70}, - [554] = {.lex_state = 70}, - [555] = {.lex_state = 70}, - [556] = {.lex_state = 70}, - [557] = {.lex_state = 70}, - [558] = {.lex_state = 70}, - [559] = {.lex_state = 70}, - [560] = {.lex_state = 70}, - [561] = {.lex_state = 70}, - [562] = {.lex_state = 70}, - [563] = {.lex_state = 70}, - [564] = {.lex_state = 70}, - [565] = {.lex_state = 70}, - [566] = {.lex_state = 70}, - [567] = {.lex_state = 70}, - [568] = {.lex_state = 70}, - [569] = {.lex_state = 70}, - [570] = {.lex_state = 70}, - [571] = {.lex_state = 71}, - [572] = {.lex_state = 71}, - [573] = {.lex_state = 71}, - [574] = {.lex_state = 71}, - [575] = {.lex_state = 71}, - [576] = {.lex_state = 71}, - [577] = {.lex_state = 71}, - [578] = {.lex_state = 71}, - [579] = {.lex_state = 71}, - [580] = {.lex_state = 71}, - [581] = {.lex_state = 71}, - [582] = {.lex_state = 71}, - [583] = {.lex_state = 71}, - [584] = {.lex_state = 71}, - [585] = {.lex_state = 71}, - [586] = {.lex_state = 71}, - [587] = {.lex_state = 71}, - [588] = {.lex_state = 71}, - [589] = {.lex_state = 71}, - [590] = {.lex_state = 71}, - [591] = {.lex_state = 71}, - [592] = {.lex_state = 71}, - [593] = {.lex_state = 71}, - [594] = {.lex_state = 71}, - [595] = {.lex_state = 71}, - [596] = {.lex_state = 71}, - [597] = {.lex_state = 71}, - [598] = {.lex_state = 71}, - [599] = {.lex_state = 71, .external_lex_state = 2}, - [600] = {.lex_state = 71}, - [601] = {.lex_state = 71, .external_lex_state = 2}, - [602] = {.lex_state = 71, .external_lex_state = 2}, - [603] = {.lex_state = 71}, - [604] = {.lex_state = 71, .external_lex_state = 2}, - [605] = {.lex_state = 71, .external_lex_state = 2}, - [606] = {.lex_state = 71, .external_lex_state = 2}, - [607] = {.lex_state = 71, .external_lex_state = 2}, - [608] = {.lex_state = 71}, - [609] = {.lex_state = 71}, - [610] = {.lex_state = 71, .external_lex_state = 2}, - [611] = {.lex_state = 71, .external_lex_state = 2}, - [612] = {.lex_state = 71, .external_lex_state = 2}, - [613] = {.lex_state = 71}, - [614] = {.lex_state = 71, .external_lex_state = 2}, - [615] = {.lex_state = 71, .external_lex_state = 2}, - [616] = {.lex_state = 71}, - [617] = {.lex_state = 71, .external_lex_state = 2}, - [618] = {.lex_state = 71, .external_lex_state = 2}, - [619] = {.lex_state = 71, .external_lex_state = 2}, - [620] = {.lex_state = 71, .external_lex_state = 2}, - [621] = {.lex_state = 71}, - [622] = {.lex_state = 71, .external_lex_state = 2}, - [623] = {.lex_state = 71, .external_lex_state = 2}, - [624] = {.lex_state = 71, .external_lex_state = 2}, - [625] = {.lex_state = 71, .external_lex_state = 2}, - [626] = {.lex_state = 71}, - [627] = {.lex_state = 71, .external_lex_state = 2}, - [628] = {.lex_state = 71}, - [629] = {.lex_state = 71, .external_lex_state = 2}, - [630] = {.lex_state = 71, .external_lex_state = 2}, - [631] = {.lex_state = 71}, - [632] = {.lex_state = 71, .external_lex_state = 2}, - [633] = {.lex_state = 71}, - [634] = {.lex_state = 71, .external_lex_state = 2}, - [635] = {.lex_state = 71}, - [636] = {.lex_state = 71}, - [637] = {.lex_state = 71}, - [638] = {.lex_state = 71, .external_lex_state = 2}, - [639] = {.lex_state = 71, .external_lex_state = 2}, - [640] = {.lex_state = 71, .external_lex_state = 2}, - [641] = {.lex_state = 71}, - [642] = {.lex_state = 71}, - [643] = {.lex_state = 71}, - [644] = {.lex_state = 71}, - [645] = {.lex_state = 71}, - [646] = {.lex_state = 71}, + [144] = {.lex_state = 71}, + [145] = {.lex_state = 7}, + [146] = {.lex_state = 71}, + [147] = {.lex_state = 71}, + [148] = {.lex_state = 71}, + [149] = {.lex_state = 71}, + [150] = {.lex_state = 71}, + [151] = {.lex_state = 7}, + [152] = {.lex_state = 71}, + [153] = {.lex_state = 71}, + [154] = {.lex_state = 71}, + [155] = {.lex_state = 71}, + [156] = {.lex_state = 7}, + [157] = {.lex_state = 71}, + [158] = {.lex_state = 71}, + [159] = {.lex_state = 71}, + [160] = {.lex_state = 71}, + [161] = {.lex_state = 71}, + [162] = {.lex_state = 71}, + [163] = {.lex_state = 71}, + [164] = {.lex_state = 71}, + [165] = {.lex_state = 71}, + [166] = {.lex_state = 71}, + [167] = {.lex_state = 71}, + [168] = {.lex_state = 71}, + [169] = {.lex_state = 71}, + [170] = {.lex_state = 71}, + [171] = {.lex_state = 71}, + [172] = {.lex_state = 71}, + [173] = {.lex_state = 71}, + [174] = {.lex_state = 71}, + [175] = {.lex_state = 71}, + [176] = {.lex_state = 71}, + [177] = {.lex_state = 71}, + [178] = {.lex_state = 71}, + [179] = {.lex_state = 71}, + [180] = {.lex_state = 71}, + [181] = {.lex_state = 71}, + [182] = {.lex_state = 71}, + [183] = {.lex_state = 71}, + [184] = {.lex_state = 71}, + [185] = {.lex_state = 71, .external_lex_state = 2}, + [186] = {.lex_state = 71, .external_lex_state = 2}, + [187] = {.lex_state = 71}, + [188] = {.lex_state = 71}, + [189] = {.lex_state = 7}, + [190] = {.lex_state = 71}, + [191] = {.lex_state = 71}, + [192] = {.lex_state = 71, .external_lex_state = 2}, + [193] = {.lex_state = 71}, + [194] = {.lex_state = 7}, + [195] = {.lex_state = 71}, + [196] = {.lex_state = 71, .external_lex_state = 2}, + [197] = {.lex_state = 71}, + [198] = {.lex_state = 71}, + [199] = {.lex_state = 71}, + [200] = {.lex_state = 71}, + [201] = {.lex_state = 71, .external_lex_state = 2}, + [202] = {.lex_state = 71, .external_lex_state = 2}, + [203] = {.lex_state = 71}, + [204] = {.lex_state = 71}, + [205] = {.lex_state = 71}, + [206] = {.lex_state = 71}, + [207] = {.lex_state = 71}, + [208] = {.lex_state = 71}, + [209] = {.lex_state = 71}, + [210] = {.lex_state = 71}, + [211] = {.lex_state = 71}, + [212] = {.lex_state = 71}, + [213] = {.lex_state = 71}, + [214] = {.lex_state = 71}, + [215] = {.lex_state = 71}, + [216] = {.lex_state = 71}, + [217] = {.lex_state = 71}, + [218] = {.lex_state = 71}, + [219] = {.lex_state = 71}, + [220] = {.lex_state = 71}, + [221] = {.lex_state = 71}, + [222] = {.lex_state = 71}, + [223] = {.lex_state = 71}, + [224] = {.lex_state = 71}, + [225] = {.lex_state = 71}, + [226] = {.lex_state = 71}, + [227] = {.lex_state = 71}, + [228] = {.lex_state = 71}, + [229] = {.lex_state = 71}, + [230] = {.lex_state = 71}, + [231] = {.lex_state = 71}, + [232] = {.lex_state = 71}, + [233] = {.lex_state = 71}, + [234] = {.lex_state = 71}, + [235] = {.lex_state = 71}, + [236] = {.lex_state = 71}, + [237] = {.lex_state = 71}, + [238] = {.lex_state = 71}, + [239] = {.lex_state = 71}, + [240] = {.lex_state = 71}, + [241] = {.lex_state = 71}, + [242] = {.lex_state = 71}, + [243] = {.lex_state = 71}, + [244] = {.lex_state = 71}, + [245] = {.lex_state = 71}, + [246] = {.lex_state = 71}, + [247] = {.lex_state = 71}, + [248] = {.lex_state = 71}, + [249] = {.lex_state = 71}, + [250] = {.lex_state = 71}, + [251] = {.lex_state = 71}, + [252] = {.lex_state = 71}, + [253] = {.lex_state = 71}, + [254] = {.lex_state = 71}, + [255] = {.lex_state = 71}, + [256] = {.lex_state = 71}, + [257] = {.lex_state = 71}, + [258] = {.lex_state = 71}, + [259] = {.lex_state = 71}, + [260] = {.lex_state = 71}, + [261] = {.lex_state = 71}, + [262] = {.lex_state = 71}, + [263] = {.lex_state = 71}, + [264] = {.lex_state = 71}, + [265] = {.lex_state = 71}, + [266] = {.lex_state = 71}, + [267] = {.lex_state = 71}, + [268] = {.lex_state = 71}, + [269] = {.lex_state = 71}, + [270] = {.lex_state = 71}, + [271] = {.lex_state = 71}, + [272] = {.lex_state = 71}, + [273] = {.lex_state = 71}, + [274] = {.lex_state = 71}, + [275] = {.lex_state = 71}, + [276] = {.lex_state = 71}, + [277] = {.lex_state = 71}, + [278] = {.lex_state = 71}, + [279] = {.lex_state = 71}, + [280] = {.lex_state = 71}, + [281] = {.lex_state = 71}, + [282] = {.lex_state = 71}, + [283] = {.lex_state = 71}, + [284] = {.lex_state = 71}, + [285] = {.lex_state = 71}, + [286] = {.lex_state = 71}, + [287] = {.lex_state = 71}, + [288] = {.lex_state = 71}, + [289] = {.lex_state = 71}, + [290] = {.lex_state = 71}, + [291] = {.lex_state = 71}, + [292] = {.lex_state = 71}, + [293] = {.lex_state = 71}, + [294] = {.lex_state = 71}, + [295] = {.lex_state = 71}, + [296] = {.lex_state = 71}, + [297] = {.lex_state = 71}, + [298] = {.lex_state = 71}, + [299] = {.lex_state = 71}, + [300] = {.lex_state = 71}, + [301] = {.lex_state = 71}, + [302] = {.lex_state = 71}, + [303] = {.lex_state = 71}, + [304] = {.lex_state = 71}, + [305] = {.lex_state = 71}, + [306] = {.lex_state = 71}, + [307] = {.lex_state = 71}, + [308] = {.lex_state = 71}, + [309] = {.lex_state = 71}, + [310] = {.lex_state = 71}, + [311] = {.lex_state = 71}, + [312] = {.lex_state = 71}, + [313] = {.lex_state = 71}, + [314] = {.lex_state = 71}, + [315] = {.lex_state = 71}, + [316] = {.lex_state = 71}, + [317] = {.lex_state = 71}, + [318] = {.lex_state = 71}, + [319] = {.lex_state = 71}, + [320] = {.lex_state = 71}, + [321] = {.lex_state = 71}, + [322] = {.lex_state = 71}, + [323] = {.lex_state = 71}, + [324] = {.lex_state = 71}, + [325] = {.lex_state = 71}, + [326] = {.lex_state = 71}, + [327] = {.lex_state = 71}, + [328] = {.lex_state = 71}, + [329] = {.lex_state = 71}, + [330] = {.lex_state = 71}, + [331] = {.lex_state = 71}, + [332] = {.lex_state = 71}, + [333] = {.lex_state = 71}, + [334] = {.lex_state = 71}, + [335] = {.lex_state = 71}, + [336] = {.lex_state = 71}, + [337] = {.lex_state = 71}, + [338] = {.lex_state = 71}, + [339] = {.lex_state = 71}, + [340] = {.lex_state = 71}, + [341] = {.lex_state = 71}, + [342] = {.lex_state = 71}, + [343] = {.lex_state = 71}, + [344] = {.lex_state = 71}, + [345] = {.lex_state = 71}, + [346] = {.lex_state = 71}, + [347] = {.lex_state = 71}, + [348] = {.lex_state = 71}, + [349] = {.lex_state = 71}, + [350] = {.lex_state = 71}, + [351] = {.lex_state = 71}, + [352] = {.lex_state = 71}, + [353] = {.lex_state = 71}, + [354] = {.lex_state = 71}, + [355] = {.lex_state = 71}, + [356] = {.lex_state = 71}, + [357] = {.lex_state = 71}, + [358] = {.lex_state = 71}, + [359] = {.lex_state = 71}, + [360] = {.lex_state = 71}, + [361] = {.lex_state = 71}, + [362] = {.lex_state = 71}, + [363] = {.lex_state = 71}, + [364] = {.lex_state = 71}, + [365] = {.lex_state = 71}, + [366] = {.lex_state = 71}, + [367] = {.lex_state = 71}, + [368] = {.lex_state = 71}, + [369] = {.lex_state = 71}, + [370] = {.lex_state = 71}, + [371] = {.lex_state = 71}, + [372] = {.lex_state = 71}, + [373] = {.lex_state = 71}, + [374] = {.lex_state = 71}, + [375] = {.lex_state = 71}, + [376] = {.lex_state = 71}, + [377] = {.lex_state = 71}, + [378] = {.lex_state = 71}, + [379] = {.lex_state = 71}, + [380] = {.lex_state = 71}, + [381] = {.lex_state = 71}, + [382] = {.lex_state = 71}, + [383] = {.lex_state = 71}, + [384] = {.lex_state = 71}, + [385] = {.lex_state = 71}, + [386] = {.lex_state = 71}, + [387] = {.lex_state = 71}, + [388] = {.lex_state = 71}, + [389] = {.lex_state = 71}, + [390] = {.lex_state = 71}, + [391] = {.lex_state = 71}, + [392] = {.lex_state = 71}, + [393] = {.lex_state = 71}, + [394] = {.lex_state = 71}, + [395] = {.lex_state = 71}, + [396] = {.lex_state = 71}, + [397] = {.lex_state = 71}, + [398] = {.lex_state = 71}, + [399] = {.lex_state = 71}, + [400] = {.lex_state = 71}, + [401] = {.lex_state = 71}, + [402] = {.lex_state = 71}, + [403] = {.lex_state = 71}, + [404] = {.lex_state = 71}, + [405] = {.lex_state = 71}, + [406] = {.lex_state = 71}, + [407] = {.lex_state = 71}, + [408] = {.lex_state = 71}, + [409] = {.lex_state = 71}, + [410] = {.lex_state = 71}, + [411] = {.lex_state = 71}, + [412] = {.lex_state = 71}, + [413] = {.lex_state = 71}, + [414] = {.lex_state = 71}, + [415] = {.lex_state = 71}, + [416] = {.lex_state = 71}, + [417] = {.lex_state = 71}, + [418] = {.lex_state = 71}, + [419] = {.lex_state = 71}, + [420] = {.lex_state = 71}, + [421] = {.lex_state = 71}, + [422] = {.lex_state = 71}, + [423] = {.lex_state = 71}, + [424] = {.lex_state = 71}, + [425] = {.lex_state = 71}, + [426] = {.lex_state = 71}, + [427] = {.lex_state = 71}, + [428] = {.lex_state = 71}, + [429] = {.lex_state = 71}, + [430] = {.lex_state = 71}, + [431] = {.lex_state = 71}, + [432] = {.lex_state = 71}, + [433] = {.lex_state = 71}, + [434] = {.lex_state = 71}, + [435] = {.lex_state = 71, .external_lex_state = 2}, + [436] = {.lex_state = 71, .external_lex_state = 2}, + [437] = {.lex_state = 71, .external_lex_state = 2}, + [438] = {.lex_state = 71, .external_lex_state = 2}, + [439] = {.lex_state = 71, .external_lex_state = 2}, + [440] = {.lex_state = 71, .external_lex_state = 2}, + [441] = {.lex_state = 71, .external_lex_state = 2}, + [442] = {.lex_state = 71}, + [443] = {.lex_state = 71, .external_lex_state = 2}, + [444] = {.lex_state = 71, .external_lex_state = 2}, + [445] = {.lex_state = 71, .external_lex_state = 2}, + [446] = {.lex_state = 71, .external_lex_state = 2}, + [447] = {.lex_state = 71, .external_lex_state = 2}, + [448] = {.lex_state = 71, .external_lex_state = 2}, + [449] = {.lex_state = 71, .external_lex_state = 2}, + [450] = {.lex_state = 71, .external_lex_state = 2}, + [451] = {.lex_state = 71}, + [452] = {.lex_state = 71, .external_lex_state = 2}, + [453] = {.lex_state = 71, .external_lex_state = 2}, + [454] = {.lex_state = 71, .external_lex_state = 2}, + [455] = {.lex_state = 71}, + [456] = {.lex_state = 71, .external_lex_state = 2}, + [457] = {.lex_state = 71}, + [458] = {.lex_state = 71}, + [459] = {.lex_state = 71, .external_lex_state = 2}, + [460] = {.lex_state = 71}, + [461] = {.lex_state = 71}, + [462] = {.lex_state = 71}, + [463] = {.lex_state = 71}, + [464] = {.lex_state = 71}, + [465] = {.lex_state = 71}, + [466] = {.lex_state = 71}, + [467] = {.lex_state = 71}, + [468] = {.lex_state = 71}, + [469] = {.lex_state = 71}, + [470] = {.lex_state = 71}, + [471] = {.lex_state = 71}, + [472] = {.lex_state = 71}, + [473] = {.lex_state = 71}, + [474] = {.lex_state = 71}, + [475] = {.lex_state = 71}, + [476] = {.lex_state = 71}, + [477] = {.lex_state = 71}, + [478] = {.lex_state = 71}, + [479] = {.lex_state = 71}, + [480] = {.lex_state = 71}, + [481] = {.lex_state = 71}, + [482] = {.lex_state = 71}, + [483] = {.lex_state = 71}, + [484] = {.lex_state = 71}, + [485] = {.lex_state = 71}, + [486] = {.lex_state = 71}, + [487] = {.lex_state = 71}, + [488] = {.lex_state = 71}, + [489] = {.lex_state = 71}, + [490] = {.lex_state = 71}, + [491] = {.lex_state = 71}, + [492] = {.lex_state = 71}, + [493] = {.lex_state = 71}, + [494] = {.lex_state = 71}, + [495] = {.lex_state = 71}, + [496] = {.lex_state = 71}, + [497] = {.lex_state = 71}, + [498] = {.lex_state = 71}, + [499] = {.lex_state = 71}, + [500] = {.lex_state = 71}, + [501] = {.lex_state = 71}, + [502] = {.lex_state = 71}, + [503] = {.lex_state = 71}, + [504] = {.lex_state = 71}, + [505] = {.lex_state = 71}, + [506] = {.lex_state = 71}, + [507] = {.lex_state = 71}, + [508] = {.lex_state = 71}, + [509] = {.lex_state = 71}, + [510] = {.lex_state = 71}, + [511] = {.lex_state = 71}, + [512] = {.lex_state = 71}, + [513] = {.lex_state = 71}, + [514] = {.lex_state = 71}, + [515] = {.lex_state = 71}, + [516] = {.lex_state = 71}, + [517] = {.lex_state = 71}, + [518] = {.lex_state = 71}, + [519] = {.lex_state = 71}, + [520] = {.lex_state = 71}, + [521] = {.lex_state = 71}, + [522] = {.lex_state = 71}, + [523] = {.lex_state = 71}, + [524] = {.lex_state = 71}, + [525] = {.lex_state = 71}, + [526] = {.lex_state = 71}, + [527] = {.lex_state = 71}, + [528] = {.lex_state = 71}, + [529] = {.lex_state = 71}, + [530] = {.lex_state = 71}, + [531] = {.lex_state = 71}, + [532] = {.lex_state = 71}, + [533] = {.lex_state = 71}, + [534] = {.lex_state = 71}, + [535] = {.lex_state = 71}, + [536] = {.lex_state = 71}, + [537] = {.lex_state = 71}, + [538] = {.lex_state = 71}, + [539] = {.lex_state = 71}, + [540] = {.lex_state = 71}, + [541] = {.lex_state = 71}, + [542] = {.lex_state = 71}, + [543] = {.lex_state = 71}, + [544] = {.lex_state = 71}, + [545] = {.lex_state = 71}, + [546] = {.lex_state = 71}, + [547] = {.lex_state = 71}, + [548] = {.lex_state = 71}, + [549] = {.lex_state = 71}, + [550] = {.lex_state = 71}, + [551] = {.lex_state = 71}, + [552] = {.lex_state = 71}, + [553] = {.lex_state = 71}, + [554] = {.lex_state = 71}, + [555] = {.lex_state = 71}, + [556] = {.lex_state = 71}, + [557] = {.lex_state = 71}, + [558] = {.lex_state = 71}, + [559] = {.lex_state = 71}, + [560] = {.lex_state = 71}, + [561] = {.lex_state = 71}, + [562] = {.lex_state = 71}, + [563] = {.lex_state = 71}, + [564] = {.lex_state = 71}, + [565] = {.lex_state = 71}, + [566] = {.lex_state = 71}, + [567] = {.lex_state = 71}, + [568] = {.lex_state = 72}, + [569] = {.lex_state = 72}, + [570] = {.lex_state = 72}, + [571] = {.lex_state = 72}, + [572] = {.lex_state = 72}, + [573] = {.lex_state = 72}, + [574] = {.lex_state = 72}, + [575] = {.lex_state = 72}, + [576] = {.lex_state = 72}, + [577] = {.lex_state = 72}, + [578] = {.lex_state = 72}, + [579] = {.lex_state = 72}, + [580] = {.lex_state = 72}, + [581] = {.lex_state = 72}, + [582] = {.lex_state = 72}, + [583] = {.lex_state = 72}, + [584] = {.lex_state = 72}, + [585] = {.lex_state = 72}, + [586] = {.lex_state = 72}, + [587] = {.lex_state = 72}, + [588] = {.lex_state = 72}, + [589] = {.lex_state = 72}, + [590] = {.lex_state = 72}, + [591] = {.lex_state = 72}, + [592] = {.lex_state = 72}, + [593] = {.lex_state = 72}, + [594] = {.lex_state = 72}, + [595] = {.lex_state = 72}, + [596] = {.lex_state = 72, .external_lex_state = 2}, + [597] = {.lex_state = 72}, + [598] = {.lex_state = 72, .external_lex_state = 2}, + [599] = {.lex_state = 72, .external_lex_state = 2}, + [600] = {.lex_state = 72, .external_lex_state = 2}, + [601] = {.lex_state = 72, .external_lex_state = 2}, + [602] = {.lex_state = 72, .external_lex_state = 2}, + [603] = {.lex_state = 72, .external_lex_state = 2}, + [604] = {.lex_state = 72, .external_lex_state = 2}, + [605] = {.lex_state = 72}, + [606] = {.lex_state = 72}, + [607] = {.lex_state = 72}, + [608] = {.lex_state = 72}, + [609] = {.lex_state = 72, .external_lex_state = 2}, + [610] = {.lex_state = 72, .external_lex_state = 2}, + [611] = {.lex_state = 72}, + [612] = {.lex_state = 72, .external_lex_state = 2}, + [613] = {.lex_state = 72, .external_lex_state = 2}, + [614] = {.lex_state = 72, .external_lex_state = 2}, + [615] = {.lex_state = 72, .external_lex_state = 2}, + [616] = {.lex_state = 72, .external_lex_state = 2}, + [617] = {.lex_state = 72}, + [618] = {.lex_state = 72, .external_lex_state = 2}, + [619] = {.lex_state = 72, .external_lex_state = 2}, + [620] = {.lex_state = 72}, + [621] = {.lex_state = 72}, + [622] = {.lex_state = 72}, + [623] = {.lex_state = 72, .external_lex_state = 2}, + [624] = {.lex_state = 72, .external_lex_state = 2}, + [625] = {.lex_state = 72, .external_lex_state = 2}, + [626] = {.lex_state = 72, .external_lex_state = 2}, + [627] = {.lex_state = 72, .external_lex_state = 2}, + [628] = {.lex_state = 72, .external_lex_state = 2}, + [629] = {.lex_state = 72, .external_lex_state = 2}, + [630] = {.lex_state = 72}, + [631] = {.lex_state = 72, .external_lex_state = 2}, + [632] = {.lex_state = 72}, + [633] = {.lex_state = 72, .external_lex_state = 2}, + [634] = {.lex_state = 72, .external_lex_state = 2}, + [635] = {.lex_state = 72}, + [636] = {.lex_state = 72, .external_lex_state = 2}, + [637] = {.lex_state = 72}, + [638] = {.lex_state = 72}, + [639] = {.lex_state = 72}, + [640] = {.lex_state = 72}, + [641] = {.lex_state = 72}, + [642] = {.lex_state = 72}, + [643] = {.lex_state = 72}, + [644] = {.lex_state = 10}, + [645] = {.lex_state = 9}, + [646] = {.lex_state = 21}, [647] = {.lex_state = 9}, [648] = {.lex_state = 10}, - [649] = {.lex_state = 73}, - [650] = {.lex_state = 9}, - [651] = {.lex_state = 10}, - [652] = {.lex_state = 9}, - [653] = {.lex_state = 9}, + [649] = {.lex_state = 10}, + [650] = {.lex_state = 21}, + [651] = {.lex_state = 9}, + [652] = {.lex_state = 10}, + [653] = {.lex_state = 10}, [654] = {.lex_state = 9}, [655] = {.lex_state = 10}, [656] = {.lex_state = 10}, - [657] = {.lex_state = 10}, + [657] = {.lex_state = 9}, [658] = {.lex_state = 10}, - [659] = {.lex_state = 73}, - [660] = {.lex_state = 10}, + [659] = {.lex_state = 10}, + [660] = {.lex_state = 9}, [661] = {.lex_state = 10}, [662] = {.lex_state = 10}, [663] = {.lex_state = 10}, [664] = {.lex_state = 10}, - [665] = {.lex_state = 10}, - [666] = {.lex_state = 15}, + [665] = {.lex_state = 15}, + [666] = {.lex_state = 10}, [667] = {.lex_state = 10}, [668] = {.lex_state = 10}, [669] = {.lex_state = 10}, [670] = {.lex_state = 10}, [671] = {.lex_state = 10}, - [672] = {.lex_state = 9}, + [672] = {.lex_state = 15}, [673] = {.lex_state = 10}, - [674] = {.lex_state = 10}, + [674] = {.lex_state = 9}, [675] = {.lex_state = 10}, [676] = {.lex_state = 10}, [677] = {.lex_state = 10}, - [678] = {.lex_state = 15}, + [678] = {.lex_state = 10}, [679] = {.lex_state = 9}, - [680] = {.lex_state = 10}, - [681] = {.lex_state = 10}, + [680] = {.lex_state = 9}, + [681] = {.lex_state = 9}, [682] = {.lex_state = 9}, [683] = {.lex_state = 9}, - [684] = {.lex_state = 16}, + [684] = {.lex_state = 9}, [685] = {.lex_state = 9}, [686] = {.lex_state = 9}, - [687] = {.lex_state = 9}, - [688] = {.lex_state = 16}, - [689] = {.lex_state = 9}, + [687] = {.lex_state = 19}, + [688] = {.lex_state = 9}, + [689] = {.lex_state = 16}, [690] = {.lex_state = 9}, [691] = {.lex_state = 9}, [692] = {.lex_state = 9}, [693] = {.lex_state = 9}, - [694] = {.lex_state = 18}, + [694] = {.lex_state = 9}, [695] = {.lex_state = 9}, - [696] = {.lex_state = 10}, + [696] = {.lex_state = 9}, [697] = {.lex_state = 16}, [698] = {.lex_state = 9}, [699] = {.lex_state = 9}, - [700] = {.lex_state = 9}, - [701] = {.lex_state = 9}, - [702] = {.lex_state = 9}, - [703] = {.lex_state = 9}, + [700] = {.lex_state = 19}, + [701] = {.lex_state = 10}, + [702] = {.lex_state = 16}, + [703] = {.lex_state = 16}, [704] = {.lex_state = 9}, [705] = {.lex_state = 16}, [706] = {.lex_state = 9}, [707] = {.lex_state = 9}, - [708] = {.lex_state = 10}, + [708] = {.lex_state = 9}, [709] = {.lex_state = 9}, - [710] = {.lex_state = 9}, + [710] = {.lex_state = 10}, [711] = {.lex_state = 9}, - [712] = {.lex_state = 16}, + [712] = {.lex_state = 9}, [713] = {.lex_state = 9}, [714] = {.lex_state = 9}, [715] = {.lex_state = 9}, - [716] = {.lex_state = 18}, + [716] = {.lex_state = 9}, [717] = {.lex_state = 9}, [718] = {.lex_state = 9}, [719] = {.lex_state = 9}, [720] = {.lex_state = 9}, [721] = {.lex_state = 9}, - [722] = {.lex_state = 9}, + [722] = {.lex_state = 16}, [723] = {.lex_state = 9}, - [724] = {.lex_state = 9}, - [725] = {.lex_state = 9}, + [724] = {.lex_state = 19}, + [725] = {.lex_state = 19}, [726] = {.lex_state = 9}, [727] = {.lex_state = 9}, [728] = {.lex_state = 9}, [729] = {.lex_state = 9}, [730] = {.lex_state = 9}, [731] = {.lex_state = 9}, - [732] = {.lex_state = 9}, - [733] = {.lex_state = 9}, + [732] = {.lex_state = 19}, + [733] = {.lex_state = 19}, [734] = {.lex_state = 9}, [735] = {.lex_state = 9}, [736] = {.lex_state = 9}, @@ -11203,7 +11015,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [742] = {.lex_state = 9}, [743] = {.lex_state = 9}, [744] = {.lex_state = 9}, - [745] = {.lex_state = 18}, + [745] = {.lex_state = 9}, [746] = {.lex_state = 9}, [747] = {.lex_state = 9}, [748] = {.lex_state = 9}, @@ -11211,80 +11023,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [750] = {.lex_state = 9}, [751] = {.lex_state = 9}, [752] = {.lex_state = 9}, - [753] = {.lex_state = 18}, - [754] = {.lex_state = 18}, + [753] = {.lex_state = 9}, + [754] = {.lex_state = 9}, [755] = {.lex_state = 9}, [756] = {.lex_state = 9}, [757] = {.lex_state = 9}, [758] = {.lex_state = 9}, [759] = {.lex_state = 9}, [760] = {.lex_state = 9}, - [761] = {.lex_state = 18}, - [762] = {.lex_state = 16}, + [761] = {.lex_state = 9}, + [762] = {.lex_state = 10, .external_lex_state = 2}, [763] = {.lex_state = 9}, - [764] = {.lex_state = 9}, - [765] = {.lex_state = 9}, - [766] = {.lex_state = 13}, - [767] = {.lex_state = 9, .external_lex_state = 2}, + [764] = {.lex_state = 10, .external_lex_state = 2}, + [765] = {.lex_state = 10, .external_lex_state = 2}, + [766] = {.lex_state = 10, .external_lex_state = 2}, + [767] = {.lex_state = 10, .external_lex_state = 2}, [768] = {.lex_state = 10, .external_lex_state = 2}, - [769] = {.lex_state = 18}, + [769] = {.lex_state = 9}, [770] = {.lex_state = 9}, [771] = {.lex_state = 9}, - [772] = {.lex_state = 10, .external_lex_state = 2}, - [773] = {.lex_state = 10, .external_lex_state = 2}, - [774] = {.lex_state = 10, .external_lex_state = 2}, - [775] = {.lex_state = 10, .external_lex_state = 2}, - [776] = {.lex_state = 9}, - [777] = {.lex_state = 13}, - [778] = {.lex_state = 9, .external_lex_state = 2}, - [779] = {.lex_state = 10, .external_lex_state = 2}, - [780] = {.lex_state = 9}, - [781] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 9, .external_lex_state = 2}, + [773] = {.lex_state = 19}, + [774] = {.lex_state = 9}, + [775] = {.lex_state = 13}, + [776] = {.lex_state = 13}, + [777] = {.lex_state = 9, .external_lex_state = 2}, + [778] = {.lex_state = 10, .external_lex_state = 2}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 9}, [782] = {.lex_state = 9}, - [783] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 10, .external_lex_state = 2}, [784] = {.lex_state = 10, .external_lex_state = 2}, - [785] = {.lex_state = 9}, + [785] = {.lex_state = 9, .external_lex_state = 2}, [786] = {.lex_state = 10, .external_lex_state = 2}, - [787] = {.lex_state = 9, .external_lex_state = 2}, + [787] = {.lex_state = 10, .external_lex_state = 2}, [788] = {.lex_state = 10, .external_lex_state = 2}, [789] = {.lex_state = 10, .external_lex_state = 2}, - [790] = {.lex_state = 7}, + [790] = {.lex_state = 10, .external_lex_state = 2}, [791] = {.lex_state = 10, .external_lex_state = 2}, - [792] = {.lex_state = 9, .external_lex_state = 2}, - [793] = {.lex_state = 10, .external_lex_state = 2}, + [792] = {.lex_state = 10, .external_lex_state = 2}, + [793] = {.lex_state = 7}, [794] = {.lex_state = 10, .external_lex_state = 2}, [795] = {.lex_state = 10, .external_lex_state = 2}, [796] = {.lex_state = 10, .external_lex_state = 2}, [797] = {.lex_state = 10, .external_lex_state = 2}, [798] = {.lex_state = 10, .external_lex_state = 2}, [799] = {.lex_state = 10, .external_lex_state = 2}, - [800] = {.lex_state = 10, .external_lex_state = 2}, - [801] = {.lex_state = 9}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 10, .external_lex_state = 2}, [802] = {.lex_state = 10, .external_lex_state = 2}, - [803] = {.lex_state = 10, .external_lex_state = 2}, - [804] = {.lex_state = 10, .external_lex_state = 2}, - [805] = {.lex_state = 10, .external_lex_state = 2}, - [806] = {.lex_state = 10, .external_lex_state = 2}, + [803] = {.lex_state = 9, .external_lex_state = 2}, + [804] = {.lex_state = 9, .external_lex_state = 2}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 9, .external_lex_state = 2}, [807] = {.lex_state = 9, .external_lex_state = 2}, - [808] = {.lex_state = 16}, + [808] = {.lex_state = 9, .external_lex_state = 2}, [809] = {.lex_state = 9, .external_lex_state = 2}, - [810] = {.lex_state = 9, .external_lex_state = 2}, - [811] = {.lex_state = 16}, - [812] = {.lex_state = 9, .external_lex_state = 2}, + [810] = {.lex_state = 16}, + [811] = {.lex_state = 9, .external_lex_state = 2}, + [812] = {.lex_state = 16}, [813] = {.lex_state = 9, .external_lex_state = 2}, - [814] = {.lex_state = 9, .external_lex_state = 2}, + [814] = {.lex_state = 13}, [815] = {.lex_state = 9, .external_lex_state = 2}, - [816] = {.lex_state = 16}, - [817] = {.lex_state = 16}, + [816] = {.lex_state = 9, .external_lex_state = 2}, + [817] = {.lex_state = 9, .external_lex_state = 2}, [818] = {.lex_state = 10, .external_lex_state = 2}, [819] = {.lex_state = 16}, [820] = {.lex_state = 9, .external_lex_state = 2}, - [821] = {.lex_state = 9, .external_lex_state = 2}, - [822] = {.lex_state = 9, .external_lex_state = 2}, - [823] = {.lex_state = 13}, + [821] = {.lex_state = 16}, + [822] = {.lex_state = 13}, + [823] = {.lex_state = 16}, [824] = {.lex_state = 9, .external_lex_state = 2}, [825] = {.lex_state = 9, .external_lex_state = 2}, - [826] = {.lex_state = 9, .external_lex_state = 2}, + [826] = {.lex_state = 16}, [827] = {.lex_state = 9, .external_lex_state = 2}, [828] = {.lex_state = 9, .external_lex_state = 2}, [829] = {.lex_state = 9, .external_lex_state = 2}, @@ -11293,26 +11105,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [832] = {.lex_state = 9, .external_lex_state = 2}, [833] = {.lex_state = 9, .external_lex_state = 2}, [834] = {.lex_state = 9, .external_lex_state = 2}, - [835] = {.lex_state = 9, .external_lex_state = 2}, - [836] = {.lex_state = 13}, + [835] = {.lex_state = 10, .external_lex_state = 2}, + [836] = {.lex_state = 16}, [837] = {.lex_state = 9, .external_lex_state = 2}, - [838] = {.lex_state = 16}, + [838] = {.lex_state = 9, .external_lex_state = 2}, [839] = {.lex_state = 16}, [840] = {.lex_state = 9, .external_lex_state = 2}, [841] = {.lex_state = 9, .external_lex_state = 2}, [842] = {.lex_state = 9, .external_lex_state = 2}, - [843] = {.lex_state = 16}, + [843] = {.lex_state = 9, .external_lex_state = 2}, [844] = {.lex_state = 16}, - [845] = {.lex_state = 16}, - [846] = {.lex_state = 9, .external_lex_state = 2}, - [847] = {.lex_state = 9, .external_lex_state = 2}, + [845] = {.lex_state = 9, .external_lex_state = 2}, + [846] = {.lex_state = 16}, + [847] = {.lex_state = 16}, [848] = {.lex_state = 16}, - [849] = {.lex_state = 16}, - [850] = {.lex_state = 10, .external_lex_state = 2}, - [851] = {.lex_state = 16}, + [849] = {.lex_state = 9, .external_lex_state = 2}, + [850] = {.lex_state = 16}, + [851] = {.lex_state = 9, .external_lex_state = 2}, [852] = {.lex_state = 16}, - [853] = {.lex_state = 9, .external_lex_state = 2}, - [854] = {.lex_state = 16}, + [853] = {.lex_state = 16}, + [854] = {.lex_state = 9, .external_lex_state = 2}, [855] = {.lex_state = 9, .external_lex_state = 2}, [856] = {.lex_state = 9, .external_lex_state = 2}, [857] = {.lex_state = 9, .external_lex_state = 2}, @@ -11323,18 +11135,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [862] = {.lex_state = 9, .external_lex_state = 2}, [863] = {.lex_state = 9, .external_lex_state = 2}, [864] = {.lex_state = 9, .external_lex_state = 2}, - [865] = {.lex_state = 9}, + [865] = {.lex_state = 9, .external_lex_state = 2}, [866] = {.lex_state = 9, .external_lex_state = 2}, [867] = {.lex_state = 9, .external_lex_state = 2}, [868] = {.lex_state = 9, .external_lex_state = 2}, [869] = {.lex_state = 9, .external_lex_state = 2}, - [870] = {.lex_state = 9}, - [871] = {.lex_state = 9, .external_lex_state = 2}, + [870] = {.lex_state = 9, .external_lex_state = 2}, + [871] = {.lex_state = 9}, [872] = {.lex_state = 9, .external_lex_state = 2}, [873] = {.lex_state = 9, .external_lex_state = 2}, [874] = {.lex_state = 9, .external_lex_state = 2}, [875] = {.lex_state = 9, .external_lex_state = 2}, - [876] = {.lex_state = 9, .external_lex_state = 2}, + [876] = {.lex_state = 9}, [877] = {.lex_state = 9, .external_lex_state = 2}, [878] = {.lex_state = 9, .external_lex_state = 2}, [879] = {.lex_state = 9, .external_lex_state = 2}, @@ -11359,11 +11171,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [898] = {.lex_state = 9, .external_lex_state = 2}, [899] = {.lex_state = 9, .external_lex_state = 2}, [900] = {.lex_state = 9, .external_lex_state = 2}, - [901] = {.lex_state = 9, .external_lex_state = 2}, - [902] = {.lex_state = 9, .external_lex_state = 2}, - [903] = {.lex_state = 9, .external_lex_state = 2}, - [904] = {.lex_state = 9, .external_lex_state = 2}, - [905] = {.lex_state = 9, .external_lex_state = 2}, + [901] = {.lex_state = 13}, + [902] = {.lex_state = 13}, + [903] = {.lex_state = 13}, + [904] = {.lex_state = 13}, + [905] = {.lex_state = 13}, [906] = {.lex_state = 13}, [907] = {.lex_state = 13}, [908] = {.lex_state = 13}, @@ -11423,14 +11235,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [962] = {.lex_state = 13}, [963] = {.lex_state = 13}, [964] = {.lex_state = 13}, - [965] = {.lex_state = 13}, - [966] = {.lex_state = 13}, + [965] = {.lex_state = 13, .external_lex_state = 2}, + [966] = {.lex_state = 13, .external_lex_state = 2}, [967] = {.lex_state = 13}, [968] = {.lex_state = 13}, [969] = {.lex_state = 13}, [970] = {.lex_state = 13}, - [971] = {.lex_state = 13, .external_lex_state = 2}, - [972] = {.lex_state = 13, .external_lex_state = 2}, + [971] = {.lex_state = 22}, + [972] = {.lex_state = 13}, [973] = {.lex_state = 13}, [974] = {.lex_state = 13}, [975] = {.lex_state = 13}, @@ -11451,7 +11263,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [990] = {.lex_state = 13}, [991] = {.lex_state = 13}, [992] = {.lex_state = 13}, - [993] = {.lex_state = 20}, + [993] = {.lex_state = 13}, [994] = {.lex_state = 13}, [995] = {.lex_state = 13}, [996] = {.lex_state = 13}, @@ -11492,12 +11304,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1031] = {.lex_state = 13}, [1032] = {.lex_state = 13}, [1033] = {.lex_state = 13}, - [1034] = {.lex_state = 13}, - [1035] = {.lex_state = 13}, - [1036] = {.lex_state = 13}, - [1037] = {.lex_state = 13}, - [1038] = {.lex_state = 13}, - [1039] = {.lex_state = 13}, + [1034] = {.lex_state = 13, .external_lex_state = 2}, + [1035] = {.lex_state = 13, .external_lex_state = 2}, + [1036] = {.lex_state = 13, .external_lex_state = 2}, + [1037] = {.lex_state = 13, .external_lex_state = 2}, + [1038] = {.lex_state = 13, .external_lex_state = 2}, + [1039] = {.lex_state = 13, .external_lex_state = 2}, [1040] = {.lex_state = 13, .external_lex_state = 2}, [1041] = {.lex_state = 13, .external_lex_state = 2}, [1042] = {.lex_state = 13, .external_lex_state = 2}, @@ -11516,7 +11328,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 13, .external_lex_state = 2}, [1056] = {.lex_state = 13, .external_lex_state = 2}, [1057] = {.lex_state = 13, .external_lex_state = 2}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, + [1058] = {.lex_state = 21}, [1059] = {.lex_state = 13, .external_lex_state = 2}, [1060] = {.lex_state = 13, .external_lex_state = 2}, [1061] = {.lex_state = 13, .external_lex_state = 2}, @@ -11576,7 +11388,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1115] = {.lex_state = 13, .external_lex_state = 2}, [1116] = {.lex_state = 13, .external_lex_state = 2}, [1117] = {.lex_state = 13, .external_lex_state = 2}, - [1118] = {.lex_state = 73}, + [1118] = {.lex_state = 13, .external_lex_state = 2}, [1119] = {.lex_state = 13, .external_lex_state = 2}, [1120] = {.lex_state = 13, .external_lex_state = 2}, [1121] = {.lex_state = 13, .external_lex_state = 2}, @@ -11592,13 +11404,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1131] = {.lex_state = 13, .external_lex_state = 2}, [1132] = {.lex_state = 13, .external_lex_state = 2}, [1133] = {.lex_state = 13, .external_lex_state = 2}, - [1134] = {.lex_state = 13, .external_lex_state = 2}, - [1135] = {.lex_state = 13, .external_lex_state = 2}, - [1136] = {.lex_state = 13, .external_lex_state = 2}, - [1137] = {.lex_state = 13, .external_lex_state = 2}, - [1138] = {.lex_state = 13, .external_lex_state = 2}, - [1139] = {.lex_state = 13, .external_lex_state = 2}, - [1140] = {.lex_state = 13, .external_lex_state = 2}, + [1134] = {.lex_state = 13}, + [1135] = {.lex_state = 13}, + [1136] = {.lex_state = 13}, + [1137] = {.lex_state = 13}, + [1138] = {.lex_state = 13}, + [1139] = {.lex_state = 13}, + [1140] = {.lex_state = 13}, [1141] = {.lex_state = 13}, [1142] = {.lex_state = 13}, [1143] = {.lex_state = 13}, @@ -11627,84 +11439,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1166] = {.lex_state = 13}, [1167] = {.lex_state = 13}, [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 13}, - [1170] = {.lex_state = 13}, - [1171] = {.lex_state = 13}, - [1172] = {.lex_state = 13}, + [1169] = {.lex_state = 20}, + [1170] = {.lex_state = 20}, + [1171] = {.lex_state = 20}, + [1172] = {.lex_state = 20}, [1173] = {.lex_state = 13}, - [1174] = {.lex_state = 19}, - [1175] = {.lex_state = 13, .external_lex_state = 2}, - [1176] = {.lex_state = 19}, + [1174] = {.lex_state = 20}, + [1175] = {.lex_state = 13}, + [1176] = {.lex_state = 20}, [1177] = {.lex_state = 13, .external_lex_state = 2}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 19}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 19}, - [1182] = {.lex_state = 13}, + [1178] = {.lex_state = 13, .external_lex_state = 2}, + [1179] = {.lex_state = 20}, + [1180] = {.lex_state = 20}, + [1181] = {.lex_state = 13}, + [1182] = {.lex_state = 20}, [1183] = {.lex_state = 13, .external_lex_state = 2}, - [1184] = {.lex_state = 13}, - [1185] = {.lex_state = 19}, - [1186] = {.lex_state = 13}, + [1184] = {.lex_state = 13, .external_lex_state = 2}, + [1185] = {.lex_state = 13}, + [1186] = {.lex_state = 13, .external_lex_state = 2}, [1187] = {.lex_state = 13}, - [1188] = {.lex_state = 19}, - [1189] = {.lex_state = 13, .external_lex_state = 2}, - [1190] = {.lex_state = 13, .external_lex_state = 2}, - [1191] = {.lex_state = 19}, - [1192] = {.lex_state = 19}, - [1193] = {.lex_state = 19}, + [1188] = {.lex_state = 13}, + [1189] = {.lex_state = 13}, + [1190] = {.lex_state = 13}, + [1191] = {.lex_state = 13}, + [1192] = {.lex_state = 13, .external_lex_state = 2}, + [1193] = {.lex_state = 13}, [1194] = {.lex_state = 13, .external_lex_state = 2}, - [1195] = {.lex_state = 13}, + [1195] = {.lex_state = 13, .external_lex_state = 2}, [1196] = {.lex_state = 13}, [1197] = {.lex_state = 13}, - [1198] = {.lex_state = 73}, + [1198] = {.lex_state = 13}, [1199] = {.lex_state = 13}, [1200] = {.lex_state = 13}, [1201] = {.lex_state = 13}, [1202] = {.lex_state = 13}, - [1203] = {.lex_state = 13}, + [1203] = {.lex_state = 13, .external_lex_state = 2}, [1204] = {.lex_state = 13}, [1205] = {.lex_state = 13}, - [1206] = {.lex_state = 13}, + [1206] = {.lex_state = 13, .external_lex_state = 2}, [1207] = {.lex_state = 13}, [1208] = {.lex_state = 13}, [1209] = {.lex_state = 13}, - [1210] = {.lex_state = 13}, - [1211] = {.lex_state = 13}, - [1212] = {.lex_state = 73}, - [1213] = {.lex_state = 13, .external_lex_state = 2}, - [1214] = {.lex_state = 13, .external_lex_state = 2}, + [1210] = {.lex_state = 13, .external_lex_state = 2}, + [1211] = {.lex_state = 13, .external_lex_state = 2}, + [1212] = {.lex_state = 13}, + [1213] = {.lex_state = 13}, + [1214] = {.lex_state = 13}, [1215] = {.lex_state = 13, .external_lex_state = 2}, [1216] = {.lex_state = 13}, [1217] = {.lex_state = 13}, [1218] = {.lex_state = 13}, [1219] = {.lex_state = 13}, - [1220] = {.lex_state = 13}, + [1220] = {.lex_state = 21}, [1221] = {.lex_state = 13}, - [1222] = {.lex_state = 13, .external_lex_state = 2}, - [1223] = {.lex_state = 13, .external_lex_state = 2}, + [1222] = {.lex_state = 13}, + [1223] = {.lex_state = 13}, [1224] = {.lex_state = 13}, [1225] = {.lex_state = 13}, [1226] = {.lex_state = 13}, [1227] = {.lex_state = 13}, - [1228] = {.lex_state = 13}, + [1228] = {.lex_state = 21}, [1229] = {.lex_state = 13}, [1230] = {.lex_state = 13}, [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 13, .external_lex_state = 2}, + [1232] = {.lex_state = 13}, [1233] = {.lex_state = 13}, - [1234] = {.lex_state = 13, .external_lex_state = 2}, + [1234] = {.lex_state = 13}, [1235] = {.lex_state = 13}, [1236] = {.lex_state = 13}, [1237] = {.lex_state = 13}, [1238] = {.lex_state = 13}, - [1239] = {.lex_state = 13}, + [1239] = {.lex_state = 21}, [1240] = {.lex_state = 13}, - [1241] = {.lex_state = 13}, + [1241] = {.lex_state = 20}, [1242] = {.lex_state = 13}, [1243] = {.lex_state = 13}, - [1244] = {.lex_state = 13}, - [1245] = {.lex_state = 13}, - [1246] = {.lex_state = 19}, + [1244] = {.lex_state = 20}, + [1245] = {.lex_state = 20}, + [1246] = {.lex_state = 13}, [1247] = {.lex_state = 13}, [1248] = {.lex_state = 13}, [1249] = {.lex_state = 13}, @@ -11726,7 +11538,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1265] = {.lex_state = 13}, [1266] = {.lex_state = 13}, [1267] = {.lex_state = 13}, - [1268] = {.lex_state = 73}, + [1268] = {.lex_state = 13}, [1269] = {.lex_state = 13}, [1270] = {.lex_state = 13}, [1271] = {.lex_state = 13}, @@ -11734,16 +11546,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 13}, [1274] = {.lex_state = 13}, [1275] = {.lex_state = 13}, - [1276] = {.lex_state = 13}, + [1276] = {.lex_state = 20}, [1277] = {.lex_state = 13}, [1278] = {.lex_state = 13}, [1279] = {.lex_state = 13}, [1280] = {.lex_state = 13}, [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 19}, + [1282] = {.lex_state = 13}, [1283] = {.lex_state = 13}, [1284] = {.lex_state = 13}, - [1285] = {.lex_state = 19}, + [1285] = {.lex_state = 13}, [1286] = {.lex_state = 13}, [1287] = {.lex_state = 13}, [1288] = {.lex_state = 13}, @@ -11757,1374 +11569,1326 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 13}, [1297] = {.lex_state = 13}, [1298] = {.lex_state = 13}, - [1299] = {.lex_state = 13}, + [1299] = {.lex_state = 20}, [1300] = {.lex_state = 13}, [1301] = {.lex_state = 13}, - [1302] = {.lex_state = 13}, - [1303] = {.lex_state = 13}, + [1302] = {.lex_state = 21}, + [1303] = {.lex_state = 21}, [1304] = {.lex_state = 13}, - [1305] = {.lex_state = 19}, - [1306] = {.lex_state = 13}, - [1307] = {.lex_state = 13}, - [1308] = {.lex_state = 19}, - [1309] = {.lex_state = 73}, - [1310] = {.lex_state = 73}, - [1311] = {.lex_state = 73}, + [1305] = {.lex_state = 13}, + [1306] = {.lex_state = 21}, + [1307] = {.lex_state = 21}, + [1308] = {.lex_state = 21}, + [1309] = {.lex_state = 19}, + [1310] = {.lex_state = 19}, + [1311] = {.lex_state = 19}, [1312] = {.lex_state = 13}, [1313] = {.lex_state = 13}, - [1314] = {.lex_state = 73}, - [1315] = {.lex_state = 73}, - [1316] = {.lex_state = 73}, - [1317] = {.lex_state = 73}, - [1318] = {.lex_state = 18}, - [1319] = {.lex_state = 18}, - [1320] = {.lex_state = 13}, - [1321] = {.lex_state = 13}, - [1322] = {.lex_state = 13}, - [1323] = {.lex_state = 13}, - [1324] = {.lex_state = 18}, - [1325] = {.lex_state = 18}, - [1326] = {.lex_state = 18}, + [1314] = {.lex_state = 13}, + [1315] = {.lex_state = 13}, + [1316] = {.lex_state = 13}, + [1317] = {.lex_state = 19}, + [1318] = {.lex_state = 13}, + [1319] = {.lex_state = 19}, + [1320] = {.lex_state = 72}, + [1321] = {.lex_state = 72}, + [1322] = {.lex_state = 72}, + [1323] = {.lex_state = 3, .external_lex_state = 3}, + [1324] = {.lex_state = 3, .external_lex_state = 3}, + [1325] = {.lex_state = 13}, + [1326] = {.lex_state = 3, .external_lex_state = 4}, [1327] = {.lex_state = 13}, - [1328] = {.lex_state = 13}, - [1329] = {.lex_state = 18}, - [1330] = {.lex_state = 71}, - [1331] = {.lex_state = 71}, - [1332] = {.lex_state = 71}, - [1333] = {.lex_state = 3, .external_lex_state = 3}, - [1334] = {.lex_state = 13}, - [1335] = {.lex_state = 3, .external_lex_state = 3}, - [1336] = {.lex_state = 3, .external_lex_state = 4}, - [1337] = {.lex_state = 13}, - [1338] = {.lex_state = 73}, - [1339] = {.lex_state = 3, .external_lex_state = 3}, - [1340] = {.lex_state = 3, .external_lex_state = 3}, - [1341] = {.lex_state = 3, .external_lex_state = 3}, - [1342] = {.lex_state = 73}, - [1343] = {.lex_state = 73}, - [1344] = {.lex_state = 73}, - [1345] = {.lex_state = 19}, - [1346] = {.lex_state = 19}, - [1347] = {.lex_state = 73}, - [1348] = {.lex_state = 16}, - [1349] = {.lex_state = 19}, - [1350] = {.lex_state = 19}, - [1351] = {.lex_state = 21, .external_lex_state = 4}, - [1352] = {.lex_state = 19}, - [1353] = {.lex_state = 19}, - [1354] = {.lex_state = 17}, - [1355] = {.lex_state = 19}, - [1356] = {.lex_state = 10, .external_lex_state = 5}, - [1357] = {.lex_state = 19}, - [1358] = {.lex_state = 3, .external_lex_state = 6}, - [1359] = {.lex_state = 19}, - [1360] = {.lex_state = 19}, - [1361] = {.lex_state = 19}, - [1362] = {.lex_state = 19}, - [1363] = {.lex_state = 19}, - [1364] = {.lex_state = 3, .external_lex_state = 6}, - [1365] = {.lex_state = 10, .external_lex_state = 5}, - [1366] = {.lex_state = 19}, - [1367] = {.lex_state = 19}, - [1368] = {.lex_state = 19}, - [1369] = {.lex_state = 19}, - [1370] = {.lex_state = 10, .external_lex_state = 5}, - [1371] = {.lex_state = 19}, - [1372] = {.lex_state = 19}, - [1373] = {.lex_state = 10, .external_lex_state = 5}, - [1374] = {.lex_state = 10, .external_lex_state = 5}, - [1375] = {.lex_state = 19}, - [1376] = {.lex_state = 19}, - [1377] = {.lex_state = 19}, - [1378] = {.lex_state = 19}, - [1379] = {.lex_state = 19}, - [1380] = {.lex_state = 19}, - [1381] = {.lex_state = 19}, - [1382] = {.lex_state = 19}, - [1383] = {.lex_state = 19}, - [1384] = {.lex_state = 19}, - [1385] = {.lex_state = 19}, - [1386] = {.lex_state = 10, .external_lex_state = 7}, - [1387] = {.lex_state = 19}, - [1388] = {.lex_state = 19}, - [1389] = {.lex_state = 10, .external_lex_state = 7}, - [1390] = {.lex_state = 73}, - [1391] = {.lex_state = 19}, - [1392] = {.lex_state = 10, .external_lex_state = 7}, - [1393] = {.lex_state = 19}, - [1394] = {.lex_state = 19}, - [1395] = {.lex_state = 19}, - [1396] = {.lex_state = 19}, - [1397] = {.lex_state = 19}, - [1398] = {.lex_state = 19}, - [1399] = {.lex_state = 10, .external_lex_state = 7}, - [1400] = {.lex_state = 10, .external_lex_state = 7}, - [1401] = {.lex_state = 73}, - [1402] = {.lex_state = 19}, - [1403] = {.lex_state = 19}, - [1404] = {.lex_state = 19}, - [1405] = {.lex_state = 19}, - [1406] = {.lex_state = 73}, - [1407] = {.lex_state = 73}, - [1408] = {.lex_state = 19}, - [1409] = {.lex_state = 19}, - [1410] = {.lex_state = 19}, - [1411] = {.lex_state = 19}, - [1412] = {.lex_state = 19}, - [1413] = {.lex_state = 73}, - [1414] = {.lex_state = 73}, - [1415] = {.lex_state = 73}, - [1416] = {.lex_state = 73}, - [1417] = {.lex_state = 73}, - [1418] = {.lex_state = 71}, + [1328] = {.lex_state = 21}, + [1329] = {.lex_state = 3, .external_lex_state = 3}, + [1330] = {.lex_state = 21}, + [1331] = {.lex_state = 3, .external_lex_state = 3}, + [1332] = {.lex_state = 3, .external_lex_state = 3}, + [1333] = {.lex_state = 21}, + [1334] = {.lex_state = 20}, + [1335] = {.lex_state = 20}, + [1336] = {.lex_state = 21}, + [1337] = {.lex_state = 16}, + [1338] = {.lex_state = 21}, + [1339] = {.lex_state = 17, .external_lex_state = 4}, + [1340] = {.lex_state = 20}, + [1341] = {.lex_state = 20}, + [1342] = {.lex_state = 20}, + [1343] = {.lex_state = 20}, + [1344] = {.lex_state = 20}, + [1345] = {.lex_state = 17}, + [1346] = {.lex_state = 3, .external_lex_state = 5}, + [1347] = {.lex_state = 20}, + [1348] = {.lex_state = 20}, + [1349] = {.lex_state = 3, .external_lex_state = 5}, + [1350] = {.lex_state = 20}, + [1351] = {.lex_state = 20}, + [1352] = {.lex_state = 20}, + [1353] = {.lex_state = 20}, + [1354] = {.lex_state = 20}, + [1355] = {.lex_state = 20}, + [1356] = {.lex_state = 20}, + [1357] = {.lex_state = 20}, + [1358] = {.lex_state = 20}, + [1359] = {.lex_state = 10, .external_lex_state = 6}, + [1360] = {.lex_state = 20}, + [1361] = {.lex_state = 20}, + [1362] = {.lex_state = 10, .external_lex_state = 6}, + [1363] = {.lex_state = 20}, + [1364] = {.lex_state = 10, .external_lex_state = 6}, + [1365] = {.lex_state = 20}, + [1366] = {.lex_state = 20}, + [1367] = {.lex_state = 10, .external_lex_state = 6}, + [1368] = {.lex_state = 10, .external_lex_state = 6}, + [1369] = {.lex_state = 21}, + [1370] = {.lex_state = 20}, + [1371] = {.lex_state = 20}, + [1372] = {.lex_state = 20}, + [1373] = {.lex_state = 10, .external_lex_state = 7}, + [1374] = {.lex_state = 10, .external_lex_state = 7}, + [1375] = {.lex_state = 20}, + [1376] = {.lex_state = 20}, + [1377] = {.lex_state = 20}, + [1378] = {.lex_state = 20}, + [1379] = {.lex_state = 21}, + [1380] = {.lex_state = 20}, + [1381] = {.lex_state = 20}, + [1382] = {.lex_state = 21}, + [1383] = {.lex_state = 20}, + [1384] = {.lex_state = 10, .external_lex_state = 7}, + [1385] = {.lex_state = 20}, + [1386] = {.lex_state = 20}, + [1387] = {.lex_state = 20}, + [1388] = {.lex_state = 20}, + [1389] = {.lex_state = 21}, + [1390] = {.lex_state = 20}, + [1391] = {.lex_state = 10, .external_lex_state = 7}, + [1392] = {.lex_state = 20}, + [1393] = {.lex_state = 20}, + [1394] = {.lex_state = 10, .external_lex_state = 7}, + [1395] = {.lex_state = 20}, + [1396] = {.lex_state = 20}, + [1397] = {.lex_state = 20}, + [1398] = {.lex_state = 21}, + [1399] = {.lex_state = 21}, + [1400] = {.lex_state = 21}, + [1401] = {.lex_state = 21}, + [1402] = {.lex_state = 72}, + [1403] = {.lex_state = 21}, + [1404] = {.lex_state = 21}, + [1405] = {.lex_state = 3, .external_lex_state = 3}, + [1406] = {.lex_state = 3, .external_lex_state = 3}, + [1407] = {.lex_state = 72}, + [1408] = {.lex_state = 3, .external_lex_state = 3}, + [1409] = {.lex_state = 3, .external_lex_state = 3}, + [1410] = {.lex_state = 72}, + [1411] = {.lex_state = 3, .external_lex_state = 3}, + [1412] = {.lex_state = 3, .external_lex_state = 3}, + [1413] = {.lex_state = 3, .external_lex_state = 3}, + [1414] = {.lex_state = 3, .external_lex_state = 3}, + [1415] = {.lex_state = 21}, + [1416] = {.lex_state = 21}, + [1417] = {.lex_state = 21}, + [1418] = {.lex_state = 21}, [1419] = {.lex_state = 3, .external_lex_state = 3}, - [1420] = {.lex_state = 71}, - [1421] = {.lex_state = 73}, - [1422] = {.lex_state = 3, .external_lex_state = 3}, - [1423] = {.lex_state = 3, .external_lex_state = 3}, - [1424] = {.lex_state = 3, .external_lex_state = 3}, - [1425] = {.lex_state = 3, .external_lex_state = 3}, - [1426] = {.lex_state = 3, .external_lex_state = 3}, - [1427] = {.lex_state = 73}, - [1428] = {.lex_state = 3, .external_lex_state = 3}, - [1429] = {.lex_state = 3, .external_lex_state = 3}, - [1430] = {.lex_state = 3, .external_lex_state = 3}, - [1431] = {.lex_state = 3, .external_lex_state = 3}, - [1432] = {.lex_state = 73}, - [1433] = {.lex_state = 73}, - [1434] = {.lex_state = 71}, - [1435] = {.lex_state = 3, .external_lex_state = 3}, - [1436] = {.lex_state = 73}, - [1437] = {.lex_state = 73}, - [1438] = {.lex_state = 71}, - [1439] = {.lex_state = 10, .external_lex_state = 8}, - [1440] = {.lex_state = 71}, - [1441] = {.lex_state = 10, .external_lex_state = 8}, - [1442] = {.lex_state = 71}, - [1443] = {.lex_state = 73}, - [1444] = {.lex_state = 71}, - [1445] = {.lex_state = 3, .external_lex_state = 4}, - [1446] = {.lex_state = 73}, - [1447] = {.lex_state = 73}, - [1448] = {.lex_state = 71}, - [1449] = {.lex_state = 73}, - [1450] = {.lex_state = 71}, - [1451] = {.lex_state = 73}, - [1452] = {.lex_state = 73}, - [1453] = {.lex_state = 73}, - [1454] = {.lex_state = 73}, - [1455] = {.lex_state = 73}, - [1456] = {.lex_state = 71}, - [1457] = {.lex_state = 71}, - [1458] = {.lex_state = 73}, - [1459] = {.lex_state = 71}, - [1460] = {.lex_state = 73}, - [1461] = {.lex_state = 73}, - [1462] = {.lex_state = 71}, - [1463] = {.lex_state = 73}, - [1464] = {.lex_state = 73}, - [1465] = {.lex_state = 73}, - [1466] = {.lex_state = 73}, - [1467] = {.lex_state = 73}, - [1468] = {.lex_state = 73}, - [1469] = {.lex_state = 73}, - [1470] = {.lex_state = 73}, - [1471] = {.lex_state = 73}, - [1472] = {.lex_state = 73}, - [1473] = {.lex_state = 73}, - [1474] = {.lex_state = 71}, - [1475] = {.lex_state = 71}, - [1476] = {.lex_state = 73}, - [1477] = {.lex_state = 73}, - [1478] = {.lex_state = 10, .external_lex_state = 9}, - [1479] = {.lex_state = 10, .external_lex_state = 9}, - [1480] = {.lex_state = 73}, - [1481] = {.lex_state = 73}, - [1482] = {.lex_state = 73}, - [1483] = {.lex_state = 73}, - [1484] = {.lex_state = 73}, - [1485] = {.lex_state = 73}, - [1486] = {.lex_state = 73}, - [1487] = {.lex_state = 71}, - [1488] = {.lex_state = 73}, - [1489] = {.lex_state = 73}, - [1490] = {.lex_state = 73}, - [1491] = {.lex_state = 73}, - [1492] = {.lex_state = 73}, - [1493] = {.lex_state = 73}, - [1494] = {.lex_state = 73}, - [1495] = {.lex_state = 73}, - [1496] = {.lex_state = 71}, - [1497] = {.lex_state = 73}, - [1498] = {.lex_state = 73}, - [1499] = {.lex_state = 73}, - [1500] = {.lex_state = 71}, - [1501] = {.lex_state = 71}, - [1502] = {.lex_state = 73}, - [1503] = {.lex_state = 71}, - [1504] = {.lex_state = 73}, - [1505] = {.lex_state = 73}, - [1506] = {.lex_state = 73}, - [1507] = {.lex_state = 73}, - [1508] = {.lex_state = 71}, - [1509] = {.lex_state = 73}, - [1510] = {.lex_state = 71}, - [1511] = {.lex_state = 71}, - [1512] = {.lex_state = 71}, - [1513] = {.lex_state = 71}, - [1514] = {.lex_state = 21, .external_lex_state = 4}, - [1515] = {.lex_state = 71, .external_lex_state = 2}, - [1516] = {.lex_state = 71}, - [1517] = {.lex_state = 71}, - [1518] = {.lex_state = 71}, - [1519] = {.lex_state = 71}, - [1520] = {.lex_state = 71}, - [1521] = {.lex_state = 71}, - [1522] = {.lex_state = 71}, - [1523] = {.lex_state = 71}, - [1524] = {.lex_state = 71}, - [1525] = {.lex_state = 10, .external_lex_state = 5}, - [1526] = {.lex_state = 73}, - [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 71}, - [1529] = {.lex_state = 73}, - [1530] = {.lex_state = 71, .external_lex_state = 2}, - [1531] = {.lex_state = 10, .external_lex_state = 5}, - [1532] = {.lex_state = 71}, + [1420] = {.lex_state = 72}, + [1421] = {.lex_state = 21}, + [1422] = {.lex_state = 72}, + [1423] = {.lex_state = 21}, + [1424] = {.lex_state = 72}, + [1425] = {.lex_state = 72}, + [1426] = {.lex_state = 21}, + [1427] = {.lex_state = 72}, + [1428] = {.lex_state = 10, .external_lex_state = 8}, + [1429] = {.lex_state = 72}, + [1430] = {.lex_state = 21}, + [1431] = {.lex_state = 21}, + [1432] = {.lex_state = 10, .external_lex_state = 8}, + [1433] = {.lex_state = 72}, + [1434] = {.lex_state = 21}, + [1435] = {.lex_state = 10, .external_lex_state = 9}, + [1436] = {.lex_state = 21}, + [1437] = {.lex_state = 21}, + [1438] = {.lex_state = 72}, + [1439] = {.lex_state = 21}, + [1440] = {.lex_state = 21}, + [1441] = {.lex_state = 21}, + [1442] = {.lex_state = 21}, + [1443] = {.lex_state = 21}, + [1444] = {.lex_state = 21}, + [1445] = {.lex_state = 21}, + [1446] = {.lex_state = 21}, + [1447] = {.lex_state = 21}, + [1448] = {.lex_state = 72}, + [1449] = {.lex_state = 72}, + [1450] = {.lex_state = 21}, + [1451] = {.lex_state = 21}, + [1452] = {.lex_state = 21}, + [1453] = {.lex_state = 21}, + [1454] = {.lex_state = 21}, + [1455] = {.lex_state = 21}, + [1456] = {.lex_state = 72}, + [1457] = {.lex_state = 21}, + [1458] = {.lex_state = 21}, + [1459] = {.lex_state = 10, .external_lex_state = 9}, + [1460] = {.lex_state = 21}, + [1461] = {.lex_state = 21}, + [1462] = {.lex_state = 21}, + [1463] = {.lex_state = 21}, + [1464] = {.lex_state = 21}, + [1465] = {.lex_state = 21}, + [1466] = {.lex_state = 72}, + [1467] = {.lex_state = 21}, + [1468] = {.lex_state = 21}, + [1469] = {.lex_state = 72}, + [1470] = {.lex_state = 72}, + [1471] = {.lex_state = 72}, + [1472] = {.lex_state = 21}, + [1473] = {.lex_state = 21}, + [1474] = {.lex_state = 21}, + [1475] = {.lex_state = 21}, + [1476] = {.lex_state = 21}, + [1477] = {.lex_state = 21}, + [1478] = {.lex_state = 21}, + [1479] = {.lex_state = 21}, + [1480] = {.lex_state = 21}, + [1481] = {.lex_state = 21}, + [1482] = {.lex_state = 21}, + [1483] = {.lex_state = 21}, + [1484] = {.lex_state = 72}, + [1485] = {.lex_state = 72}, + [1486] = {.lex_state = 21}, + [1487] = {.lex_state = 72}, + [1488] = {.lex_state = 21}, + [1489] = {.lex_state = 21}, + [1490] = {.lex_state = 72}, + [1491] = {.lex_state = 72}, + [1492] = {.lex_state = 72}, + [1493] = {.lex_state = 72}, + [1494] = {.lex_state = 72}, + [1495] = {.lex_state = 72}, + [1496] = {.lex_state = 72}, + [1497] = {.lex_state = 72}, + [1498] = {.lex_state = 72}, + [1499] = {.lex_state = 72}, + [1500] = {.lex_state = 72, .external_lex_state = 2}, + [1501] = {.lex_state = 72}, + [1502] = {.lex_state = 72}, + [1503] = {.lex_state = 72}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 72}, + [1506] = {.lex_state = 21}, + [1507] = {.lex_state = 10, .external_lex_state = 6}, + [1508] = {.lex_state = 72}, + [1509] = {.lex_state = 21}, + [1510] = {.lex_state = 72}, + [1511] = {.lex_state = 72}, + [1512] = {.lex_state = 72}, + [1513] = {.lex_state = 72, .external_lex_state = 2}, + [1514] = {.lex_state = 72}, + [1515] = {.lex_state = 10, .external_lex_state = 6}, + [1516] = {.lex_state = 72}, + [1517] = {.lex_state = 72}, + [1518] = {.lex_state = 72}, + [1519] = {.lex_state = 72}, + [1520] = {.lex_state = 21}, + [1521] = {.lex_state = 72}, + [1522] = {.lex_state = 72}, + [1523] = {.lex_state = 72}, + [1524] = {.lex_state = 72, .external_lex_state = 2}, + [1525] = {.lex_state = 72}, + [1526] = {.lex_state = 72}, + [1527] = {.lex_state = 10, .external_lex_state = 6}, + [1528] = {.lex_state = 72}, + [1529] = {.lex_state = 72}, + [1530] = {.lex_state = 10, .external_lex_state = 6}, + [1531] = {.lex_state = 10, .external_lex_state = 6}, + [1532] = {.lex_state = 10, .external_lex_state = 6}, [1533] = {.lex_state = 9}, - [1534] = {.lex_state = 71}, - [1535] = {.lex_state = 71}, - [1536] = {.lex_state = 71}, - [1537] = {.lex_state = 71}, - [1538] = {.lex_state = 73}, - [1539] = {.lex_state = 71}, - [1540] = {.lex_state = 71}, - [1541] = {.lex_state = 71}, - [1542] = {.lex_state = 71, .external_lex_state = 2}, - [1543] = {.lex_state = 10, .external_lex_state = 5}, - [1544] = {.lex_state = 71}, - [1545] = {.lex_state = 71, .external_lex_state = 2}, - [1546] = {.lex_state = 71}, - [1547] = {.lex_state = 71}, - [1548] = {.lex_state = 71}, - [1549] = {.lex_state = 71}, - [1550] = {.lex_state = 71}, - [1551] = {.lex_state = 71}, - [1552] = {.lex_state = 10, .external_lex_state = 5}, - [1553] = {.lex_state = 71}, - [1554] = {.lex_state = 9}, - [1555] = {.lex_state = 10, .external_lex_state = 5}, - [1556] = {.lex_state = 10, .external_lex_state = 5}, - [1557] = {.lex_state = 10, .external_lex_state = 5}, - [1558] = {.lex_state = 71}, - [1559] = {.lex_state = 10, .external_lex_state = 5}, - [1560] = {.lex_state = 10, .external_lex_state = 5}, - [1561] = {.lex_state = 10, .external_lex_state = 5}, - [1562] = {.lex_state = 71}, - [1563] = {.lex_state = 73}, - [1564] = {.lex_state = 71}, - [1565] = {.lex_state = 73}, - [1566] = {.lex_state = 71}, - [1567] = {.lex_state = 10, .external_lex_state = 5}, - [1568] = {.lex_state = 71}, - [1569] = {.lex_state = 73}, - [1570] = {.lex_state = 71}, - [1571] = {.lex_state = 71}, - [1572] = {.lex_state = 10, .external_lex_state = 7}, - [1573] = {.lex_state = 71}, - [1574] = {.lex_state = 71}, - [1575] = {.lex_state = 71, .external_lex_state = 2}, - [1576] = {.lex_state = 10, .external_lex_state = 7}, - [1577] = {.lex_state = 71}, - [1578] = {.lex_state = 71}, - [1579] = {.lex_state = 10, .external_lex_state = 7}, - [1580] = {.lex_state = 71}, - [1581] = {.lex_state = 71}, - [1582] = {.lex_state = 73}, - [1583] = {.lex_state = 71}, - [1584] = {.lex_state = 71}, - [1585] = {.lex_state = 10, .external_lex_state = 7}, - [1586] = {.lex_state = 10, .external_lex_state = 7}, - [1587] = {.lex_state = 71}, - [1588] = {.lex_state = 71}, - [1589] = {.lex_state = 71}, - [1590] = {.lex_state = 71}, - [1591] = {.lex_state = 71}, - [1592] = {.lex_state = 71}, - [1593] = {.lex_state = 73}, - [1594] = {.lex_state = 71}, - [1595] = {.lex_state = 71}, - [1596] = {.lex_state = 71}, - [1597] = {.lex_state = 71}, - [1598] = {.lex_state = 71}, - [1599] = {.lex_state = 71, .external_lex_state = 2}, - [1600] = {.lex_state = 71}, - [1601] = {.lex_state = 73}, - [1602] = {.lex_state = 71}, - [1603] = {.lex_state = 10, .external_lex_state = 7}, + [1534] = {.lex_state = 72, .external_lex_state = 2}, + [1535] = {.lex_state = 9}, + [1536] = {.lex_state = 72}, + [1537] = {.lex_state = 72}, + [1538] = {.lex_state = 10, .external_lex_state = 6}, + [1539] = {.lex_state = 72}, + [1540] = {.lex_state = 10, .external_lex_state = 6}, + [1541] = {.lex_state = 10, .external_lex_state = 6}, + [1542] = {.lex_state = 72}, + [1543] = {.lex_state = 21}, + [1544] = {.lex_state = 72}, + [1545] = {.lex_state = 21}, + [1546] = {.lex_state = 72}, + [1547] = {.lex_state = 10, .external_lex_state = 7}, + [1548] = {.lex_state = 72}, + [1549] = {.lex_state = 72}, + [1550] = {.lex_state = 72}, + [1551] = {.lex_state = 72}, + [1552] = {.lex_state = 72}, + [1553] = {.lex_state = 72}, + [1554] = {.lex_state = 72}, + [1555] = {.lex_state = 72}, + [1556] = {.lex_state = 72}, + [1557] = {.lex_state = 72}, + [1558] = {.lex_state = 21}, + [1559] = {.lex_state = 72}, + [1560] = {.lex_state = 10, .external_lex_state = 7}, + [1561] = {.lex_state = 72}, + [1562] = {.lex_state = 21}, + [1563] = {.lex_state = 21}, + [1564] = {.lex_state = 72}, + [1565] = {.lex_state = 21}, + [1566] = {.lex_state = 10, .external_lex_state = 7}, + [1567] = {.lex_state = 21}, + [1568] = {.lex_state = 10, .external_lex_state = 7}, + [1569] = {.lex_state = 72}, + [1570] = {.lex_state = 72}, + [1571] = {.lex_state = 72}, + [1572] = {.lex_state = 72}, + [1573] = {.lex_state = 21}, + [1574] = {.lex_state = 21}, + [1575] = {.lex_state = 72}, + [1576] = {.lex_state = 72}, + [1577] = {.lex_state = 10, .external_lex_state = 7}, + [1578] = {.lex_state = 72}, + [1579] = {.lex_state = 21}, + [1580] = {.lex_state = 21}, + [1581] = {.lex_state = 72}, + [1582] = {.lex_state = 72}, + [1583] = {.lex_state = 10, .external_lex_state = 7}, + [1584] = {.lex_state = 72}, + [1585] = {.lex_state = 72}, + [1586] = {.lex_state = 72}, + [1587] = {.lex_state = 72}, + [1588] = {.lex_state = 72}, + [1589] = {.lex_state = 72}, + [1590] = {.lex_state = 72}, + [1591] = {.lex_state = 72}, + [1592] = {.lex_state = 72, .external_lex_state = 2}, + [1593] = {.lex_state = 72}, + [1594] = {.lex_state = 72}, + [1595] = {.lex_state = 72}, + [1596] = {.lex_state = 72}, + [1597] = {.lex_state = 72}, + [1598] = {.lex_state = 72, .external_lex_state = 2}, + [1599] = {.lex_state = 72, .external_lex_state = 2}, + [1600] = {.lex_state = 72}, + [1601] = {.lex_state = 72}, + [1602] = {.lex_state = 72}, + [1603] = {.lex_state = 72}, [1604] = {.lex_state = 10, .external_lex_state = 7}, - [1605] = {.lex_state = 73}, - [1606] = {.lex_state = 71, .external_lex_state = 2}, - [1607] = {.lex_state = 71}, - [1608] = {.lex_state = 72, .external_lex_state = 10}, - [1609] = {.lex_state = 10, .external_lex_state = 7}, - [1610] = {.lex_state = 71}, - [1611] = {.lex_state = 71}, - [1612] = {.lex_state = 71}, - [1613] = {.lex_state = 73}, - [1614] = {.lex_state = 71}, - [1615] = {.lex_state = 10, .external_lex_state = 7}, - [1616] = {.lex_state = 73}, - [1617] = {.lex_state = 71}, - [1618] = {.lex_state = 73}, - [1619] = {.lex_state = 73}, - [1620] = {.lex_state = 71}, - [1621] = {.lex_state = 71}, - [1622] = {.lex_state = 71}, - [1623] = {.lex_state = 71}, - [1624] = {.lex_state = 71}, - [1625] = {.lex_state = 10, .external_lex_state = 7}, - [1626] = {.lex_state = 73}, - [1627] = {.lex_state = 71}, - [1628] = {.lex_state = 71}, - [1629] = {.lex_state = 71}, - [1630] = {.lex_state = 71}, - [1631] = {.lex_state = 71}, - [1632] = {.lex_state = 71}, - [1633] = {.lex_state = 71}, - [1634] = {.lex_state = 71}, - [1635] = {.lex_state = 71}, - [1636] = {.lex_state = 73}, - [1637] = {.lex_state = 71}, - [1638] = {.lex_state = 71}, - [1639] = {.lex_state = 71}, - [1640] = {.lex_state = 73}, - [1641] = {.lex_state = 71}, - [1642] = {.lex_state = 71}, - [1643] = {.lex_state = 71}, - [1644] = {.lex_state = 71}, - [1645] = {.lex_state = 71, .external_lex_state = 2}, - [1646] = {.lex_state = 71, .external_lex_state = 2}, - [1647] = {.lex_state = 72}, - [1648] = {.lex_state = 5, .external_lex_state = 11}, - [1649] = {.lex_state = 5, .external_lex_state = 11}, - [1650] = {.lex_state = 71, .external_lex_state = 2}, - [1651] = {.lex_state = 71}, - [1652] = {.lex_state = 71, .external_lex_state = 2}, - [1653] = {.lex_state = 71}, - [1654] = {.lex_state = 71}, - [1655] = {.lex_state = 71, .external_lex_state = 2}, - [1656] = {.lex_state = 5, .external_lex_state = 12}, - [1657] = {.lex_state = 71, .external_lex_state = 2}, - [1658] = {.lex_state = 71, .external_lex_state = 2}, - [1659] = {.lex_state = 71}, - [1660] = {.lex_state = 71}, - [1661] = {.lex_state = 71}, - [1662] = {.lex_state = 71, .external_lex_state = 2}, - [1663] = {.lex_state = 71, .external_lex_state = 2}, - [1664] = {.lex_state = 5, .external_lex_state = 11}, - [1665] = {.lex_state = 71, .external_lex_state = 2}, - [1666] = {.lex_state = 71, .external_lex_state = 2}, - [1667] = {.lex_state = 71}, - [1668] = {.lex_state = 71}, - [1669] = {.lex_state = 73}, - [1670] = {.lex_state = 71}, - [1671] = {.lex_state = 71, .external_lex_state = 2}, - [1672] = {.lex_state = 73}, - [1673] = {.lex_state = 72, .external_lex_state = 10}, - [1674] = {.lex_state = 73}, - [1675] = {.lex_state = 71, .external_lex_state = 2}, - [1676] = {.lex_state = 71}, - [1677] = {.lex_state = 71}, - [1678] = {.lex_state = 73}, - [1679] = {.lex_state = 71}, - [1680] = {.lex_state = 71}, - [1681] = {.lex_state = 72, .external_lex_state = 10}, - [1682] = {.lex_state = 71}, - [1683] = {.lex_state = 71}, - [1684] = {.lex_state = 71}, - [1685] = {.lex_state = 71}, - [1686] = {.lex_state = 71}, - [1687] = {.lex_state = 71}, - [1688] = {.lex_state = 71}, - [1689] = {.lex_state = 71}, - [1690] = {.lex_state = 71}, - [1691] = {.lex_state = 71}, - [1692] = {.lex_state = 71, .external_lex_state = 2}, - [1693] = {.lex_state = 71}, - [1694] = {.lex_state = 71, .external_lex_state = 2}, - [1695] = {.lex_state = 71}, - [1696] = {.lex_state = 71}, - [1697] = {.lex_state = 71, .external_lex_state = 2}, - [1698] = {.lex_state = 71}, - [1699] = {.lex_state = 71}, - [1700] = {.lex_state = 71, .external_lex_state = 2}, - [1701] = {.lex_state = 5, .external_lex_state = 11}, - [1702] = {.lex_state = 71, .external_lex_state = 2}, - [1703] = {.lex_state = 71, .external_lex_state = 2}, - [1704] = {.lex_state = 71}, - [1705] = {.lex_state = 71}, - [1706] = {.lex_state = 71}, - [1707] = {.lex_state = 71}, - [1708] = {.lex_state = 71}, - [1709] = {.lex_state = 71}, - [1710] = {.lex_state = 71}, - [1711] = {.lex_state = 71, .external_lex_state = 2}, - [1712] = {.lex_state = 71, .external_lex_state = 2}, - [1713] = {.lex_state = 71, .external_lex_state = 2}, + [1605] = {.lex_state = 21}, + [1606] = {.lex_state = 72}, + [1607] = {.lex_state = 72}, + [1608] = {.lex_state = 21}, + [1609] = {.lex_state = 72}, + [1610] = {.lex_state = 72}, + [1611] = {.lex_state = 10, .external_lex_state = 7}, + [1612] = {.lex_state = 72}, + [1613] = {.lex_state = 72}, + [1614] = {.lex_state = 72}, + [1615] = {.lex_state = 72}, + [1616] = {.lex_state = 72}, + [1617] = {.lex_state = 72}, + [1618] = {.lex_state = 72, .external_lex_state = 2}, + [1619] = {.lex_state = 72}, + [1620] = {.lex_state = 72}, + [1621] = {.lex_state = 72, .external_lex_state = 2}, + [1622] = {.lex_state = 72}, + [1623] = {.lex_state = 72}, + [1624] = {.lex_state = 72}, + [1625] = {.lex_state = 21}, + [1626] = {.lex_state = 72}, + [1627] = {.lex_state = 72}, + [1628] = {.lex_state = 72, .external_lex_state = 2}, + [1629] = {.lex_state = 72}, + [1630] = {.lex_state = 72}, + [1631] = {.lex_state = 21}, + [1632] = {.lex_state = 72}, + [1633] = {.lex_state = 72}, + [1634] = {.lex_state = 72, .external_lex_state = 2}, + [1635] = {.lex_state = 21}, + [1636] = {.lex_state = 72}, + [1637] = {.lex_state = 72}, + [1638] = {.lex_state = 5, .external_lex_state = 10}, + [1639] = {.lex_state = 72, .external_lex_state = 2}, + [1640] = {.lex_state = 72, .external_lex_state = 2}, + [1641] = {.lex_state = 72}, + [1642] = {.lex_state = 72}, + [1643] = {.lex_state = 5, .external_lex_state = 11}, + [1644] = {.lex_state = 72}, + [1645] = {.lex_state = 72}, + [1646] = {.lex_state = 72}, + [1647] = {.lex_state = 72, .external_lex_state = 2}, + [1648] = {.lex_state = 72}, + [1649] = {.lex_state = 72}, + [1650] = {.lex_state = 5, .external_lex_state = 10}, + [1651] = {.lex_state = 72}, + [1652] = {.lex_state = 5, .external_lex_state = 11}, + [1653] = {.lex_state = 21}, + [1654] = {.lex_state = 72}, + [1655] = {.lex_state = 72}, + [1656] = {.lex_state = 72}, + [1657] = {.lex_state = 21}, + [1658] = {.lex_state = 72}, + [1659] = {.lex_state = 72}, + [1660] = {.lex_state = 72}, + [1661] = {.lex_state = 72, .external_lex_state = 2}, + [1662] = {.lex_state = 72, .external_lex_state = 2}, + [1663] = {.lex_state = 72, .external_lex_state = 2}, + [1664] = {.lex_state = 72}, + [1665] = {.lex_state = 72}, + [1666] = {.lex_state = 72, .external_lex_state = 2}, + [1667] = {.lex_state = 21}, + [1668] = {.lex_state = 72, .external_lex_state = 2}, + [1669] = {.lex_state = 72}, + [1670] = {.lex_state = 21}, + [1671] = {.lex_state = 72, .external_lex_state = 2}, + [1672] = {.lex_state = 5, .external_lex_state = 11}, + [1673] = {.lex_state = 72, .external_lex_state = 2}, + [1674] = {.lex_state = 5, .external_lex_state = 11}, + [1675] = {.lex_state = 72}, + [1676] = {.lex_state = 72}, + [1677] = {.lex_state = 72, .external_lex_state = 2}, + [1678] = {.lex_state = 72, .external_lex_state = 2}, + [1679] = {.lex_state = 72}, + [1680] = {.lex_state = 72}, + [1681] = {.lex_state = 72}, + [1682] = {.lex_state = 72, .external_lex_state = 2}, + [1683] = {.lex_state = 72, .external_lex_state = 2}, + [1684] = {.lex_state = 72, .external_lex_state = 2}, + [1685] = {.lex_state = 72}, + [1686] = {.lex_state = 72}, + [1687] = {.lex_state = 72, .external_lex_state = 2}, + [1688] = {.lex_state = 72}, + [1689] = {.lex_state = 72, .external_lex_state = 2}, + [1690] = {.lex_state = 72, .external_lex_state = 2}, + [1691] = {.lex_state = 72, .external_lex_state = 2}, + [1692] = {.lex_state = 72}, + [1693] = {.lex_state = 72}, + [1694] = {.lex_state = 72}, + [1695] = {.lex_state = 72}, + [1696] = {.lex_state = 72}, + [1697] = {.lex_state = 72, .external_lex_state = 2}, + [1698] = {.lex_state = 72}, + [1699] = {.lex_state = 72}, + [1700] = {.lex_state = 72, .external_lex_state = 2}, + [1701] = {.lex_state = 72}, + [1702] = {.lex_state = 72}, + [1703] = {.lex_state = 72}, + [1704] = {.lex_state = 72, .external_lex_state = 2}, + [1705] = {.lex_state = 72, .external_lex_state = 2}, + [1706] = {.lex_state = 72, .external_lex_state = 2}, + [1707] = {.lex_state = 72}, + [1708] = {.lex_state = 72, .external_lex_state = 2}, + [1709] = {.lex_state = 72, .external_lex_state = 2}, + [1710] = {.lex_state = 72, .external_lex_state = 2}, + [1711] = {.lex_state = 72}, + [1712] = {.lex_state = 5, .external_lex_state = 11}, + [1713] = {.lex_state = 72, .external_lex_state = 2}, [1714] = {.lex_state = 5, .external_lex_state = 11}, - [1715] = {.lex_state = 71, .external_lex_state = 2}, - [1716] = {.lex_state = 71, .external_lex_state = 2}, - [1717] = {.lex_state = 71, .external_lex_state = 2}, - [1718] = {.lex_state = 71}, - [1719] = {.lex_state = 5, .external_lex_state = 11}, - [1720] = {.lex_state = 71, .external_lex_state = 2}, - [1721] = {.lex_state = 71}, - [1722] = {.lex_state = 71, .external_lex_state = 2}, - [1723] = {.lex_state = 71}, - [1724] = {.lex_state = 71}, - [1725] = {.lex_state = 71, .external_lex_state = 2}, - [1726] = {.lex_state = 73}, - [1727] = {.lex_state = 71, .external_lex_state = 2}, - [1728] = {.lex_state = 72}, - [1729] = {.lex_state = 73}, - [1730] = {.lex_state = 71, .external_lex_state = 2}, - [1731] = {.lex_state = 71, .external_lex_state = 2}, - [1732] = {.lex_state = 71, .external_lex_state = 2}, - [1733] = {.lex_state = 71}, - [1734] = {.lex_state = 71}, - [1735] = {.lex_state = 71}, - [1736] = {.lex_state = 71, .external_lex_state = 2}, - [1737] = {.lex_state = 71}, - [1738] = {.lex_state = 71}, - [1739] = {.lex_state = 71, .external_lex_state = 2}, - [1740] = {.lex_state = 71}, - [1741] = {.lex_state = 71, .external_lex_state = 2}, - [1742] = {.lex_state = 71}, - [1743] = {.lex_state = 71}, - [1744] = {.lex_state = 5, .external_lex_state = 12}, - [1745] = {.lex_state = 73}, - [1746] = {.lex_state = 71}, - [1747] = {.lex_state = 71}, - [1748] = {.lex_state = 71}, - [1749] = {.lex_state = 71}, - [1750] = {.lex_state = 71}, - [1751] = {.lex_state = 71, .external_lex_state = 2}, - [1752] = {.lex_state = 71, .external_lex_state = 2}, - [1753] = {.lex_state = 71}, - [1754] = {.lex_state = 71}, - [1755] = {.lex_state = 71, .external_lex_state = 2}, - [1756] = {.lex_state = 71, .external_lex_state = 2}, - [1757] = {.lex_state = 71}, - [1758] = {.lex_state = 71}, - [1759] = {.lex_state = 71}, - [1760] = {.lex_state = 71}, - [1761] = {.lex_state = 71}, - [1762] = {.lex_state = 71}, - [1763] = {.lex_state = 71}, - [1764] = {.lex_state = 71}, - [1765] = {.lex_state = 71}, - [1766] = {.lex_state = 73}, - [1767] = {.lex_state = 71}, - [1768] = {.lex_state = 71, .external_lex_state = 2}, - [1769] = {.lex_state = 71}, - [1770] = {.lex_state = 71, .external_lex_state = 2}, - [1771] = {.lex_state = 71}, - [1772] = {.lex_state = 71}, - [1773] = {.lex_state = 71, .external_lex_state = 2}, - [1774] = {.lex_state = 71}, - [1775] = {.lex_state = 71}, - [1776] = {.lex_state = 5, .external_lex_state = 11}, - [1777] = {.lex_state = 71}, - [1778] = {.lex_state = 71, .external_lex_state = 2}, - [1779] = {.lex_state = 71, .external_lex_state = 2}, - [1780] = {.lex_state = 71, .external_lex_state = 2}, - [1781] = {.lex_state = 71}, - [1782] = {.lex_state = 71}, - [1783] = {.lex_state = 71}, - [1784] = {.lex_state = 71}, - [1785] = {.lex_state = 71, .external_lex_state = 2}, - [1786] = {.lex_state = 73}, - [1787] = {.lex_state = 71}, - [1788] = {.lex_state = 71}, - [1789] = {.lex_state = 71}, - [1790] = {.lex_state = 71, .external_lex_state = 2}, - [1791] = {.lex_state = 71}, - [1792] = {.lex_state = 71, .external_lex_state = 2}, - [1793] = {.lex_state = 71}, - [1794] = {.lex_state = 71, .external_lex_state = 2}, - [1795] = {.lex_state = 71}, - [1796] = {.lex_state = 71, .external_lex_state = 2}, - [1797] = {.lex_state = 71, .external_lex_state = 2}, - [1798] = {.lex_state = 71, .external_lex_state = 2}, - [1799] = {.lex_state = 71}, - [1800] = {.lex_state = 71}, - [1801] = {.lex_state = 71}, - [1802] = {.lex_state = 71}, - [1803] = {.lex_state = 71}, - [1804] = {.lex_state = 16}, - [1805] = {.lex_state = 71, .external_lex_state = 2}, - [1806] = {.lex_state = 71, .external_lex_state = 2}, - [1807] = {.lex_state = 71}, - [1808] = {.lex_state = 71}, - [1809] = {.lex_state = 71, .external_lex_state = 2}, - [1810] = {.lex_state = 71}, - [1811] = {.lex_state = 71, .external_lex_state = 2}, - [1812] = {.lex_state = 71, .external_lex_state = 2}, - [1813] = {.lex_state = 71, .external_lex_state = 2}, - [1814] = {.lex_state = 71}, - [1815] = {.lex_state = 71}, - [1816] = {.lex_state = 71}, - [1817] = {.lex_state = 71}, - [1818] = {.lex_state = 71}, - [1819] = {.lex_state = 71}, - [1820] = {.lex_state = 71, .external_lex_state = 2}, - [1821] = {.lex_state = 71, .external_lex_state = 2}, - [1822] = {.lex_state = 71, .external_lex_state = 2}, - [1823] = {.lex_state = 71}, - [1824] = {.lex_state = 71}, - [1825] = {.lex_state = 71, .external_lex_state = 2}, - [1826] = {.lex_state = 71}, - [1827] = {.lex_state = 71, .external_lex_state = 2}, - [1828] = {.lex_state = 71, .external_lex_state = 2}, - [1829] = {.lex_state = 71, .external_lex_state = 2}, - [1830] = {.lex_state = 71}, - [1831] = {.lex_state = 71, .external_lex_state = 2}, - [1832] = {.lex_state = 71}, - [1833] = {.lex_state = 71}, - [1834] = {.lex_state = 71, .external_lex_state = 2}, - [1835] = {.lex_state = 71, .external_lex_state = 2}, - [1836] = {.lex_state = 71, .external_lex_state = 2}, - [1837] = {.lex_state = 71}, - [1838] = {.lex_state = 71}, - [1839] = {.lex_state = 71, .external_lex_state = 2}, - [1840] = {.lex_state = 71, .external_lex_state = 2}, - [1841] = {.lex_state = 71}, - [1842] = {.lex_state = 71}, - [1843] = {.lex_state = 71, .external_lex_state = 2}, - [1844] = {.lex_state = 5, .external_lex_state = 11}, - [1845] = {.lex_state = 71}, - [1846] = {.lex_state = 71}, - [1847] = {.lex_state = 72, .external_lex_state = 10}, - [1848] = {.lex_state = 71}, - [1849] = {.lex_state = 71}, - [1850] = {.lex_state = 71, .external_lex_state = 2}, - [1851] = {.lex_state = 16}, - [1852] = {.lex_state = 5, .external_lex_state = 11}, - [1853] = {.lex_state = 71, .external_lex_state = 2}, - [1854] = {.lex_state = 71, .external_lex_state = 2}, - [1855] = {.lex_state = 5, .external_lex_state = 11}, - [1856] = {.lex_state = 71}, - [1857] = {.lex_state = 71}, - [1858] = {.lex_state = 71}, - [1859] = {.lex_state = 73}, - [1860] = {.lex_state = 71}, - [1861] = {.lex_state = 71}, - [1862] = {.lex_state = 71}, - [1863] = {.lex_state = 71}, - [1864] = {.lex_state = 71}, - [1865] = {.lex_state = 73}, - [1866] = {.lex_state = 71}, - [1867] = {.lex_state = 71}, - [1868] = {.lex_state = 71}, - [1869] = {.lex_state = 5, .external_lex_state = 11}, - [1870] = {.lex_state = 71, .external_lex_state = 2}, - [1871] = {.lex_state = 71}, - [1872] = {.lex_state = 71}, - [1873] = {.lex_state = 71}, - [1874] = {.lex_state = 71, .external_lex_state = 2}, - [1875] = {.lex_state = 71, .external_lex_state = 2}, - [1876] = {.lex_state = 71}, - [1877] = {.lex_state = 71, .external_lex_state = 2}, - [1878] = {.lex_state = 71, .external_lex_state = 2}, - [1879] = {.lex_state = 71, .external_lex_state = 2}, - [1880] = {.lex_state = 71, .external_lex_state = 2}, - [1881] = {.lex_state = 71, .external_lex_state = 2}, - [1882] = {.lex_state = 71, .external_lex_state = 2}, - [1883] = {.lex_state = 71, .external_lex_state = 2}, - [1884] = {.lex_state = 5, .external_lex_state = 12}, - [1885] = {.lex_state = 5, .external_lex_state = 11}, - [1886] = {.lex_state = 71}, - [1887] = {.lex_state = 71, .external_lex_state = 2}, - [1888] = {.lex_state = 71}, - [1889] = {.lex_state = 71, .external_lex_state = 2}, - [1890] = {.lex_state = 73}, - [1891] = {.lex_state = 71, .external_lex_state = 2}, - [1892] = {.lex_state = 71}, - [1893] = {.lex_state = 71, .external_lex_state = 2}, - [1894] = {.lex_state = 71}, - [1895] = {.lex_state = 71}, - [1896] = {.lex_state = 71, .external_lex_state = 2}, - [1897] = {.lex_state = 71}, - [1898] = {.lex_state = 71}, + [1715] = {.lex_state = 72, .external_lex_state = 2}, + [1716] = {.lex_state = 72, .external_lex_state = 2}, + [1717] = {.lex_state = 72, .external_lex_state = 2}, + [1718] = {.lex_state = 72}, + [1719] = {.lex_state = 72, .external_lex_state = 2}, + [1720] = {.lex_state = 72, .external_lex_state = 2}, + [1721] = {.lex_state = 72}, + [1722] = {.lex_state = 72, .external_lex_state = 2}, + [1723] = {.lex_state = 72, .external_lex_state = 2}, + [1724] = {.lex_state = 72, .external_lex_state = 2}, + [1725] = {.lex_state = 72}, + [1726] = {.lex_state = 72, .external_lex_state = 2}, + [1727] = {.lex_state = 72}, + [1728] = {.lex_state = 5, .external_lex_state = 11}, + [1729] = {.lex_state = 72, .external_lex_state = 2}, + [1730] = {.lex_state = 72, .external_lex_state = 2}, + [1731] = {.lex_state = 72}, + [1732] = {.lex_state = 72}, + [1733] = {.lex_state = 72, .external_lex_state = 2}, + [1734] = {.lex_state = 72, .external_lex_state = 2}, + [1735] = {.lex_state = 72}, + [1736] = {.lex_state = 72}, + [1737] = {.lex_state = 72, .external_lex_state = 2}, + [1738] = {.lex_state = 21}, + [1739] = {.lex_state = 72, .external_lex_state = 2}, + [1740] = {.lex_state = 72, .external_lex_state = 2}, + [1741] = {.lex_state = 72, .external_lex_state = 2}, + [1742] = {.lex_state = 72}, + [1743] = {.lex_state = 5, .external_lex_state = 11}, + [1744] = {.lex_state = 72}, + [1745] = {.lex_state = 72, .external_lex_state = 2}, + [1746] = {.lex_state = 72}, + [1747] = {.lex_state = 72}, + [1748] = {.lex_state = 72}, + [1749] = {.lex_state = 72}, + [1750] = {.lex_state = 72}, + [1751] = {.lex_state = 72}, + [1752] = {.lex_state = 72, .external_lex_state = 2}, + [1753] = {.lex_state = 72}, + [1754] = {.lex_state = 72, .external_lex_state = 2}, + [1755] = {.lex_state = 72}, + [1756] = {.lex_state = 72}, + [1757] = {.lex_state = 72}, + [1758] = {.lex_state = 72}, + [1759] = {.lex_state = 72, .external_lex_state = 2}, + [1760] = {.lex_state = 21}, + [1761] = {.lex_state = 72}, + [1762] = {.lex_state = 72}, + [1763] = {.lex_state = 72}, + [1764] = {.lex_state = 72}, + [1765] = {.lex_state = 72, .external_lex_state = 2}, + [1766] = {.lex_state = 72}, + [1767] = {.lex_state = 72, .external_lex_state = 2}, + [1768] = {.lex_state = 72, .external_lex_state = 2}, + [1769] = {.lex_state = 72}, + [1770] = {.lex_state = 72, .external_lex_state = 2}, + [1771] = {.lex_state = 72, .external_lex_state = 2}, + [1772] = {.lex_state = 72}, + [1773] = {.lex_state = 72}, + [1774] = {.lex_state = 72}, + [1775] = {.lex_state = 72}, + [1776] = {.lex_state = 72}, + [1777] = {.lex_state = 72}, + [1778] = {.lex_state = 72, .external_lex_state = 2}, + [1779] = {.lex_state = 72}, + [1780] = {.lex_state = 72, .external_lex_state = 2}, + [1781] = {.lex_state = 72}, + [1782] = {.lex_state = 72, .external_lex_state = 2}, + [1783] = {.lex_state = 72, .external_lex_state = 2}, + [1784] = {.lex_state = 72}, + [1785] = {.lex_state = 72, .external_lex_state = 2}, + [1786] = {.lex_state = 72}, + [1787] = {.lex_state = 72}, + [1788] = {.lex_state = 72, .external_lex_state = 2}, + [1789] = {.lex_state = 72, .external_lex_state = 2}, + [1790] = {.lex_state = 72}, + [1791] = {.lex_state = 72, .external_lex_state = 2}, + [1792] = {.lex_state = 72}, + [1793] = {.lex_state = 5, .external_lex_state = 11}, + [1794] = {.lex_state = 72}, + [1795] = {.lex_state = 72}, + [1796] = {.lex_state = 72}, + [1797] = {.lex_state = 72}, + [1798] = {.lex_state = 16}, + [1799] = {.lex_state = 72}, + [1800] = {.lex_state = 72}, + [1801] = {.lex_state = 72}, + [1802] = {.lex_state = 72}, + [1803] = {.lex_state = 72}, + [1804] = {.lex_state = 72}, + [1805] = {.lex_state = 72}, + [1806] = {.lex_state = 72}, + [1807] = {.lex_state = 72}, + [1808] = {.lex_state = 72}, + [1809] = {.lex_state = 21}, + [1810] = {.lex_state = 72}, + [1811] = {.lex_state = 21}, + [1812] = {.lex_state = 72, .external_lex_state = 2}, + [1813] = {.lex_state = 72, .external_lex_state = 2}, + [1814] = {.lex_state = 72}, + [1815] = {.lex_state = 72}, + [1816] = {.lex_state = 72, .external_lex_state = 2}, + [1817] = {.lex_state = 72}, + [1818] = {.lex_state = 72}, + [1819] = {.lex_state = 72, .external_lex_state = 2}, + [1820] = {.lex_state = 72}, + [1821] = {.lex_state = 72, .external_lex_state = 2}, + [1822] = {.lex_state = 72, .external_lex_state = 2}, + [1823] = {.lex_state = 72, .external_lex_state = 2}, + [1824] = {.lex_state = 72, .external_lex_state = 2}, + [1825] = {.lex_state = 72, .external_lex_state = 2}, + [1826] = {.lex_state = 72}, + [1827] = {.lex_state = 5, .external_lex_state = 11}, + [1828] = {.lex_state = 5, .external_lex_state = 11}, + [1829] = {.lex_state = 72, .external_lex_state = 2}, + [1830] = {.lex_state = 72}, + [1831] = {.lex_state = 72}, + [1832] = {.lex_state = 72, .external_lex_state = 2}, + [1833] = {.lex_state = 72, .external_lex_state = 2}, + [1834] = {.lex_state = 72, .external_lex_state = 2}, + [1835] = {.lex_state = 72}, + [1836] = {.lex_state = 72, .external_lex_state = 2}, + [1837] = {.lex_state = 72}, + [1838] = {.lex_state = 72}, + [1839] = {.lex_state = 72}, + [1840] = {.lex_state = 72}, + [1841] = {.lex_state = 72}, + [1842] = {.lex_state = 72}, + [1843] = {.lex_state = 72, .external_lex_state = 2}, + [1844] = {.lex_state = 16}, + [1845] = {.lex_state = 72, .external_lex_state = 2}, + [1846] = {.lex_state = 72}, + [1847] = {.lex_state = 72, .external_lex_state = 2}, + [1848] = {.lex_state = 72, .external_lex_state = 2}, + [1849] = {.lex_state = 72}, + [1850] = {.lex_state = 72, .external_lex_state = 2}, + [1851] = {.lex_state = 72, .external_lex_state = 2}, + [1852] = {.lex_state = 72}, + [1853] = {.lex_state = 21}, + [1854] = {.lex_state = 72}, + [1855] = {.lex_state = 72, .external_lex_state = 2}, + [1856] = {.lex_state = 5, .external_lex_state = 11}, + [1857] = {.lex_state = 72, .external_lex_state = 2}, + [1858] = {.lex_state = 72}, + [1859] = {.lex_state = 72, .external_lex_state = 2}, + [1860] = {.lex_state = 72}, + [1861] = {.lex_state = 72}, + [1862] = {.lex_state = 72}, + [1863] = {.lex_state = 72}, + [1864] = {.lex_state = 72}, + [1865] = {.lex_state = 72}, + [1866] = {.lex_state = 72, .external_lex_state = 12}, + [1867] = {.lex_state = 72}, + [1868] = {.lex_state = 72}, + [1869] = {.lex_state = 72}, + [1870] = {.lex_state = 72}, + [1871] = {.lex_state = 72}, + [1872] = {.lex_state = 72}, + [1873] = {.lex_state = 72}, + [1874] = {.lex_state = 72}, + [1875] = {.lex_state = 72}, + [1876] = {.lex_state = 72}, + [1877] = {.lex_state = 72}, + [1878] = {.lex_state = 72}, + [1879] = {.lex_state = 72}, + [1880] = {.lex_state = 72}, + [1881] = {.lex_state = 72}, + [1882] = {.lex_state = 72}, + [1883] = {.lex_state = 72}, + [1884] = {.lex_state = 72}, + [1885] = {.lex_state = 72, .external_lex_state = 2}, + [1886] = {.lex_state = 72}, + [1887] = {.lex_state = 21}, + [1888] = {.lex_state = 72}, + [1889] = {.lex_state = 72}, + [1890] = {.lex_state = 72}, + [1891] = {.lex_state = 72}, + [1892] = {.lex_state = 72}, + [1893] = {.lex_state = 72}, + [1894] = {.lex_state = 72}, + [1895] = {.lex_state = 72}, + [1896] = {.lex_state = 72}, + [1897] = {.lex_state = 72}, + [1898] = {.lex_state = 72}, [1899] = {.lex_state = 72}, - [1900] = {.lex_state = 71}, - [1901] = {.lex_state = 71}, - [1902] = {.lex_state = 71}, - [1903] = {.lex_state = 71, .external_lex_state = 13}, - [1904] = {.lex_state = 71}, - [1905] = {.lex_state = 71}, - [1906] = {.lex_state = 71}, - [1907] = {.lex_state = 71}, - [1908] = {.lex_state = 71}, - [1909] = {.lex_state = 71}, - [1910] = {.lex_state = 71}, - [1911] = {.lex_state = 71}, - [1912] = {.lex_state = 71}, - [1913] = {.lex_state = 71}, - [1914] = {.lex_state = 71}, - [1915] = {.lex_state = 71}, - [1916] = {.lex_state = 71}, - [1917] = {.lex_state = 71}, - [1918] = {.lex_state = 71}, - [1919] = {.lex_state = 71}, - [1920] = {.lex_state = 71}, - [1921] = {.lex_state = 71}, - [1922] = {.lex_state = 71}, - [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 71, .external_lex_state = 2}, - [1925] = {.lex_state = 71}, - [1926] = {.lex_state = 71}, - [1927] = {.lex_state = 71}, - [1928] = {.lex_state = 71}, - [1929] = {.lex_state = 73}, - [1930] = {.lex_state = 71}, - [1931] = {.lex_state = 71}, - [1932] = {.lex_state = 71}, - [1933] = {.lex_state = 71}, - [1934] = {.lex_state = 71}, - [1935] = {.lex_state = 71}, - [1936] = {.lex_state = 71}, - [1937] = {.lex_state = 71}, - [1938] = {.lex_state = 71}, - [1939] = {.lex_state = 71}, - [1940] = {.lex_state = 71}, - [1941] = {.lex_state = 71}, - [1942] = {.lex_state = 71}, - [1943] = {.lex_state = 71}, - [1944] = {.lex_state = 71}, - [1945] = {.lex_state = 71}, - [1946] = {.lex_state = 71}, - [1947] = {.lex_state = 71, .external_lex_state = 2}, - [1948] = {.lex_state = 71, .external_lex_state = 2}, - [1949] = {.lex_state = 71}, - [1950] = {.lex_state = 71}, - [1951] = {.lex_state = 71}, - [1952] = {.lex_state = 71, .external_lex_state = 2}, - [1953] = {.lex_state = 71, .external_lex_state = 2}, - [1954] = {.lex_state = 71}, - [1955] = {.lex_state = 71}, - [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 73}, - [1958] = {.lex_state = 71}, - [1959] = {.lex_state = 73}, - [1960] = {.lex_state = 71}, - [1961] = {.lex_state = 71}, - [1962] = {.lex_state = 71}, - [1963] = {.lex_state = 71}, - [1964] = {.lex_state = 71}, - [1965] = {.lex_state = 71}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, - [1968] = {.lex_state = 71}, - [1969] = {.lex_state = 71, .external_lex_state = 2}, - [1970] = {.lex_state = 71}, - [1971] = {.lex_state = 71}, - [1972] = {.lex_state = 71}, - [1973] = {.lex_state = 71}, - [1974] = {.lex_state = 71}, - [1975] = {.lex_state = 71}, - [1976] = {.lex_state = 71}, - [1977] = {.lex_state = 71}, - [1978] = {.lex_state = 71}, - [1979] = {.lex_state = 71}, - [1980] = {.lex_state = 71}, - [1981] = {.lex_state = 71}, - [1982] = {.lex_state = 71}, - [1983] = {.lex_state = 71}, - [1984] = {.lex_state = 71}, - [1985] = {.lex_state = 71}, - [1986] = {.lex_state = 71}, - [1987] = {.lex_state = 71}, - [1988] = {.lex_state = 71}, - [1989] = {.lex_state = 71}, - [1990] = {.lex_state = 71}, - [1991] = {.lex_state = 71}, - [1992] = {.lex_state = 71}, - [1993] = {.lex_state = 71}, - [1994] = {.lex_state = 71}, - [1995] = {.lex_state = 71}, - [1996] = {.lex_state = 71}, - [1997] = {.lex_state = 71}, - [1998] = {.lex_state = 71}, - [1999] = {.lex_state = 71}, - [2000] = {.lex_state = 71}, - [2001] = {.lex_state = 71}, - [2002] = {.lex_state = 71}, - [2003] = {.lex_state = 71}, - [2004] = {.lex_state = 71}, - [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 71}, - [2007] = {.lex_state = 71}, - [2008] = {.lex_state = 71}, - [2009] = {.lex_state = 71}, - [2010] = {.lex_state = 71}, - [2011] = {.lex_state = 71}, - [2012] = {.lex_state = 71}, - [2013] = {.lex_state = 71}, - [2014] = {.lex_state = 71}, - [2015] = {.lex_state = 71}, - [2016] = {.lex_state = 71}, - [2017] = {.lex_state = 71}, - [2018] = {.lex_state = 71}, - [2019] = {.lex_state = 71}, - [2020] = {.lex_state = 71}, - [2021] = {.lex_state = 73}, - [2022] = {.lex_state = 71}, - [2023] = {.lex_state = 71}, - [2024] = {.lex_state = 71}, - [2025] = {.lex_state = 71}, - [2026] = {.lex_state = 71}, - [2027] = {.lex_state = 71}, - [2028] = {.lex_state = 71, .external_lex_state = 2}, - [2029] = {.lex_state = 71}, - [2030] = {.lex_state = 71}, - [2031] = {.lex_state = 71}, - [2032] = {.lex_state = 71}, - [2033] = {.lex_state = 71}, - [2034] = {.lex_state = 71}, - [2035] = {.lex_state = 71}, - [2036] = {.lex_state = 71}, - [2037] = {.lex_state = 71}, - [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 71}, - [2040] = {.lex_state = 71}, - [2041] = {.lex_state = 71}, - [2042] = {.lex_state = 71}, - [2043] = {.lex_state = 71}, - [2044] = {.lex_state = 71}, - [2045] = {.lex_state = 71}, - [2046] = {.lex_state = 71}, - [2047] = {.lex_state = 195, .external_lex_state = 14}, - [2048] = {.lex_state = 71}, - [2049] = {.lex_state = 71}, - [2050] = {.lex_state = 71}, - [2051] = {.lex_state = 71}, - [2052] = {.lex_state = 71}, - [2053] = {.lex_state = 71}, - [2054] = {.lex_state = 71}, - [2055] = {.lex_state = 71}, - [2056] = {.lex_state = 71}, - [2057] = {.lex_state = 71}, - [2058] = {.lex_state = 71}, - [2059] = {.lex_state = 71}, - [2060] = {.lex_state = 71}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 71}, - [2063] = {.lex_state = 71}, - [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 71}, - [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 71}, - [2068] = {.lex_state = 71}, - [2069] = {.lex_state = 71}, - [2070] = {.lex_state = 71}, - [2071] = {.lex_state = 71}, - [2072] = {.lex_state = 71}, - [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 71, .external_lex_state = 2}, - [2075] = {.lex_state = 71}, - [2076] = {.lex_state = 71}, - [2077] = {.lex_state = 71, .external_lex_state = 13}, - [2078] = {.lex_state = 71}, - [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 71}, - [2081] = {.lex_state = 71}, - [2082] = {.lex_state = 71}, - [2083] = {.lex_state = 71}, - [2084] = {.lex_state = 71}, - [2085] = {.lex_state = 71}, - [2086] = {.lex_state = 71}, - [2087] = {.lex_state = 71}, - [2088] = {.lex_state = 71}, - [2089] = {.lex_state = 71}, - [2090] = {.lex_state = 71, .external_lex_state = 2}, - [2091] = {.lex_state = 71, .external_lex_state = 2}, - [2092] = {.lex_state = 71}, - [2093] = {.lex_state = 71}, - [2094] = {.lex_state = 71}, - [2095] = {.lex_state = 71}, - [2096] = {.lex_state = 71}, - [2097] = {.lex_state = 71}, - [2098] = {.lex_state = 71}, - [2099] = {.lex_state = 71}, - [2100] = {.lex_state = 71}, - [2101] = {.lex_state = 71}, - [2102] = {.lex_state = 71}, - [2103] = {.lex_state = 71}, - [2104] = {.lex_state = 71}, - [2105] = {.lex_state = 71}, - [2106] = {.lex_state = 71}, - [2107] = {.lex_state = 71}, - [2108] = {.lex_state = 71}, - [2109] = {.lex_state = 71}, - [2110] = {.lex_state = 71}, - [2111] = {.lex_state = 71}, - [2112] = {.lex_state = 71}, - [2113] = {.lex_state = 71}, - [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 71, .external_lex_state = 2}, - [2116] = {.lex_state = 71}, - [2117] = {.lex_state = 71}, - [2118] = {.lex_state = 71}, - [2119] = {.lex_state = 71}, - [2120] = {.lex_state = 71}, - [2121] = {.lex_state = 71}, - [2122] = {.lex_state = 71}, - [2123] = {.lex_state = 71, .external_lex_state = 2}, - [2124] = {.lex_state = 71}, - [2125] = {.lex_state = 71}, - [2126] = {.lex_state = 71}, - [2127] = {.lex_state = 71}, - [2128] = {.lex_state = 71, .external_lex_state = 2}, - [2129] = {.lex_state = 71}, - [2130] = {.lex_state = 71}, - [2131] = {.lex_state = 71}, - [2132] = {.lex_state = 71, .external_lex_state = 2}, - [2133] = {.lex_state = 71}, - [2134] = {.lex_state = 71}, - [2135] = {.lex_state = 71}, - [2136] = {.lex_state = 71}, - [2137] = {.lex_state = 71}, - [2138] = {.lex_state = 71}, - [2139] = {.lex_state = 71}, - [2140] = {.lex_state = 71}, - [2141] = {.lex_state = 71, .external_lex_state = 2}, - [2142] = {.lex_state = 71}, - [2143] = {.lex_state = 71}, - [2144] = {.lex_state = 71}, - [2145] = {.lex_state = 71}, - [2146] = {.lex_state = 71}, - [2147] = {.lex_state = 71}, - [2148] = {.lex_state = 5, .external_lex_state = 11}, - [2149] = {.lex_state = 71}, - [2150] = {.lex_state = 71}, - [2151] = {.lex_state = 71}, - [2152] = {.lex_state = 71}, - [2153] = {.lex_state = 71}, - [2154] = {.lex_state = 71}, - [2155] = {.lex_state = 71}, - [2156] = {.lex_state = 71, .external_lex_state = 2}, - [2157] = {.lex_state = 71}, - [2158] = {.lex_state = 71}, - [2159] = {.lex_state = 71, .external_lex_state = 2}, - [2160] = {.lex_state = 71}, - [2161] = {.lex_state = 73}, - [2162] = {.lex_state = 71, .external_lex_state = 2}, - [2163] = {.lex_state = 71, .external_lex_state = 2}, - [2164] = {.lex_state = 73, .external_lex_state = 10}, - [2165] = {.lex_state = 71}, - [2166] = {.lex_state = 71}, - [2167] = {.lex_state = 71, .external_lex_state = 2}, - [2168] = {.lex_state = 71}, - [2169] = {.lex_state = 71}, - [2170] = {.lex_state = 71}, - [2171] = {.lex_state = 71}, - [2172] = {.lex_state = 71}, - [2173] = {.lex_state = 71}, - [2174] = {.lex_state = 71}, - [2175] = {.lex_state = 71}, - [2176] = {.lex_state = 71, .external_lex_state = 2}, - [2177] = {.lex_state = 71}, - [2178] = {.lex_state = 71}, - [2179] = {.lex_state = 71}, - [2180] = {.lex_state = 71}, - [2181] = {.lex_state = 71}, - [2182] = {.lex_state = 71}, - [2183] = {.lex_state = 71}, - [2184] = {.lex_state = 71}, - [2185] = {.lex_state = 71}, - [2186] = {.lex_state = 71}, - [2187] = {.lex_state = 71}, - [2188] = {.lex_state = 71}, - [2189] = {.lex_state = 71}, - [2190] = {.lex_state = 71}, - [2191] = {.lex_state = 71}, - [2192] = {.lex_state = 71}, - [2193] = {.lex_state = 71}, - [2194] = {.lex_state = 71}, - [2195] = {.lex_state = 71}, - [2196] = {.lex_state = 71}, - [2197] = {.lex_state = 23}, - [2198] = {.lex_state = 71}, - [2199] = {.lex_state = 71, .external_lex_state = 2}, - [2200] = {.lex_state = 71, .external_lex_state = 2}, - [2201] = {.lex_state = 71}, - [2202] = {.lex_state = 71}, - [2203] = {.lex_state = 71, .external_lex_state = 2}, - [2204] = {.lex_state = 71}, - [2205] = {.lex_state = 71, .external_lex_state = 2}, - [2206] = {.lex_state = 71}, - [2207] = {.lex_state = 71, .external_lex_state = 2}, - [2208] = {.lex_state = 71}, - [2209] = {.lex_state = 71}, - [2210] = {.lex_state = 71, .external_lex_state = 2}, - [2211] = {.lex_state = 71}, - [2212] = {.lex_state = 71, .external_lex_state = 2}, - [2213] = {.lex_state = 71}, - [2214] = {.lex_state = 71}, - [2215] = {.lex_state = 71}, - [2216] = {.lex_state = 71}, - [2217] = {.lex_state = 71, .external_lex_state = 2}, - [2218] = {.lex_state = 71, .external_lex_state = 2}, - [2219] = {.lex_state = 71, .external_lex_state = 2}, - [2220] = {.lex_state = 71}, - [2221] = {.lex_state = 71}, - [2222] = {.lex_state = 71}, - [2223] = {.lex_state = 71, .external_lex_state = 2}, - [2224] = {.lex_state = 71}, - [2225] = {.lex_state = 71}, - [2226] = {.lex_state = 71}, - [2227] = {.lex_state = 71}, - [2228] = {.lex_state = 71}, - [2229] = {.lex_state = 71, .external_lex_state = 2}, - [2230] = {.lex_state = 71}, - [2231] = {.lex_state = 71}, - [2232] = {.lex_state = 71}, - [2233] = {.lex_state = 71, .external_lex_state = 2}, - [2234] = {.lex_state = 71, .external_lex_state = 2}, - [2235] = {.lex_state = 71}, - [2236] = {.lex_state = 71}, - [2237] = {.lex_state = 71}, - [2238] = {.lex_state = 71}, - [2239] = {.lex_state = 71}, - [2240] = {.lex_state = 71}, - [2241] = {.lex_state = 71}, - [2242] = {.lex_state = 71}, - [2243] = {.lex_state = 71}, - [2244] = {.lex_state = 71}, - [2245] = {.lex_state = 71}, - [2246] = {.lex_state = 71, .external_lex_state = 2}, - [2247] = {.lex_state = 71}, - [2248] = {.lex_state = 71}, - [2249] = {.lex_state = 71}, - [2250] = {.lex_state = 71}, - [2251] = {.lex_state = 71}, - [2252] = {.lex_state = 71}, - [2253] = {.lex_state = 71}, - [2254] = {.lex_state = 71}, - [2255] = {.lex_state = 71, .external_lex_state = 2}, - [2256] = {.lex_state = 71}, - [2257] = {.lex_state = 71}, - [2258] = {.lex_state = 71}, - [2259] = {.lex_state = 71}, - [2260] = {.lex_state = 71}, - [2261] = {.lex_state = 71}, - [2262] = {.lex_state = 71}, - [2263] = {.lex_state = 71}, - [2264] = {.lex_state = 71}, - [2265] = {.lex_state = 71}, - [2266] = {.lex_state = 71}, - [2267] = {.lex_state = 71}, - [2268] = {.lex_state = 71}, - [2269] = {.lex_state = 71}, - [2270] = {.lex_state = 71, .external_lex_state = 2}, - [2271] = {.lex_state = 71}, - [2272] = {.lex_state = 71}, - [2273] = {.lex_state = 71}, - [2274] = {.lex_state = 71}, - [2275] = {.lex_state = 71}, - [2276] = {.lex_state = 71}, - [2277] = {.lex_state = 71, .external_lex_state = 2}, - [2278] = {.lex_state = 71}, - [2279] = {.lex_state = 71, .external_lex_state = 2}, - [2280] = {.lex_state = 71, .external_lex_state = 2}, - [2281] = {.lex_state = 71, .external_lex_state = 2}, - [2282] = {.lex_state = 71}, - [2283] = {.lex_state = 71}, - [2284] = {.lex_state = 71}, - [2285] = {.lex_state = 71}, - [2286] = {.lex_state = 71}, - [2287] = {.lex_state = 71}, - [2288] = {.lex_state = 71}, - [2289] = {.lex_state = 71}, - [2290] = {.lex_state = 71, .external_lex_state = 2}, - [2291] = {.lex_state = 71, .external_lex_state = 2}, - [2292] = {.lex_state = 71, .external_lex_state = 2}, - [2293] = {.lex_state = 71}, - [2294] = {.lex_state = 71}, - [2295] = {.lex_state = 71}, - [2296] = {.lex_state = 71, .external_lex_state = 2}, - [2297] = {.lex_state = 71}, - [2298] = {.lex_state = 71}, - [2299] = {.lex_state = 71}, - [2300] = {.lex_state = 71}, - [2301] = {.lex_state = 71, .external_lex_state = 2}, - [2302] = {.lex_state = 71, .external_lex_state = 2}, - [2303] = {.lex_state = 71}, - [2304] = {.lex_state = 71}, - [2305] = {.lex_state = 71}, - [2306] = {.lex_state = 71, .external_lex_state = 2}, - [2307] = {.lex_state = 71, .external_lex_state = 2}, - [2308] = {.lex_state = 71}, - [2309] = {.lex_state = 71}, - [2310] = {.lex_state = 71}, - [2311] = {.lex_state = 71}, - [2312] = {.lex_state = 71}, - [2313] = {.lex_state = 71}, - [2314] = {.lex_state = 71}, - [2315] = {.lex_state = 71}, - [2316] = {.lex_state = 71}, - [2317] = {.lex_state = 71}, - [2318] = {.lex_state = 71}, - [2319] = {.lex_state = 71}, - [2320] = {.lex_state = 71}, - [2321] = {.lex_state = 71}, - [2322] = {.lex_state = 71}, - [2323] = {.lex_state = 71}, - [2324] = {.lex_state = 71}, - [2325] = {.lex_state = 71}, - [2326] = {.lex_state = 71}, - [2327] = {.lex_state = 71, .external_lex_state = 2}, - [2328] = {.lex_state = 71}, - [2329] = {.lex_state = 71, .external_lex_state = 2}, - [2330] = {.lex_state = 71}, - [2331] = {.lex_state = 71}, - [2332] = {.lex_state = 71}, - [2333] = {.lex_state = 71}, - [2334] = {.lex_state = 71, .external_lex_state = 2}, - [2335] = {.lex_state = 71}, - [2336] = {.lex_state = 71, .external_lex_state = 2}, - [2337] = {.lex_state = 71}, - [2338] = {.lex_state = 71}, - [2339] = {.lex_state = 71}, - [2340] = {.lex_state = 71}, - [2341] = {.lex_state = 71, .external_lex_state = 2}, - [2342] = {.lex_state = 71}, - [2343] = {.lex_state = 71}, - [2344] = {.lex_state = 71}, - [2345] = {.lex_state = 71, .external_lex_state = 2}, - [2346] = {.lex_state = 71}, - [2347] = {.lex_state = 71}, - [2348] = {.lex_state = 71, .external_lex_state = 2}, - [2349] = {.lex_state = 71}, - [2350] = {.lex_state = 71}, - [2351] = {.lex_state = 71, .external_lex_state = 2}, - [2352] = {.lex_state = 71}, - [2353] = {.lex_state = 71}, - [2354] = {.lex_state = 71}, - [2355] = {.lex_state = 71}, - [2356] = {.lex_state = 71}, - [2357] = {.lex_state = 71}, - [2358] = {.lex_state = 71}, - [2359] = {.lex_state = 71, .external_lex_state = 2}, - [2360] = {.lex_state = 71}, - [2361] = {.lex_state = 71}, - [2362] = {.lex_state = 71}, - [2363] = {.lex_state = 71}, - [2364] = {.lex_state = 71}, - [2365] = {.lex_state = 71}, - [2366] = {.lex_state = 71, .external_lex_state = 2}, - [2367] = {.lex_state = 71}, - [2368] = {.lex_state = 71}, - [2369] = {.lex_state = 71}, - [2370] = {.lex_state = 71}, - [2371] = {.lex_state = 71}, - [2372] = {.lex_state = 71}, - [2373] = {.lex_state = 71}, - [2374] = {.lex_state = 71}, - [2375] = {.lex_state = 71}, - [2376] = {.lex_state = 71}, - [2377] = {.lex_state = 71}, - [2378] = {.lex_state = 71}, - [2379] = {.lex_state = 71, .external_lex_state = 2}, - [2380] = {.lex_state = 71, .external_lex_state = 2}, - [2381] = {.lex_state = 71}, - [2382] = {.lex_state = 71}, - [2383] = {.lex_state = 71}, - [2384] = {.lex_state = 71}, - [2385] = {.lex_state = 71}, - [2386] = {.lex_state = 71}, - [2387] = {.lex_state = 71, .external_lex_state = 2}, - [2388] = {.lex_state = 71, .external_lex_state = 2}, - [2389] = {.lex_state = 71, .external_lex_state = 2}, - [2390] = {.lex_state = 71, .external_lex_state = 2}, - [2391] = {.lex_state = 71}, - [2392] = {.lex_state = 71}, - [2393] = {.lex_state = 71}, - [2394] = {.lex_state = 71}, - [2395] = {.lex_state = 71}, - [2396] = {.lex_state = 71}, - [2397] = {.lex_state = 71}, - [2398] = {.lex_state = 71, .external_lex_state = 2}, - [2399] = {.lex_state = 71}, - [2400] = {.lex_state = 71}, - [2401] = {.lex_state = 23}, - [2402] = {.lex_state = 71}, - [2403] = {.lex_state = 71}, - [2404] = {.lex_state = 71}, - [2405] = {.lex_state = 71}, - [2406] = {.lex_state = 71}, - [2407] = {.lex_state = 71, .external_lex_state = 2}, - [2408] = {.lex_state = 71}, - [2409] = {.lex_state = 71}, - [2410] = {.lex_state = 71}, - [2411] = {.lex_state = 195, .external_lex_state = 14}, - [2412] = {.lex_state = 71}, - [2413] = {.lex_state = 71}, - [2414] = {.lex_state = 71}, - [2415] = {.lex_state = 71, .external_lex_state = 2}, - [2416] = {.lex_state = 71, .external_lex_state = 2}, - [2417] = {.lex_state = 71}, - [2418] = {.lex_state = 71}, - [2419] = {.lex_state = 71, .external_lex_state = 2}, - [2420] = {.lex_state = 71, .external_lex_state = 2}, - [2421] = {.lex_state = 71}, - [2422] = {.lex_state = 71}, - [2423] = {.lex_state = 71}, - [2424] = {.lex_state = 71}, - [2425] = {.lex_state = 71}, - [2426] = {.lex_state = 71}, - [2427] = {.lex_state = 71}, - [2428] = {.lex_state = 71}, - [2429] = {.lex_state = 71}, - [2430] = {.lex_state = 71}, - [2431] = {.lex_state = 71}, - [2432] = {.lex_state = 71}, - [2433] = {.lex_state = 71}, - [2434] = {.lex_state = 71}, - [2435] = {.lex_state = 71}, - [2436] = {.lex_state = 71}, - [2437] = {.lex_state = 71}, - [2438] = {.lex_state = 71, .external_lex_state = 11}, - [2439] = {.lex_state = 71}, - [2440] = {.lex_state = 71}, - [2441] = {.lex_state = 71}, - [2442] = {.lex_state = 71}, - [2443] = {.lex_state = 71}, - [2444] = {.lex_state = 71}, - [2445] = {.lex_state = 71}, - [2446] = {.lex_state = 71}, - [2447] = {.lex_state = 71}, - [2448] = {.lex_state = 71}, - [2449] = {.lex_state = 71}, - [2450] = {.lex_state = 71}, - [2451] = {.lex_state = 71}, - [2452] = {.lex_state = 71}, - [2453] = {.lex_state = 71}, - [2454] = {.lex_state = 71}, - [2455] = {.lex_state = 71}, - [2456] = {.lex_state = 71, .external_lex_state = 11}, - [2457] = {.lex_state = 71}, - [2458] = {.lex_state = 71}, - [2459] = {.lex_state = 71}, - [2460] = {.lex_state = 71}, - [2461] = {.lex_state = 71}, - [2462] = {.lex_state = 71}, - [2463] = {.lex_state = 71}, - [2464] = {.lex_state = 71}, - [2465] = {.lex_state = 71}, - [2466] = {.lex_state = 71}, - [2467] = {.lex_state = 71}, - [2468] = {.lex_state = 71, .external_lex_state = 11}, - [2469] = {.lex_state = 71, .external_lex_state = 11}, - [2470] = {.lex_state = 71}, - [2471] = {.lex_state = 71}, - [2472] = {.lex_state = 71}, - [2473] = {.lex_state = 71}, - [2474] = {.lex_state = 9}, - [2475] = {.lex_state = 9}, - [2476] = {.lex_state = 71}, - [2477] = {.lex_state = 71}, - [2478] = {.lex_state = 71}, - [2479] = {.lex_state = 71}, - [2480] = {.lex_state = 71}, - [2481] = {.lex_state = 71}, - [2482] = {.lex_state = 71}, - [2483] = {.lex_state = 71}, - [2484] = {.lex_state = 71}, - [2485] = {.lex_state = 71}, - [2486] = {.lex_state = 71}, - [2487] = {.lex_state = 71}, - [2488] = {.lex_state = 71}, - [2489] = {.lex_state = 71}, - [2490] = {.lex_state = 71}, - [2491] = {.lex_state = 71}, - [2492] = {.lex_state = 71}, - [2493] = {.lex_state = 71}, - [2494] = {.lex_state = 71}, - [2495] = {.lex_state = 71}, - [2496] = {.lex_state = 71}, - [2497] = {.lex_state = 71}, - [2498] = {.lex_state = 71}, - [2499] = {.lex_state = 71}, - [2500] = {.lex_state = 71}, - [2501] = {.lex_state = 71}, - [2502] = {.lex_state = 71}, - [2503] = {.lex_state = 71}, - [2504] = {.lex_state = 71}, - [2505] = {.lex_state = 9}, - [2506] = {.lex_state = 71}, - [2507] = {.lex_state = 71}, - [2508] = {.lex_state = 71}, - [2509] = {.lex_state = 71}, - [2510] = {.lex_state = 9}, - [2511] = {.lex_state = 71}, - [2512] = {.lex_state = 71}, - [2513] = {.lex_state = 71}, - [2514] = {.lex_state = 71}, - [2515] = {.lex_state = 71}, - [2516] = {.lex_state = 71}, - [2517] = {.lex_state = 71}, - [2518] = {.lex_state = 71}, - [2519] = {.lex_state = 71}, - [2520] = {.lex_state = 71}, - [2521] = {.lex_state = 71}, - [2522] = {.lex_state = 71}, - [2523] = {.lex_state = 71}, - [2524] = {.lex_state = 71}, - [2525] = {.lex_state = 71}, - [2526] = {.lex_state = 71}, - [2527] = {.lex_state = 71}, - [2528] = {.lex_state = 71}, - [2529] = {.lex_state = 71}, - [2530] = {.lex_state = 71}, - [2531] = {.lex_state = 71}, - [2532] = {.lex_state = 71}, - [2533] = {.lex_state = 71}, - [2534] = {.lex_state = 71}, - [2535] = {.lex_state = 71}, - [2536] = {.lex_state = 71}, - [2537] = {.lex_state = 71}, - [2538] = {.lex_state = 71}, - [2539] = {.lex_state = 71}, - [2540] = {.lex_state = 71}, - [2541] = {.lex_state = 71}, - [2542] = {.lex_state = 71}, - [2543] = {.lex_state = 71}, - [2544] = {.lex_state = 71}, - [2545] = {.lex_state = 71}, - [2546] = {.lex_state = 71, .external_lex_state = 13}, - [2547] = {.lex_state = 71, .external_lex_state = 13}, - [2548] = {.lex_state = 71}, - [2549] = {.lex_state = 71}, - [2550] = {.lex_state = 71}, - [2551] = {.lex_state = 71}, - [2552] = {.lex_state = 71}, - [2553] = {.lex_state = 71}, - [2554] = {.lex_state = 71}, - [2555] = {.lex_state = 71}, - [2556] = {.lex_state = 71}, - [2557] = {.lex_state = 71, .external_lex_state = 13}, - [2558] = {.lex_state = 71, .external_lex_state = 13}, - [2559] = {.lex_state = 71}, - [2560] = {.lex_state = 71}, - [2561] = {.lex_state = 71}, - [2562] = {.lex_state = 71}, - [2563] = {.lex_state = 71}, - [2564] = {.lex_state = 71}, - [2565] = {.lex_state = 71}, - [2566] = {.lex_state = 71}, - [2567] = {.lex_state = 71}, - [2568] = {.lex_state = 71}, - [2569] = {.lex_state = 71}, - [2570] = {.lex_state = 71}, - [2571] = {.lex_state = 71}, - [2572] = {.lex_state = 71}, - [2573] = {.lex_state = 71}, - [2574] = {.lex_state = 71}, - [2575] = {.lex_state = 71}, - [2576] = {.lex_state = 71}, - [2577] = {.lex_state = 71}, - [2578] = {.lex_state = 71}, - [2579] = {.lex_state = 71}, - [2580] = {.lex_state = 71}, - [2581] = {.lex_state = 71}, - [2582] = {.lex_state = 71}, - [2583] = {.lex_state = 71}, - [2584] = {.lex_state = 71}, - [2585] = {.lex_state = 71, .external_lex_state = 11}, - [2586] = {.lex_state = 71}, - [2587] = {.lex_state = 71}, - [2588] = {.lex_state = 71}, - [2589] = {.lex_state = 71}, - [2590] = {.lex_state = 71}, - [2591] = {.lex_state = 71}, - [2592] = {.lex_state = 71}, - [2593] = {.lex_state = 71}, - [2594] = {.lex_state = 71}, - [2595] = {.lex_state = 71}, - [2596] = {.lex_state = 71}, - [2597] = {.lex_state = 71}, - [2598] = {.lex_state = 71}, - [2599] = {.lex_state = 71}, - [2600] = {.lex_state = 71}, - [2601] = {.lex_state = 71}, - [2602] = {.lex_state = 71}, - [2603] = {.lex_state = 71}, - [2604] = {.lex_state = 71}, - [2605] = {.lex_state = 71}, - [2606] = {.lex_state = 71}, - [2607] = {.lex_state = 71}, - [2608] = {.lex_state = 71}, - [2609] = {.lex_state = 71}, - [2610] = {.lex_state = 71}, - [2611] = {.lex_state = 71}, - [2612] = {.lex_state = 71}, - [2613] = {.lex_state = 71}, - [2614] = {.lex_state = 71}, - [2615] = {.lex_state = 71}, - [2616] = {.lex_state = 71}, - [2617] = {.lex_state = 71}, - [2618] = {.lex_state = 71}, - [2619] = {.lex_state = 71}, - [2620] = {.lex_state = 71, .external_lex_state = 11}, - [2621] = {.lex_state = 71, .external_lex_state = 11}, - [2622] = {.lex_state = 71}, - [2623] = {.lex_state = 71}, - [2624] = {.lex_state = 71}, - [2625] = {.lex_state = 71}, - [2626] = {.lex_state = 71}, - [2627] = {.lex_state = 71}, - [2628] = {.lex_state = 71}, - [2629] = {.lex_state = 71}, - [2630] = {.lex_state = 71}, - [2631] = {.lex_state = 71}, - [2632] = {.lex_state = 71}, - [2633] = {.lex_state = 71}, - [2634] = {.lex_state = 71}, - [2635] = {.lex_state = 71}, - [2636] = {.lex_state = 71}, - [2637] = {.lex_state = 71}, - [2638] = {.lex_state = 71}, - [2639] = {.lex_state = 71}, - [2640] = {.lex_state = 71}, - [2641] = {.lex_state = 71}, - [2642] = {.lex_state = 71}, - [2643] = {.lex_state = 71}, - [2644] = {.lex_state = 71}, - [2645] = {.lex_state = 71}, - [2646] = {.lex_state = 71}, - [2647] = {.lex_state = 71}, - [2648] = {.lex_state = 71}, - [2649] = {.lex_state = 71}, - [2650] = {.lex_state = 71}, - [2651] = {.lex_state = 71}, - [2652] = {.lex_state = 71}, - [2653] = {.lex_state = 71}, - [2654] = {.lex_state = 71}, - [2655] = {.lex_state = 71}, - [2656] = {(TSStateId)(-1)}, - [2657] = {(TSStateId)(-1)}, + [1900] = {.lex_state = 72}, + [1901] = {.lex_state = 72}, + [1902] = {.lex_state = 72}, + [1903] = {.lex_state = 72}, + [1904] = {.lex_state = 72}, + [1905] = {.lex_state = 72}, + [1906] = {.lex_state = 72}, + [1907] = {.lex_state = 72}, + [1908] = {.lex_state = 72}, + [1909] = {.lex_state = 72, .external_lex_state = 2}, + [1910] = {.lex_state = 72, .external_lex_state = 2}, + [1911] = {.lex_state = 72}, + [1912] = {.lex_state = 72}, + [1913] = {.lex_state = 72, .external_lex_state = 2}, + [1914] = {.lex_state = 72, .external_lex_state = 2}, + [1915] = {.lex_state = 72}, + [1916] = {.lex_state = 72}, + [1917] = {.lex_state = 21}, + [1918] = {.lex_state = 72}, + [1919] = {.lex_state = 21}, + [1920] = {.lex_state = 72}, + [1921] = {.lex_state = 72}, + [1922] = {.lex_state = 72}, + [1923] = {.lex_state = 72, .external_lex_state = 2}, + [1924] = {.lex_state = 72}, + [1925] = {.lex_state = 72}, + [1926] = {.lex_state = 72}, + [1927] = {.lex_state = 72}, + [1928] = {.lex_state = 72}, + [1929] = {.lex_state = 72}, + [1930] = {.lex_state = 72}, + [1931] = {.lex_state = 72}, + [1932] = {.lex_state = 72}, + [1933] = {.lex_state = 72}, + [1934] = {.lex_state = 72}, + [1935] = {.lex_state = 72}, + [1936] = {.lex_state = 72}, + [1937] = {.lex_state = 72}, + [1938] = {.lex_state = 72}, + [1939] = {.lex_state = 72}, + [1940] = {.lex_state = 72}, + [1941] = {.lex_state = 72}, + [1942] = {.lex_state = 72}, + [1943] = {.lex_state = 72}, + [1944] = {.lex_state = 72}, + [1945] = {.lex_state = 72}, + [1946] = {.lex_state = 72}, + [1947] = {.lex_state = 72}, + [1948] = {.lex_state = 72}, + [1949] = {.lex_state = 72}, + [1950] = {.lex_state = 72}, + [1951] = {.lex_state = 72}, + [1952] = {.lex_state = 72}, + [1953] = {.lex_state = 72}, + [1954] = {.lex_state = 72}, + [1955] = {.lex_state = 72}, + [1956] = {.lex_state = 72}, + [1957] = {.lex_state = 72}, + [1958] = {.lex_state = 72}, + [1959] = {.lex_state = 72}, + [1960] = {.lex_state = 72}, + [1961] = {.lex_state = 72}, + [1962] = {.lex_state = 72}, + [1963] = {.lex_state = 72}, + [1964] = {.lex_state = 72}, + [1965] = {.lex_state = 72}, + [1966] = {.lex_state = 72}, + [1967] = {.lex_state = 72}, + [1968] = {.lex_state = 72}, + [1969] = {.lex_state = 72}, + [1970] = {.lex_state = 72}, + [1971] = {.lex_state = 72}, + [1972] = {.lex_state = 72}, + [1973] = {.lex_state = 72}, + [1974] = {.lex_state = 72}, + [1975] = {.lex_state = 72}, + [1976] = {.lex_state = 72}, + [1977] = {.lex_state = 72}, + [1978] = {.lex_state = 21}, + [1979] = {.lex_state = 72}, + [1980] = {.lex_state = 72}, + [1981] = {.lex_state = 72}, + [1982] = {.lex_state = 72}, + [1983] = {.lex_state = 72, .external_lex_state = 2}, + [1984] = {.lex_state = 72}, + [1985] = {.lex_state = 72}, + [1986] = {.lex_state = 72}, + [1987] = {.lex_state = 72}, + [1988] = {.lex_state = 72}, + [1989] = {.lex_state = 72}, + [1990] = {.lex_state = 72}, + [1991] = {.lex_state = 72}, + [1992] = {.lex_state = 72}, + [1993] = {.lex_state = 72}, + [1994] = {.lex_state = 72}, + [1995] = {.lex_state = 72}, + [1996] = {.lex_state = 72}, + [1997] = {.lex_state = 72}, + [1998] = {.lex_state = 72}, + [1999] = {.lex_state = 72}, + [2000] = {.lex_state = 72}, + [2001] = {.lex_state = 72}, + [2002] = {.lex_state = 181, .external_lex_state = 13}, + [2003] = {.lex_state = 72}, + [2004] = {.lex_state = 72}, + [2005] = {.lex_state = 72}, + [2006] = {.lex_state = 72}, + [2007] = {.lex_state = 72}, + [2008] = {.lex_state = 72}, + [2009] = {.lex_state = 72}, + [2010] = {.lex_state = 72}, + [2011] = {.lex_state = 72}, + [2012] = {.lex_state = 72}, + [2013] = {.lex_state = 72}, + [2014] = {.lex_state = 72}, + [2015] = {.lex_state = 72}, + [2016] = {.lex_state = 72}, + [2017] = {.lex_state = 72}, + [2018] = {.lex_state = 72}, + [2019] = {.lex_state = 72}, + [2020] = {.lex_state = 72}, + [2021] = {.lex_state = 72}, + [2022] = {.lex_state = 72}, + [2023] = {.lex_state = 72}, + [2024] = {.lex_state = 72}, + [2025] = {.lex_state = 72}, + [2026] = {.lex_state = 72}, + [2027] = {.lex_state = 72}, + [2028] = {.lex_state = 72}, + [2029] = {.lex_state = 72}, + [2030] = {.lex_state = 72}, + [2031] = {.lex_state = 72}, + [2032] = {.lex_state = 72}, + [2033] = {.lex_state = 72}, + [2034] = {.lex_state = 72}, + [2035] = {.lex_state = 72}, + [2036] = {.lex_state = 72}, + [2037] = {.lex_state = 72}, + [2038] = {.lex_state = 72, .external_lex_state = 2}, + [2039] = {.lex_state = 72}, + [2040] = {.lex_state = 72}, + [2041] = {.lex_state = 72}, + [2042] = {.lex_state = 72}, + [2043] = {.lex_state = 72}, + [2044] = {.lex_state = 72}, + [2045] = {.lex_state = 72}, + [2046] = {.lex_state = 72}, + [2047] = {.lex_state = 72}, + [2048] = {.lex_state = 72, .external_lex_state = 12}, + [2049] = {.lex_state = 72}, + [2050] = {.lex_state = 72}, + [2051] = {.lex_state = 72}, + [2052] = {.lex_state = 72}, + [2053] = {.lex_state = 72}, + [2054] = {.lex_state = 72, .external_lex_state = 2}, + [2055] = {.lex_state = 72, .external_lex_state = 2}, + [2056] = {.lex_state = 72}, + [2057] = {.lex_state = 72}, + [2058] = {.lex_state = 72}, + [2059] = {.lex_state = 72}, + [2060] = {.lex_state = 72}, + [2061] = {.lex_state = 72}, + [2062] = {.lex_state = 72}, + [2063] = {.lex_state = 72}, + [2064] = {.lex_state = 72}, + [2065] = {.lex_state = 72}, + [2066] = {.lex_state = 72}, + [2067] = {.lex_state = 72}, + [2068] = {.lex_state = 72}, + [2069] = {.lex_state = 72}, + [2070] = {.lex_state = 72}, + [2071] = {.lex_state = 72}, + [2072] = {.lex_state = 72}, + [2073] = {.lex_state = 72}, + [2074] = {.lex_state = 72}, + [2075] = {.lex_state = 72, .external_lex_state = 2}, + [2076] = {.lex_state = 72}, + [2077] = {.lex_state = 72}, + [2078] = {.lex_state = 72}, + [2079] = {.lex_state = 72}, + [2080] = {.lex_state = 72}, + [2081] = {.lex_state = 72}, + [2082] = {.lex_state = 72}, + [2083] = {.lex_state = 72}, + [2084] = {.lex_state = 72}, + [2085] = {.lex_state = 72}, + [2086] = {.lex_state = 72}, + [2087] = {.lex_state = 72}, + [2088] = {.lex_state = 72}, + [2089] = {.lex_state = 72}, + [2090] = {.lex_state = 72, .external_lex_state = 2}, + [2091] = {.lex_state = 72, .external_lex_state = 2}, + [2092] = {.lex_state = 72}, + [2093] = {.lex_state = 72}, + [2094] = {.lex_state = 72}, + [2095] = {.lex_state = 72, .external_lex_state = 2}, + [2096] = {.lex_state = 72}, + [2097] = {.lex_state = 72}, + [2098] = {.lex_state = 72}, + [2099] = {.lex_state = 72}, + [2100] = {.lex_state = 72, .external_lex_state = 2}, + [2101] = {.lex_state = 72}, + [2102] = {.lex_state = 72}, + [2103] = {.lex_state = 72}, + [2104] = {.lex_state = 72}, + [2105] = {.lex_state = 72}, + [2106] = {.lex_state = 72}, + [2107] = {.lex_state = 72}, + [2108] = {.lex_state = 72}, + [2109] = {.lex_state = 5, .external_lex_state = 11}, + [2110] = {.lex_state = 72}, + [2111] = {.lex_state = 72}, + [2112] = {.lex_state = 72}, + [2113] = {.lex_state = 72}, + [2114] = {.lex_state = 72}, + [2115] = {.lex_state = 72}, + [2116] = {.lex_state = 72}, + [2117] = {.lex_state = 72, .external_lex_state = 2}, + [2118] = {.lex_state = 72}, + [2119] = {.lex_state = 72}, + [2120] = {.lex_state = 72}, + [2121] = {.lex_state = 72, .external_lex_state = 2}, + [2122] = {.lex_state = 72, .external_lex_state = 2}, + [2123] = {.lex_state = 72, .external_lex_state = 2}, + [2124] = {.lex_state = 72}, + [2125] = {.lex_state = 72}, + [2126] = {.lex_state = 72, .external_lex_state = 2}, + [2127] = {.lex_state = 72, .external_lex_state = 2}, + [2128] = {.lex_state = 72}, + [2129] = {.lex_state = 72}, + [2130] = {.lex_state = 72}, + [2131] = {.lex_state = 72}, + [2132] = {.lex_state = 72}, + [2133] = {.lex_state = 72}, + [2134] = {.lex_state = 72}, + [2135] = {.lex_state = 72, .external_lex_state = 2}, + [2136] = {.lex_state = 72}, + [2137] = {.lex_state = 72}, + [2138] = {.lex_state = 72}, + [2139] = {.lex_state = 72}, + [2140] = {.lex_state = 72}, + [2141] = {.lex_state = 72}, + [2142] = {.lex_state = 72}, + [2143] = {.lex_state = 72}, + [2144] = {.lex_state = 72}, + [2145] = {.lex_state = 72}, + [2146] = {.lex_state = 72}, + [2147] = {.lex_state = 72}, + [2148] = {.lex_state = 72}, + [2149] = {.lex_state = 72}, + [2150] = {.lex_state = 72}, + [2151] = {.lex_state = 72}, + [2152] = {.lex_state = 23}, + [2153] = {.lex_state = 72}, + [2154] = {.lex_state = 72}, + [2155] = {.lex_state = 72}, + [2156] = {.lex_state = 72}, + [2157] = {.lex_state = 72}, + [2158] = {.lex_state = 72}, + [2159] = {.lex_state = 72}, + [2160] = {.lex_state = 72, .external_lex_state = 2}, + [2161] = {.lex_state = 72, .external_lex_state = 2}, + [2162] = {.lex_state = 72}, + [2163] = {.lex_state = 72}, + [2164] = {.lex_state = 72}, + [2165] = {.lex_state = 72}, + [2166] = {.lex_state = 72, .external_lex_state = 2}, + [2167] = {.lex_state = 72}, + [2168] = {.lex_state = 72}, + [2169] = {.lex_state = 72, .external_lex_state = 2}, + [2170] = {.lex_state = 72}, + [2171] = {.lex_state = 72, .external_lex_state = 2}, + [2172] = {.lex_state = 72}, + [2173] = {.lex_state = 72, .external_lex_state = 2}, + [2174] = {.lex_state = 72}, + [2175] = {.lex_state = 72}, + [2176] = {.lex_state = 72}, + [2177] = {.lex_state = 72, .external_lex_state = 2}, + [2178] = {.lex_state = 72, .external_lex_state = 2}, + [2179] = {.lex_state = 72}, + [2180] = {.lex_state = 72, .external_lex_state = 2}, + [2181] = {.lex_state = 72, .external_lex_state = 2}, + [2182] = {.lex_state = 72, .external_lex_state = 2}, + [2183] = {.lex_state = 72}, + [2184] = {.lex_state = 72, .external_lex_state = 2}, + [2185] = {.lex_state = 72, .external_lex_state = 2}, + [2186] = {.lex_state = 72}, + [2187] = {.lex_state = 72}, + [2188] = {.lex_state = 72}, + [2189] = {.lex_state = 72}, + [2190] = {.lex_state = 72}, + [2191] = {.lex_state = 72}, + [2192] = {.lex_state = 72}, + [2193] = {.lex_state = 72}, + [2194] = {.lex_state = 72}, + [2195] = {.lex_state = 72}, + [2196] = {.lex_state = 72}, + [2197] = {.lex_state = 72}, + [2198] = {.lex_state = 72}, + [2199] = {.lex_state = 72}, + [2200] = {.lex_state = 72}, + [2201] = {.lex_state = 72}, + [2202] = {.lex_state = 72}, + [2203] = {.lex_state = 72}, + [2204] = {.lex_state = 72}, + [2205] = {.lex_state = 72}, + [2206] = {.lex_state = 72}, + [2207] = {.lex_state = 72}, + [2208] = {.lex_state = 72}, + [2209] = {.lex_state = 72}, + [2210] = {.lex_state = 72}, + [2211] = {.lex_state = 72, .external_lex_state = 2}, + [2212] = {.lex_state = 72}, + [2213] = {.lex_state = 72, .external_lex_state = 2}, + [2214] = {.lex_state = 72}, + [2215] = {.lex_state = 72}, + [2216] = {.lex_state = 72}, + [2217] = {.lex_state = 72}, + [2218] = {.lex_state = 72}, + [2219] = {.lex_state = 72}, + [2220] = {.lex_state = 72}, + [2221] = {.lex_state = 72}, + [2222] = {.lex_state = 72}, + [2223] = {.lex_state = 72}, + [2224] = {.lex_state = 72, .external_lex_state = 2}, + [2225] = {.lex_state = 72}, + [2226] = {.lex_state = 72}, + [2227] = {.lex_state = 72, .external_lex_state = 2}, + [2228] = {.lex_state = 72}, + [2229] = {.lex_state = 72}, + [2230] = {.lex_state = 72}, + [2231] = {.lex_state = 72}, + [2232] = {.lex_state = 72}, + [2233] = {.lex_state = 72}, + [2234] = {.lex_state = 72}, + [2235] = {.lex_state = 72}, + [2236] = {.lex_state = 72}, + [2237] = {.lex_state = 72}, + [2238] = {.lex_state = 72}, + [2239] = {.lex_state = 72}, + [2240] = {.lex_state = 72}, + [2241] = {.lex_state = 72}, + [2242] = {.lex_state = 72}, + [2243] = {.lex_state = 72}, + [2244] = {.lex_state = 72, .external_lex_state = 2}, + [2245] = {.lex_state = 72}, + [2246] = {.lex_state = 72}, + [2247] = {.lex_state = 72}, + [2248] = {.lex_state = 72, .external_lex_state = 2}, + [2249] = {.lex_state = 72, .external_lex_state = 2}, + [2250] = {.lex_state = 72}, + [2251] = {.lex_state = 72}, + [2252] = {.lex_state = 72, .external_lex_state = 2}, + [2253] = {.lex_state = 72}, + [2254] = {.lex_state = 72}, + [2255] = {.lex_state = 72}, + [2256] = {.lex_state = 72, .external_lex_state = 2}, + [2257] = {.lex_state = 72}, + [2258] = {.lex_state = 72}, + [2259] = {.lex_state = 72}, + [2260] = {.lex_state = 72, .external_lex_state = 2}, + [2261] = {.lex_state = 72}, + [2262] = {.lex_state = 72, .external_lex_state = 2}, + [2263] = {.lex_state = 72}, + [2264] = {.lex_state = 72}, + [2265] = {.lex_state = 72, .external_lex_state = 2}, + [2266] = {.lex_state = 72}, + [2267] = {.lex_state = 72}, + [2268] = {.lex_state = 72, .external_lex_state = 2}, + [2269] = {.lex_state = 72, .external_lex_state = 2}, + [2270] = {.lex_state = 72}, + [2271] = {.lex_state = 72}, + [2272] = {.lex_state = 72}, + [2273] = {.lex_state = 72}, + [2274] = {.lex_state = 72, .external_lex_state = 2}, + [2275] = {.lex_state = 72}, + [2276] = {.lex_state = 72}, + [2277] = {.lex_state = 72, .external_lex_state = 2}, + [2278] = {.lex_state = 72, .external_lex_state = 2}, + [2279] = {.lex_state = 72}, + [2280] = {.lex_state = 72, .external_lex_state = 2}, + [2281] = {.lex_state = 72}, + [2282] = {.lex_state = 72}, + [2283] = {.lex_state = 72, .external_lex_state = 2}, + [2284] = {.lex_state = 72, .external_lex_state = 2}, + [2285] = {.lex_state = 72}, + [2286] = {.lex_state = 72, .external_lex_state = 2}, + [2287] = {.lex_state = 72}, + [2288] = {.lex_state = 72}, + [2289] = {.lex_state = 72}, + [2290] = {.lex_state = 72}, + [2291] = {.lex_state = 72}, + [2292] = {.lex_state = 72}, + [2293] = {.lex_state = 72}, + [2294] = {.lex_state = 72}, + [2295] = {.lex_state = 72}, + [2296] = {.lex_state = 72}, + [2297] = {.lex_state = 72}, + [2298] = {.lex_state = 72}, + [2299] = {.lex_state = 72}, + [2300] = {.lex_state = 72}, + [2301] = {.lex_state = 72, .external_lex_state = 2}, + [2302] = {.lex_state = 72}, + [2303] = {.lex_state = 72}, + [2304] = {.lex_state = 72}, + [2305] = {.lex_state = 72}, + [2306] = {.lex_state = 72, .external_lex_state = 2}, + [2307] = {.lex_state = 72}, + [2308] = {.lex_state = 72}, + [2309] = {.lex_state = 72, .external_lex_state = 2}, + [2310] = {.lex_state = 72}, + [2311] = {.lex_state = 72}, + [2312] = {.lex_state = 72}, + [2313] = {.lex_state = 72}, + [2314] = {.lex_state = 72}, + [2315] = {.lex_state = 72}, + [2316] = {.lex_state = 72}, + [2317] = {.lex_state = 72, .external_lex_state = 2}, + [2318] = {.lex_state = 72}, + [2319] = {.lex_state = 72}, + [2320] = {.lex_state = 72}, + [2321] = {.lex_state = 72}, + [2322] = {.lex_state = 72}, + [2323] = {.lex_state = 72}, + [2324] = {.lex_state = 72}, + [2325] = {.lex_state = 72}, + [2326] = {.lex_state = 72}, + [2327] = {.lex_state = 72}, + [2328] = {.lex_state = 72}, + [2329] = {.lex_state = 72}, + [2330] = {.lex_state = 72}, + [2331] = {.lex_state = 72}, + [2332] = {.lex_state = 72}, + [2333] = {.lex_state = 72}, + [2334] = {.lex_state = 72}, + [2335] = {.lex_state = 72}, + [2336] = {.lex_state = 72, .external_lex_state = 2}, + [2337] = {.lex_state = 72}, + [2338] = {.lex_state = 72}, + [2339] = {.lex_state = 72}, + [2340] = {.lex_state = 72}, + [2341] = {.lex_state = 72}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 72}, + [2344] = {.lex_state = 72, .external_lex_state = 2}, + [2345] = {.lex_state = 72, .external_lex_state = 2}, + [2346] = {.lex_state = 72, .external_lex_state = 2}, + [2347] = {.lex_state = 72, .external_lex_state = 2}, + [2348] = {.lex_state = 72, .external_lex_state = 2}, + [2349] = {.lex_state = 72}, + [2350] = {.lex_state = 72}, + [2351] = {.lex_state = 72}, + [2352] = {.lex_state = 72}, + [2353] = {.lex_state = 72}, + [2354] = {.lex_state = 72}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 72}, + [2357] = {.lex_state = 72}, + [2358] = {.lex_state = 72}, + [2359] = {.lex_state = 72}, + [2360] = {.lex_state = 72}, + [2361] = {.lex_state = 72}, + [2362] = {.lex_state = 72, .external_lex_state = 2}, + [2363] = {.lex_state = 72}, + [2364] = {.lex_state = 72, .external_lex_state = 2}, + [2365] = {.lex_state = 72, .external_lex_state = 2}, + [2366] = {.lex_state = 72}, + [2367] = {.lex_state = 72, .external_lex_state = 2}, + [2368] = {.lex_state = 72, .external_lex_state = 2}, + [2369] = {.lex_state = 72}, + [2370] = {.lex_state = 72}, + [2371] = {.lex_state = 72}, + [2372] = {.lex_state = 72}, + [2373] = {.lex_state = 72}, + [2374] = {.lex_state = 72}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 72}, + [2377] = {.lex_state = 72}, + [2378] = {.lex_state = 72}, + [2379] = {.lex_state = 23}, + [2380] = {.lex_state = 72}, + [2381] = {.lex_state = 72}, + [2382] = {.lex_state = 72}, + [2383] = {.lex_state = 72}, + [2384] = {.lex_state = 72}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 72}, + [2387] = {.lex_state = 72}, + [2388] = {.lex_state = 72}, + [2389] = {.lex_state = 72}, + [2390] = {.lex_state = 72}, + [2391] = {.lex_state = 72}, + [2392] = {.lex_state = 72}, + [2393] = {.lex_state = 72}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 72}, + [2396] = {.lex_state = 72}, + [2397] = {.lex_state = 72}, + [2398] = {.lex_state = 72}, + [2399] = {.lex_state = 72}, + [2400] = {.lex_state = 72}, + [2401] = {.lex_state = 72}, + [2402] = {.lex_state = 72}, + [2403] = {.lex_state = 72}, + [2404] = {.lex_state = 72}, + [2405] = {.lex_state = 72, .external_lex_state = 11}, + [2406] = {.lex_state = 72}, + [2407] = {.lex_state = 72}, + [2408] = {.lex_state = 72}, + [2409] = {.lex_state = 72}, + [2410] = {.lex_state = 72}, + [2411] = {.lex_state = 72}, + [2412] = {.lex_state = 72}, + [2413] = {.lex_state = 72}, + [2414] = {.lex_state = 72}, + [2415] = {.lex_state = 72, .external_lex_state = 11}, + [2416] = {.lex_state = 72}, + [2417] = {.lex_state = 72}, + [2418] = {.lex_state = 72}, + [2419] = {.lex_state = 72}, + [2420] = {.lex_state = 72}, + [2421] = {.lex_state = 72}, + [2422] = {.lex_state = 72}, + [2423] = {.lex_state = 72, .external_lex_state = 11}, + [2424] = {.lex_state = 72}, + [2425] = {.lex_state = 72}, + [2426] = {.lex_state = 72, .external_lex_state = 11}, + [2427] = {.lex_state = 72}, + [2428] = {.lex_state = 72}, + [2429] = {.lex_state = 72}, + [2430] = {.lex_state = 72}, + [2431] = {.lex_state = 72}, + [2432] = {.lex_state = 9}, + [2433] = {.lex_state = 9}, + [2434] = {.lex_state = 72}, + [2435] = {.lex_state = 72}, + [2436] = {.lex_state = 72}, + [2437] = {.lex_state = 72}, + [2438] = {.lex_state = 72}, + [2439] = {.lex_state = 72}, + [2440] = {.lex_state = 72}, + [2441] = {.lex_state = 72}, + [2442] = {.lex_state = 72}, + [2443] = {.lex_state = 72}, + [2444] = {.lex_state = 72}, + [2445] = {.lex_state = 72}, + [2446] = {.lex_state = 72}, + [2447] = {.lex_state = 72}, + [2448] = {.lex_state = 72}, + [2449] = {.lex_state = 72}, + [2450] = {.lex_state = 72}, + [2451] = {.lex_state = 72}, + [2452] = {.lex_state = 72}, + [2453] = {.lex_state = 72}, + [2454] = {.lex_state = 72}, + [2455] = {.lex_state = 72}, + [2456] = {.lex_state = 72}, + [2457] = {.lex_state = 72}, + [2458] = {.lex_state = 72}, + [2459] = {.lex_state = 72}, + [2460] = {.lex_state = 72}, + [2461] = {.lex_state = 72}, + [2462] = {.lex_state = 72}, + [2463] = {.lex_state = 72}, + [2464] = {.lex_state = 72}, + [2465] = {.lex_state = 72}, + [2466] = {.lex_state = 72}, + [2467] = {.lex_state = 72}, + [2468] = {.lex_state = 9}, + [2469] = {.lex_state = 9}, + [2470] = {.lex_state = 72}, + [2471] = {.lex_state = 72}, + [2472] = {.lex_state = 72}, + [2473] = {.lex_state = 72}, + [2474] = {.lex_state = 72}, + [2475] = {.lex_state = 72}, + [2476] = {.lex_state = 72}, + [2477] = {.lex_state = 72}, + [2478] = {.lex_state = 72}, + [2479] = {.lex_state = 72}, + [2480] = {.lex_state = 72}, + [2481] = {.lex_state = 72}, + [2482] = {.lex_state = 72}, + [2483] = {.lex_state = 72}, + [2484] = {.lex_state = 72}, + [2485] = {.lex_state = 72}, + [2486] = {.lex_state = 72}, + [2487] = {.lex_state = 72}, + [2488] = {.lex_state = 72}, + [2489] = {.lex_state = 72}, + [2490] = {.lex_state = 72}, + [2491] = {.lex_state = 72}, + [2492] = {.lex_state = 72}, + [2493] = {.lex_state = 72}, + [2494] = {.lex_state = 72}, + [2495] = {.lex_state = 72}, + [2496] = {.lex_state = 72}, + [2497] = {.lex_state = 72}, + [2498] = {.lex_state = 72}, + [2499] = {.lex_state = 72}, + [2500] = {.lex_state = 72}, + [2501] = {.lex_state = 72}, + [2502] = {.lex_state = 72}, + [2503] = {.lex_state = 72}, + [2504] = {.lex_state = 72}, + [2505] = {.lex_state = 72}, + [2506] = {.lex_state = 72}, + [2507] = {.lex_state = 72}, + [2508] = {.lex_state = 72}, + [2509] = {.lex_state = 72, .external_lex_state = 12}, + [2510] = {.lex_state = 72}, + [2511] = {.lex_state = 72, .external_lex_state = 12}, + [2512] = {.lex_state = 72, .external_lex_state = 12}, + [2513] = {.lex_state = 72}, + [2514] = {.lex_state = 72}, + [2515] = {.lex_state = 72}, + [2516] = {.lex_state = 72}, + [2517] = {.lex_state = 72}, + [2518] = {.lex_state = 72}, + [2519] = {.lex_state = 72}, + [2520] = {.lex_state = 72, .external_lex_state = 12}, + [2521] = {.lex_state = 72}, + [2522] = {.lex_state = 72}, + [2523] = {.lex_state = 72}, + [2524] = {.lex_state = 72}, + [2525] = {.lex_state = 72}, + [2526] = {.lex_state = 72}, + [2527] = {.lex_state = 72}, + [2528] = {.lex_state = 72}, + [2529] = {.lex_state = 72}, + [2530] = {.lex_state = 72}, + [2531] = {.lex_state = 72}, + [2532] = {.lex_state = 72}, + [2533] = {.lex_state = 72}, + [2534] = {.lex_state = 72}, + [2535] = {.lex_state = 72}, + [2536] = {.lex_state = 72}, + [2537] = {.lex_state = 72}, + [2538] = {.lex_state = 72}, + [2539] = {.lex_state = 72}, + [2540] = {.lex_state = 72}, + [2541] = {.lex_state = 72}, + [2542] = {.lex_state = 72}, + [2543] = {.lex_state = 72}, + [2544] = {.lex_state = 72}, + [2545] = {.lex_state = 72}, + [2546] = {.lex_state = 72}, + [2547] = {.lex_state = 72}, + [2548] = {.lex_state = 72}, + [2549] = {.lex_state = 72}, + [2550] = {.lex_state = 72}, + [2551] = {.lex_state = 72}, + [2552] = {.lex_state = 72}, + [2553] = {.lex_state = 72}, + [2554] = {.lex_state = 72}, + [2555] = {.lex_state = 72}, + [2556] = {.lex_state = 72}, + [2557] = {.lex_state = 72}, + [2558] = {.lex_state = 72}, + [2559] = {.lex_state = 72}, + [2560] = {.lex_state = 72}, + [2561] = {.lex_state = 72}, + [2562] = {.lex_state = 72}, + [2563] = {.lex_state = 72}, + [2564] = {.lex_state = 72}, + [2565] = {.lex_state = 72}, + [2566] = {.lex_state = 72}, + [2567] = {.lex_state = 72}, + [2568] = {.lex_state = 72}, + [2569] = {.lex_state = 72}, + [2570] = {.lex_state = 72}, + [2571] = {.lex_state = 72}, + [2572] = {.lex_state = 72}, + [2573] = {.lex_state = 72}, + [2574] = {.lex_state = 72}, + [2575] = {.lex_state = 72, .external_lex_state = 11}, + [2576] = {.lex_state = 72}, + [2577] = {.lex_state = 72, .external_lex_state = 11}, + [2578] = {.lex_state = 72}, + [2579] = {.lex_state = 72}, + [2580] = {.lex_state = 72}, + [2581] = {.lex_state = 72}, + [2582] = {.lex_state = 72}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 72}, + [2585] = {.lex_state = 72}, + [2586] = {.lex_state = 72}, + [2587] = {.lex_state = 72}, + [2588] = {.lex_state = 72}, + [2589] = {.lex_state = 72}, + [2590] = {.lex_state = 72}, + [2591] = {.lex_state = 72}, + [2592] = {.lex_state = 72}, + [2593] = {.lex_state = 72}, + [2594] = {.lex_state = 72}, + [2595] = {.lex_state = 72}, + [2596] = {.lex_state = 72}, + [2597] = {.lex_state = 72}, + [2598] = {.lex_state = 72}, + [2599] = {.lex_state = 72}, + [2600] = {.lex_state = 72}, + [2601] = {.lex_state = 72}, + [2602] = {.lex_state = 72}, + [2603] = {.lex_state = 72}, + [2604] = {.lex_state = 72}, + [2605] = {.lex_state = 72}, + [2606] = {.lex_state = 72}, + [2607] = {.lex_state = 72}, + [2608] = {.lex_state = 72}, + [2609] = {.lex_state = 72}, + [2610] = {.lex_state = 72}, + [2611] = {.lex_state = 72}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_text_interpolation] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_name] = ACTIONS(1), - [sym_php_tag] = ACTIONS(1), - [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_QMARK_GT] = ACTIONS(1), [aux_sym_text_token1] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), @@ -13289,7 +13053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1), [aux_sym_require_expression_token1] = ACTIONS(1), [aux_sym_require_once_expression_token1] = ACTIONS(1), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(1), [sym_encapsed_string_chars] = ACTIONS(1), [sym_encapsed_string_chars_after_variable] = ACTIONS(1), @@ -13304,3817 +13068,4271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_sentinel_error] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2591), - [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(2161), - [aux_sym_text_repeat1] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(7), - [sym_php_tag] = ACTIONS(9), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_text_token1] = ACTIONS(11), - [aux_sym_text_token2] = ACTIONS(11), - [sym_comment] = ACTIONS(5), + [sym_program] = STATE(2573), + [sym_empty_statement] = STATE(15), + [sym_function_static_declaration] = STATE(15), + [sym_global_declaration] = STATE(15), + [sym_namespace_definition] = STATE(15), + [sym_namespace_use_declaration] = STATE(15), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(15), + [sym_interface_declaration] = STATE(15), + [sym_enum_declaration] = STATE(15), + [sym_class_declaration] = STATE(15), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(15), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(15), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(15), + [sym_unset_statement] = STATE(15), + [sym_declare_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_foreach_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(15), + [sym_compound_statement] = STATE(15), + [sym_named_label_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(9), + [sym_php_tag] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [2] = { - [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(13), - [sym_name] = ACTIONS(15), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [anon_sym_RBRACE] = ACTIONS(13), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_enum_case_token1] = ACTIONS(56), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_readonly_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token1] = ACTIONS(70), - [aux_sym_visibility_modifier_token2] = ACTIONS(70), - [aux_sym_visibility_modifier_token3] = ACTIONS(70), - [aux_sym__arrow_function_header_token1] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(76), - [aux_sym_cast_type_token1] = ACTIONS(79), - [aux_sym_echo_statement_token1] = ACTIONS(82), - [anon_sym_unset] = ACTIONS(85), - [aux_sym_declare_statement_token1] = ACTIONS(88), - [aux_sym_declare_statement_token2] = ACTIONS(56), - [sym_float] = ACTIONS(91), - [aux_sym_try_statement_token1] = ACTIONS(94), - [aux_sym_goto_statement_token1] = ACTIONS(97), - [aux_sym_continue_statement_token1] = ACTIONS(100), - [aux_sym_break_statement_token1] = ACTIONS(103), - [sym_integer] = ACTIONS(91), - [aux_sym_return_statement_token1] = ACTIONS(106), - [aux_sym_throw_expression_token1] = ACTIONS(109), - [aux_sym_while_statement_token1] = ACTIONS(112), - [aux_sym_while_statement_token2] = ACTIONS(56), - [aux_sym_do_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token1] = ACTIONS(118), - [aux_sym_for_statement_token2] = ACTIONS(56), - [aux_sym_foreach_statement_token1] = ACTIONS(121), - [aux_sym_foreach_statement_token2] = ACTIONS(56), - [aux_sym_if_statement_token1] = ACTIONS(124), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(127), - [aux_sym_match_default_expression_token1] = ACTIONS(56), - [aux_sym_switch_statement_token1] = ACTIONS(130), - [aux_sym_switch_block_token1] = ACTIONS(56), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [aux_sym_clone_expression_token1] = ACTIONS(142), - [aux_sym_print_intrinsic_token1] = ACTIONS(145), - [aux_sym_object_creation_expression_token1] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [anon_sym_POUND_LBRACK] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(166), - [aux_sym_encapsed_string_token1] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(169), - [aux_sym_string_token1] = ACTIONS(166), - [anon_sym_LT_LT_LT] = ACTIONS(172), - [anon_sym_BQUOTE] = ACTIONS(175), - [sym_boolean] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(178), - [aux_sym_yield_expression_token1] = ACTIONS(181), - [aux_sym_include_expression_token1] = ACTIONS(184), - [aux_sym_include_once_expression_token1] = ACTIONS(187), - [aux_sym_require_expression_token1] = ACTIONS(190), - [aux_sym_require_once_expression_token1] = ACTIONS(193), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(129), + [sym_name] = ACTIONS(131), + [anon_sym_QMARK_GT] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(134), + [aux_sym_function_static_declaration_token1] = ACTIONS(137), + [aux_sym_global_declaration_token1] = ACTIONS(140), + [aux_sym_namespace_definition_token1] = ACTIONS(143), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(149), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(129), + [aux_sym_trait_declaration_token1] = ACTIONS(161), + [aux_sym_interface_declaration_token1] = ACTIONS(164), + [aux_sym_enum_declaration_token1] = ACTIONS(167), + [aux_sym_enum_case_token1] = ACTIONS(170), + [aux_sym_class_declaration_token1] = ACTIONS(172), + [aux_sym_final_modifier_token1] = ACTIONS(175), + [aux_sym_abstract_modifier_token1] = ACTIONS(178), + [aux_sym_readonly_modifier_token1] = ACTIONS(181), + [aux_sym_visibility_modifier_token1] = ACTIONS(184), + [aux_sym_visibility_modifier_token2] = ACTIONS(184), + [aux_sym_visibility_modifier_token3] = ACTIONS(184), + [aux_sym__arrow_function_header_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(190), + [aux_sym_cast_type_token1] = ACTIONS(193), + [aux_sym_echo_statement_token1] = ACTIONS(196), + [anon_sym_unset] = ACTIONS(199), + [aux_sym_declare_statement_token1] = ACTIONS(202), + [aux_sym_declare_statement_token2] = ACTIONS(170), + [sym_float] = ACTIONS(205), + [aux_sym_try_statement_token1] = ACTIONS(208), + [aux_sym_goto_statement_token1] = ACTIONS(211), + [aux_sym_continue_statement_token1] = ACTIONS(214), + [aux_sym_break_statement_token1] = ACTIONS(217), + [sym_integer] = ACTIONS(205), + [aux_sym_return_statement_token1] = ACTIONS(220), + [aux_sym_throw_expression_token1] = ACTIONS(223), + [aux_sym_while_statement_token1] = ACTIONS(226), + [aux_sym_while_statement_token2] = ACTIONS(170), + [aux_sym_do_statement_token1] = ACTIONS(229), + [aux_sym_for_statement_token1] = ACTIONS(232), + [aux_sym_for_statement_token2] = ACTIONS(170), + [aux_sym_foreach_statement_token1] = ACTIONS(235), + [aux_sym_foreach_statement_token2] = ACTIONS(170), + [aux_sym_if_statement_token1] = ACTIONS(238), + [aux_sym_if_statement_token2] = ACTIONS(170), + [aux_sym_match_expression_token1] = ACTIONS(241), + [aux_sym_match_default_expression_token1] = ACTIONS(170), + [aux_sym_switch_statement_token1] = ACTIONS(244), + [aux_sym_switch_block_token1] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [aux_sym_clone_expression_token1] = ACTIONS(256), + [aux_sym_print_intrinsic_token1] = ACTIONS(259), + [aux_sym_object_creation_expression_token1] = ACTIONS(262), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [aux_sym__list_destructing_token1] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_self] = ACTIONS(274), + [anon_sym_parent] = ACTIONS(274), + [anon_sym_POUND_LBRACK] = ACTIONS(277), + [anon_sym_SQUOTE] = ACTIONS(280), + [aux_sym_encapsed_string_token1] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(283), + [aux_sym_string_token1] = ACTIONS(280), + [anon_sym_LT_LT_LT] = ACTIONS(286), + [anon_sym_BQUOTE] = ACTIONS(289), + [sym_boolean] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(292), + [aux_sym_yield_expression_token1] = ACTIONS(295), + [aux_sym_include_expression_token1] = ACTIONS(298), + [aux_sym_include_once_expression_token1] = ACTIONS(301), + [aux_sym_require_expression_token1] = ACTIONS(304), + [aux_sym_require_once_expression_token1] = ACTIONS(307), + [sym_comment] = ACTIONS(3), }, [3] = { - [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(6), + [sym_function_static_declaration] = STATE(6), + [sym_global_declaration] = STATE(6), + [sym_namespace_definition] = STATE(6), + [sym_namespace_use_declaration] = STATE(6), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(6), + [sym_interface_declaration] = STATE(6), + [sym_enum_declaration] = STATE(6), + [sym_class_declaration] = STATE(6), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(6), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(6), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(6), + [sym_unset_statement] = STATE(6), + [sym_declare_statement] = STATE(6), + [sym_try_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_foreach_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(6), + [sym_compound_statement] = STATE(6), + [sym_named_label_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(216), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(224), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(224), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(224), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(310), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(312), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(312), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [4] = { - [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(318), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(320), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(320), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(314), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(316), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(316), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(316), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [5] = { - [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(4), + [sym_function_static_declaration] = STATE(4), + [sym_global_declaration] = STATE(4), + [sym_namespace_definition] = STATE(4), + [sym_namespace_use_declaration] = STATE(4), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_enum_declaration] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(4), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(4), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(4), + [sym_unset_statement] = STATE(4), + [sym_declare_statement] = STATE(4), + [sym_try_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_foreach_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(4), + [sym_compound_statement] = STATE(4), + [sym_named_label_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(322), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(324), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(324), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(324), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(318), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(320), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(320), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(320), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [6] = { - [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(326), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_enum_case_token1] = ACTIONS(328), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_match_default_expression_token1] = ACTIONS(328), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [aux_sym_switch_block_token1] = ACTIONS(328), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(322), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_enum_case_token1] = ACTIONS(324), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_match_default_expression_token1] = ACTIONS(324), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [aux_sym_switch_block_token1] = ACTIONS(324), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [7] = { - [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_if_statement_token2] = ACTIONS(340), - [aux_sym_else_if_clause_token1] = ACTIONS(340), - [aux_sym_else_clause_token1] = ACTIONS(340), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_while_statement_token2] = ACTIONS(326), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_foreach_statement_token2] = ACTIONS(326), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_if_statement_token2] = ACTIONS(326), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [8] = { - [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(7), + [sym_function_static_declaration] = STATE(7), + [sym_global_declaration] = STATE(7), + [sym_namespace_definition] = STATE(7), + [sym_namespace_use_declaration] = STATE(7), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(7), + [sym_interface_declaration] = STATE(7), + [sym_enum_declaration] = STATE(7), + [sym_class_declaration] = STATE(7), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(7), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(7), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(7), + [sym_unset_statement] = STATE(7), + [sym_declare_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_foreach_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(7), + [sym_compound_statement] = STATE(7), + [sym_named_label_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_if_statement_token2] = ACTIONS(342), - [aux_sym_else_if_clause_token1] = ACTIONS(342), - [aux_sym_else_clause_token1] = ACTIONS(342), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_while_statement_token2] = ACTIONS(328), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_foreach_statement_token2] = ACTIONS(328), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_if_statement_token2] = ACTIONS(328), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [9] = { - [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(9), + [sym_function_static_declaration] = STATE(9), + [sym_global_declaration] = STATE(9), + [sym_namespace_definition] = STATE(9), + [sym_namespace_use_declaration] = STATE(9), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(9), + [sym_interface_declaration] = STATE(9), + [sym_enum_declaration] = STATE(9), + [sym_class_declaration] = STATE(9), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(9), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(9), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(9), + [sym_unset_statement] = STATE(9), + [sym_declare_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_foreach_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(9), + [sym_compound_statement] = STATE(9), + [sym_named_label_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(15), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(20), - [aux_sym_function_static_declaration_token1] = ACTIONS(23), - [aux_sym_global_declaration_token1] = ACTIONS(26), - [aux_sym_namespace_definition_token1] = ACTIONS(29), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), - [anon_sym_BSLASH] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(44), - [aux_sym_trait_declaration_token1] = ACTIONS(47), - [aux_sym_interface_declaration_token1] = ACTIONS(50), - [aux_sym_enum_declaration_token1] = ACTIONS(53), - [aux_sym_class_declaration_token1] = ACTIONS(58), - [aux_sym_final_modifier_token1] = ACTIONS(61), - [aux_sym_abstract_modifier_token1] = ACTIONS(64), - [aux_sym_readonly_modifier_token1] = ACTIONS(67), - [aux_sym_visibility_modifier_token1] = ACTIONS(70), - [aux_sym_visibility_modifier_token2] = ACTIONS(70), - [aux_sym_visibility_modifier_token3] = ACTIONS(70), - [aux_sym__arrow_function_header_token1] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(76), - [aux_sym_cast_type_token1] = ACTIONS(79), - [aux_sym_echo_statement_token1] = ACTIONS(82), - [anon_sym_unset] = ACTIONS(85), - [aux_sym_declare_statement_token1] = ACTIONS(344), - [sym_float] = ACTIONS(91), - [aux_sym_try_statement_token1] = ACTIONS(94), - [aux_sym_goto_statement_token1] = ACTIONS(97), - [aux_sym_continue_statement_token1] = ACTIONS(100), - [aux_sym_break_statement_token1] = ACTIONS(103), - [sym_integer] = ACTIONS(91), - [aux_sym_return_statement_token1] = ACTIONS(106), - [aux_sym_throw_expression_token1] = ACTIONS(109), - [aux_sym_while_statement_token1] = ACTIONS(347), - [aux_sym_do_statement_token1] = ACTIONS(115), - [aux_sym_for_statement_token1] = ACTIONS(350), - [aux_sym_foreach_statement_token1] = ACTIONS(353), - [aux_sym_if_statement_token1] = ACTIONS(356), - [aux_sym_if_statement_token2] = ACTIONS(56), - [aux_sym_else_if_clause_token1] = ACTIONS(56), - [aux_sym_else_clause_token1] = ACTIONS(56), - [aux_sym_match_expression_token1] = ACTIONS(127), - [aux_sym_switch_statement_token1] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [aux_sym_clone_expression_token1] = ACTIONS(142), - [aux_sym_print_intrinsic_token1] = ACTIONS(145), - [aux_sym_object_creation_expression_token1] = ACTIONS(148), - [anon_sym_PLUS_PLUS] = ACTIONS(151), - [anon_sym_DASH_DASH] = ACTIONS(151), - [aux_sym__list_destructing_token1] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_self] = ACTIONS(160), - [anon_sym_parent] = ACTIONS(160), - [anon_sym_POUND_LBRACK] = ACTIONS(163), - [anon_sym_SQUOTE] = ACTIONS(166), - [aux_sym_encapsed_string_token1] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(169), - [aux_sym_string_token1] = ACTIONS(166), - [anon_sym_LT_LT_LT] = ACTIONS(172), - [anon_sym_BQUOTE] = ACTIONS(175), - [sym_boolean] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [anon_sym_DOLLAR] = ACTIONS(178), - [aux_sym_yield_expression_token1] = ACTIONS(181), - [aux_sym_include_expression_token1] = ACTIONS(184), - [aux_sym_include_once_expression_token1] = ACTIONS(187), - [aux_sym_require_expression_token1] = ACTIONS(190), - [aux_sym_require_once_expression_token1] = ACTIONS(193), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(134), + [aux_sym_function_static_declaration_token1] = ACTIONS(137), + [aux_sym_global_declaration_token1] = ACTIONS(140), + [aux_sym_namespace_definition_token1] = ACTIONS(143), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(146), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(149), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(152), + [anon_sym_BSLASH] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(158), + [aux_sym_trait_declaration_token1] = ACTIONS(161), + [aux_sym_interface_declaration_token1] = ACTIONS(164), + [aux_sym_enum_declaration_token1] = ACTIONS(167), + [aux_sym_class_declaration_token1] = ACTIONS(172), + [aux_sym_final_modifier_token1] = ACTIONS(175), + [aux_sym_abstract_modifier_token1] = ACTIONS(178), + [aux_sym_readonly_modifier_token1] = ACTIONS(181), + [aux_sym_visibility_modifier_token1] = ACTIONS(184), + [aux_sym_visibility_modifier_token2] = ACTIONS(184), + [aux_sym_visibility_modifier_token3] = ACTIONS(184), + [aux_sym__arrow_function_header_token1] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(190), + [aux_sym_cast_type_token1] = ACTIONS(193), + [aux_sym_echo_statement_token1] = ACTIONS(196), + [anon_sym_unset] = ACTIONS(199), + [aux_sym_declare_statement_token1] = ACTIONS(330), + [sym_float] = ACTIONS(205), + [aux_sym_try_statement_token1] = ACTIONS(208), + [aux_sym_goto_statement_token1] = ACTIONS(211), + [aux_sym_continue_statement_token1] = ACTIONS(214), + [aux_sym_break_statement_token1] = ACTIONS(217), + [sym_integer] = ACTIONS(205), + [aux_sym_return_statement_token1] = ACTIONS(220), + [aux_sym_throw_expression_token1] = ACTIONS(223), + [aux_sym_while_statement_token1] = ACTIONS(333), + [aux_sym_do_statement_token1] = ACTIONS(229), + [aux_sym_for_statement_token1] = ACTIONS(336), + [aux_sym_foreach_statement_token1] = ACTIONS(339), + [aux_sym_if_statement_token1] = ACTIONS(342), + [aux_sym_if_statement_token2] = ACTIONS(170), + [aux_sym_else_if_clause_token1] = ACTIONS(170), + [aux_sym_else_clause_token1] = ACTIONS(170), + [aux_sym_match_expression_token1] = ACTIONS(241), + [aux_sym_switch_statement_token1] = ACTIONS(244), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [aux_sym_clone_expression_token1] = ACTIONS(256), + [aux_sym_print_intrinsic_token1] = ACTIONS(259), + [aux_sym_object_creation_expression_token1] = ACTIONS(262), + [anon_sym_PLUS_PLUS] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(265), + [aux_sym__list_destructing_token1] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [anon_sym_self] = ACTIONS(274), + [anon_sym_parent] = ACTIONS(274), + [anon_sym_POUND_LBRACK] = ACTIONS(277), + [anon_sym_SQUOTE] = ACTIONS(280), + [aux_sym_encapsed_string_token1] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(283), + [aux_sym_string_token1] = ACTIONS(280), + [anon_sym_LT_LT_LT] = ACTIONS(286), + [anon_sym_BQUOTE] = ACTIONS(289), + [sym_boolean] = ACTIONS(205), + [sym_null] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(292), + [aux_sym_yield_expression_token1] = ACTIONS(295), + [aux_sym_include_expression_token1] = ACTIONS(298), + [aux_sym_include_once_expression_token1] = ACTIONS(301), + [aux_sym_require_expression_token1] = ACTIONS(304), + [aux_sym_require_once_expression_token1] = ACTIONS(307), + [sym_comment] = ACTIONS(3), }, [10] = { - [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(11), + [sym_function_static_declaration] = STATE(11), + [sym_global_declaration] = STATE(11), + [sym_namespace_definition] = STATE(11), + [sym_namespace_use_declaration] = STATE(11), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(11), + [sym_interface_declaration] = STATE(11), + [sym_enum_declaration] = STATE(11), + [sym_class_declaration] = STATE(11), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(11), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(11), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(11), + [sym_unset_statement] = STATE(11), + [sym_declare_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_foreach_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(11), + [sym_compound_statement] = STATE(11), + [sym_named_label_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_while_statement_token2] = ACTIONS(342), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_foreach_statement_token2] = ACTIONS(342), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_if_statement_token2] = ACTIONS(342), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_if_statement_token2] = ACTIONS(328), + [aux_sym_else_if_clause_token1] = ACTIONS(328), + [aux_sym_else_clause_token1] = ACTIONS(328), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [11] = { - [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(9), + [sym_function_static_declaration] = STATE(9), + [sym_global_declaration] = STATE(9), + [sym_namespace_definition] = STATE(9), + [sym_namespace_use_declaration] = STATE(9), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(9), + [sym_interface_declaration] = STATE(9), + [sym_enum_declaration] = STATE(9), + [sym_class_declaration] = STATE(9), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(9), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(9), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(9), + [sym_unset_statement] = STATE(9), + [sym_declare_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_foreach_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(9), + [sym_compound_statement] = STATE(9), + [sym_named_label_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_while_statement_token2] = ACTIONS(340), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_foreach_statement_token2] = ACTIONS(340), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_if_statement_token2] = ACTIONS(340), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_if_statement_token2] = ACTIONS(326), + [aux_sym_else_if_clause_token1] = ACTIONS(326), + [aux_sym_else_clause_token1] = ACTIONS(326), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [12] = { - [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(536), - [sym_function_static_declaration] = STATE(536), - [sym_global_declaration] = STATE(536), - [sym_namespace_definition] = STATE(536), - [sym_namespace_use_declaration] = STATE(536), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(536), - [sym_interface_declaration] = STATE(536), - [sym_enum_declaration] = STATE(536), - [sym_class_declaration] = STATE(536), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(536), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(536), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(536), - [sym_unset_statement] = STATE(536), - [sym_declare_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_foreach_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_colon_block] = STATE(2647), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(536), - [sym_compound_statement] = STATE(536), - [sym_named_label_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(544), + [sym_function_static_declaration] = STATE(544), + [sym_global_declaration] = STATE(544), + [sym_namespace_definition] = STATE(544), + [sym_namespace_use_declaration] = STATE(544), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(544), + [sym_interface_declaration] = STATE(544), + [sym_enum_declaration] = STATE(544), + [sym_class_declaration] = STATE(544), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(544), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(544), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(544), + [sym_unset_statement] = STATE(544), + [sym_declare_statement] = STATE(544), + [sym_try_statement] = STATE(544), + [sym_goto_statement] = STATE(544), + [sym_continue_statement] = STATE(544), + [sym_break_statement] = STATE(544), + [sym_return_statement] = STATE(544), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(544), + [sym_do_statement] = STATE(544), + [sym_for_statement] = STATE(544), + [sym_foreach_statement] = STATE(544), + [sym_if_statement] = STATE(544), + [sym_colon_block] = STATE(2586), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(544), + [sym_compound_statement] = STATE(544), + [sym_named_label_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(359), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(363), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(355), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(359), }, [13] = { - [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(2001), - [sym_function_static_declaration] = STATE(2001), - [sym_global_declaration] = STATE(2001), - [sym_namespace_definition] = STATE(2001), - [sym_namespace_use_declaration] = STATE(2001), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2001), - [sym_interface_declaration] = STATE(2001), - [sym_enum_declaration] = STATE(2001), - [sym_class_declaration] = STATE(2001), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2001), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2001), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2001), - [sym_unset_statement] = STATE(2001), - [sym_declare_statement] = STATE(2001), - [sym_try_statement] = STATE(2001), - [sym_goto_statement] = STATE(2001), - [sym_continue_statement] = STATE(2001), - [sym_break_statement] = STATE(2001), - [sym_return_statement] = STATE(2001), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2001), - [sym_do_statement] = STATE(2001), - [sym_for_statement] = STATE(2001), - [sym_foreach_statement] = STATE(2001), - [sym_if_statement] = STATE(2001), - [sym_colon_block] = STATE(2465), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2001), - [sym_compound_statement] = STATE(2001), - [sym_named_label_statement] = STATE(2001), - [sym_expression_statement] = STATE(2001), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_empty_statement] = STATE(16), + [sym_function_static_declaration] = STATE(16), + [sym_global_declaration] = STATE(16), + [sym_namespace_definition] = STATE(16), + [sym_namespace_use_declaration] = STATE(16), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(16), + [sym_interface_declaration] = STATE(16), + [sym_enum_declaration] = STATE(16), + [sym_class_declaration] = STATE(16), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(16), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(16), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(16), + [sym_unset_statement] = STATE(16), + [sym_declare_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_foreach_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(16), + [sym_compound_statement] = STATE(16), + [sym_named_label_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [14] = { + [sym_empty_statement] = STATE(1969), + [sym_function_static_declaration] = STATE(1969), + [sym_global_declaration] = STATE(1969), + [sym_namespace_definition] = STATE(1969), + [sym_namespace_use_declaration] = STATE(1969), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1969), + [sym_interface_declaration] = STATE(1969), + [sym_enum_declaration] = STATE(1969), + [sym_class_declaration] = STATE(1969), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1969), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1969), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1969), + [sym_unset_statement] = STATE(1969), + [sym_declare_statement] = STATE(1969), + [sym_try_statement] = STATE(1969), + [sym_goto_statement] = STATE(1969), + [sym_continue_statement] = STATE(1969), + [sym_break_statement] = STATE(1969), + [sym_return_statement] = STATE(1969), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1969), + [sym_do_statement] = STATE(1969), + [sym_for_statement] = STATE(1969), + [sym_foreach_statement] = STATE(1969), + [sym_if_statement] = STATE(1969), + [sym_colon_block] = STATE(2429), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1969), + [sym_compound_statement] = STATE(1969), + [sym_named_label_statement] = STATE(1969), + [sym_expression_statement] = STATE(1969), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), [anon_sym_SEMI] = ACTIONS(367), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(357), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), + [aux_sym_throw_expression_token1] = ACTIONS(71), [aux_sym_while_statement_token1] = ACTIONS(405), [aux_sym_do_statement_token1] = ACTIONS(407), [aux_sym_for_statement_token1] = ACTIONS(409), [aux_sym_foreach_statement_token1] = ACTIONS(411), [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(417), }, - [14] = { - [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(536), - [sym_function_static_declaration] = STATE(536), - [sym_global_declaration] = STATE(536), - [sym_namespace_definition] = STATE(536), - [sym_namespace_use_declaration] = STATE(536), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(536), - [sym_interface_declaration] = STATE(536), - [sym_enum_declaration] = STATE(536), - [sym_class_declaration] = STATE(536), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(536), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(536), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(536), - [sym_unset_statement] = STATE(536), - [sym_declare_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_goto_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_foreach_statement] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_colon_block] = STATE(2647), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(536), - [sym_compound_statement] = STATE(536), - [sym_named_label_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [15] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(359), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(363), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [15] = { - [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(2001), - [sym_function_static_declaration] = STATE(2001), - [sym_global_declaration] = STATE(2001), - [sym_namespace_definition] = STATE(2001), - [sym_namespace_use_declaration] = STATE(2001), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2001), - [sym_interface_declaration] = STATE(2001), - [sym_enum_declaration] = STATE(2001), - [sym_class_declaration] = STATE(2001), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2001), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2001), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2001), - [sym_unset_statement] = STATE(2001), - [sym_declare_statement] = STATE(2001), - [sym_try_statement] = STATE(2001), - [sym_goto_statement] = STATE(2001), - [sym_continue_statement] = STATE(2001), - [sym_break_statement] = STATE(2001), - [sym_return_statement] = STATE(2001), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2001), - [sym_do_statement] = STATE(2001), - [sym_for_statement] = STATE(2001), - [sym_foreach_statement] = STATE(2001), - [sym_if_statement] = STATE(2001), - [sym_colon_block] = STATE(2465), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2001), - [sym_compound_statement] = STATE(2001), - [sym_named_label_statement] = STATE(2001), - [sym_expression_statement] = STATE(2001), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [16] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_name] = ACTIONS(7), + [anon_sym_QMARK_GT] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [17] = { + [sym_empty_statement] = STATE(1969), + [sym_function_static_declaration] = STATE(1969), + [sym_global_declaration] = STATE(1969), + [sym_namespace_definition] = STATE(1969), + [sym_namespace_use_declaration] = STATE(1969), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1969), + [sym_interface_declaration] = STATE(1969), + [sym_enum_declaration] = STATE(1969), + [sym_class_declaration] = STATE(1969), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1969), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1969), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1969), + [sym_unset_statement] = STATE(1969), + [sym_declare_statement] = STATE(1969), + [sym_try_statement] = STATE(1969), + [sym_goto_statement] = STATE(1969), + [sym_continue_statement] = STATE(1969), + [sym_break_statement] = STATE(1969), + [sym_return_statement] = STATE(1969), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1969), + [sym_do_statement] = STATE(1969), + [sym_for_statement] = STATE(1969), + [sym_foreach_statement] = STATE(1969), + [sym_if_statement] = STATE(1969), + [sym_colon_block] = STATE(2429), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1969), + [sym_compound_statement] = STATE(1969), + [sym_named_label_statement] = STATE(1969), + [sym_expression_statement] = STATE(1969), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), [anon_sym_SEMI] = ACTIONS(367), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(357), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(417), }, - [16] = { - [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [18] = { + [sym_empty_statement] = STATE(544), + [sym_function_static_declaration] = STATE(544), + [sym_global_declaration] = STATE(544), + [sym_namespace_definition] = STATE(544), + [sym_namespace_use_declaration] = STATE(544), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(544), + [sym_interface_declaration] = STATE(544), + [sym_enum_declaration] = STATE(544), + [sym_class_declaration] = STATE(544), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(544), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(544), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(544), + [sym_unset_statement] = STATE(544), + [sym_declare_statement] = STATE(544), + [sym_try_statement] = STATE(544), + [sym_goto_statement] = STATE(544), + [sym_continue_statement] = STATE(544), + [sym_break_statement] = STATE(544), + [sym_return_statement] = STATE(544), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(544), + [sym_do_statement] = STATE(544), + [sym_for_statement] = STATE(544), + [sym_foreach_statement] = STATE(544), + [sym_if_statement] = STATE(544), + [sym_colon_block] = STATE(2586), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(544), + [sym_compound_statement] = STATE(544), + [sym_named_label_statement] = STATE(544), + [sym_expression_statement] = STATE(544), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(429), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(355), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(359), }, - [17] = { - [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [19] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(429), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(433), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(1971), - [sym_function_static_declaration] = STATE(1971), - [sym_global_declaration] = STATE(1971), - [sym_namespace_definition] = STATE(1971), - [sym_namespace_use_declaration] = STATE(1971), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(1971), - [sym_interface_declaration] = STATE(1971), - [sym_enum_declaration] = STATE(1971), - [sym_class_declaration] = STATE(1971), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(1971), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(1971), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(1971), - [sym_unset_statement] = STATE(1971), - [sym_declare_statement] = STATE(1971), - [sym_try_statement] = STATE(1971), - [sym_goto_statement] = STATE(1971), - [sym_continue_statement] = STATE(1971), - [sym_break_statement] = STATE(1971), - [sym_return_statement] = STATE(1971), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(1971), - [sym_do_statement] = STATE(1971), - [sym_for_statement] = STATE(1971), - [sym_foreach_statement] = STATE(1971), - [sym_if_statement] = STATE(1971), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(1971), - [sym_compound_statement] = STATE(1971), - [sym_named_label_statement] = STATE(1971), - [sym_expression_statement] = STATE(1971), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [20] = { + [sym_empty_statement] = STATE(35), + [sym_function_static_declaration] = STATE(35), + [sym_global_declaration] = STATE(35), + [sym_namespace_definition] = STATE(35), + [sym_namespace_use_declaration] = STATE(35), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(35), + [sym_interface_declaration] = STATE(35), + [sym_enum_declaration] = STATE(35), + [sym_class_declaration] = STATE(35), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(35), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(35), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(35), + [sym_unset_statement] = STATE(35), + [sym_declare_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_foreach_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(35), + [sym_compound_statement] = STATE(35), + [sym_named_label_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [21] = { + [sym_empty_statement] = STATE(2032), + [sym_function_static_declaration] = STATE(2032), + [sym_global_declaration] = STATE(2032), + [sym_namespace_definition] = STATE(2032), + [sym_namespace_use_declaration] = STATE(2032), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2032), + [sym_interface_declaration] = STATE(2032), + [sym_enum_declaration] = STATE(2032), + [sym_class_declaration] = STATE(2032), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2032), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2032), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2032), + [sym_unset_statement] = STATE(2032), + [sym_declare_statement] = STATE(2032), + [sym_try_statement] = STATE(2032), + [sym_goto_statement] = STATE(2032), + [sym_continue_statement] = STATE(2032), + [sym_break_statement] = STATE(2032), + [sym_return_statement] = STATE(2032), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2032), + [sym_do_statement] = STATE(2032), + [sym_for_statement] = STATE(2032), + [sym_foreach_statement] = STATE(2032), + [sym_if_statement] = STATE(2032), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2032), + [sym_compound_statement] = STATE(2032), + [sym_named_label_statement] = STATE(2032), + [sym_expression_statement] = STATE(2032), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(437), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(433), + [anon_sym_COLON] = ACTIONS(439), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), + [aux_sym_throw_expression_token1] = ACTIONS(71), [aux_sym_while_statement_token1] = ACTIONS(405), [aux_sym_do_statement_token1] = ACTIONS(407), [aux_sym_for_statement_token1] = ACTIONS(409), [aux_sym_foreach_statement_token1] = ACTIONS(411), [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(435), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(441), }, - [19] = { - [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(1596), - [sym_function_static_declaration] = STATE(1596), - [sym_global_declaration] = STATE(1596), - [sym_namespace_definition] = STATE(1596), - [sym_namespace_use_declaration] = STATE(1596), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(1596), - [sym_interface_declaration] = STATE(1596), - [sym_enum_declaration] = STATE(1596), - [sym_class_declaration] = STATE(1596), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(1596), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(1596), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(1596), - [sym_unset_statement] = STATE(1596), - [sym_declare_statement] = STATE(1596), - [sym_try_statement] = STATE(1596), - [sym_goto_statement] = STATE(1596), - [sym_continue_statement] = STATE(1596), - [sym_break_statement] = STATE(1596), - [sym_return_statement] = STATE(1596), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(1596), - [sym_do_statement] = STATE(1596), - [sym_for_statement] = STATE(1596), - [sym_foreach_statement] = STATE(1596), - [sym_if_statement] = STATE(1596), - [sym_colon_block] = STATE(1633), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(1596), - [sym_compound_statement] = STATE(1596), - [sym_named_label_statement] = STATE(1596), - [sym_expression_statement] = STATE(1596), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [22] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(439), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(443), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [20] = { - [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(2102), - [sym_function_static_declaration] = STATE(2102), - [sym_global_declaration] = STATE(2102), - [sym_namespace_definition] = STATE(2102), - [sym_namespace_use_declaration] = STATE(2102), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2102), - [sym_interface_declaration] = STATE(2102), - [sym_enum_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2102), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2102), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2102), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2102), - [sym_unset_statement] = STATE(2102), - [sym_declare_statement] = STATE(2102), - [sym_try_statement] = STATE(2102), - [sym_goto_statement] = STATE(2102), - [sym_continue_statement] = STATE(2102), - [sym_break_statement] = STATE(2102), - [sym_return_statement] = STATE(2102), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2102), - [sym_do_statement] = STATE(2102), - [sym_for_statement] = STATE(2102), - [sym_foreach_statement] = STATE(2102), - [sym_if_statement] = STATE(2102), - [sym_colon_block] = STATE(2516), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2102), - [sym_compound_statement] = STATE(2102), - [sym_named_label_statement] = STATE(2102), - [sym_expression_statement] = STATE(2102), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [23] = { + [sym_empty_statement] = STATE(2064), + [sym_function_static_declaration] = STATE(2064), + [sym_global_declaration] = STATE(2064), + [sym_namespace_definition] = STATE(2064), + [sym_namespace_use_declaration] = STATE(2064), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2064), + [sym_interface_declaration] = STATE(2064), + [sym_enum_declaration] = STATE(2064), + [sym_class_declaration] = STATE(2064), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2064), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2064), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2064), + [sym_unset_statement] = STATE(2064), + [sym_declare_statement] = STATE(2064), + [sym_try_statement] = STATE(2064), + [sym_goto_statement] = STATE(2064), + [sym_continue_statement] = STATE(2064), + [sym_break_statement] = STATE(2064), + [sym_return_statement] = STATE(2064), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2064), + [sym_do_statement] = STATE(2064), + [sym_for_statement] = STATE(2064), + [sym_foreach_statement] = STATE(2064), + [sym_if_statement] = STATE(2064), + [sym_colon_block] = STATE(2474), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2064), + [sym_compound_statement] = STATE(2064), + [sym_named_label_statement] = STATE(2064), + [sym_expression_statement] = STATE(2064), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(445), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(357), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [21] = { - [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(441), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [22] = { - [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [24] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(443), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(447), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [23] = { - [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [25] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(445), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_text_interpolation] = STATE(24), + [26] = { [sym_empty_statement] = STATE(488), [sym_function_static_declaration] = STATE(488), [sym_global_declaration] = STATE(488), [sym_namespace_definition] = STATE(488), [sym_namespace_use_declaration] = STATE(488), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), [sym_trait_declaration] = STATE(488), [sym_interface_declaration] = STATE(488), [sym_enum_declaration] = STATE(488), [sym_class_declaration] = STATE(488), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), [sym_const_declaration] = STATE(488), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), [sym_echo_statement] = STATE(488), [sym_unset_statement] = STATE(488), [sym_declare_statement] = STATE(488), @@ -17123,848 +17341,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(488), [sym_break_statement] = STATE(488), [sym_return_statement] = STATE(488), - [sym_throw_expression] = STATE(1087), + [sym_throw_expression] = STATE(1038), [sym_while_statement] = STATE(488), [sym_do_statement] = STATE(488), [sym_for_statement] = STATE(488), [sym_foreach_statement] = STATE(488), [sym_if_statement] = STATE(488), - [sym_match_expression] = STATE(1134), + [sym_match_expression] = STATE(1078), [sym_switch_statement] = STATE(488), [sym_compound_statement] = STATE(488), [sym_named_label_statement] = STATE(488), [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(447), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(449), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(451), - }, - [25] = { - [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(445), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(451), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(453), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(455), }, - [26] = { - [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [27] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(453), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(457), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(426), - [sym_function_static_declaration] = STATE(426), - [sym_global_declaration] = STATE(426), - [sym_namespace_definition] = STATE(426), - [sym_namespace_use_declaration] = STATE(426), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(426), - [sym_interface_declaration] = STATE(426), - [sym_enum_declaration] = STATE(426), - [sym_class_declaration] = STATE(426), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(426), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(426), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(426), - [sym_unset_statement] = STATE(426), - [sym_declare_statement] = STATE(426), - [sym_try_statement] = STATE(426), - [sym_goto_statement] = STATE(426), - [sym_continue_statement] = STATE(426), - [sym_break_statement] = STATE(426), - [sym_return_statement] = STATE(426), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(426), - [sym_do_statement] = STATE(426), - [sym_for_statement] = STATE(426), - [sym_foreach_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_colon_block] = STATE(1591), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(426), - [sym_compound_statement] = STATE(426), - [sym_named_label_statement] = STATE(426), - [sym_expression_statement] = STATE(426), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [28] = { + [sym_empty_statement] = STATE(25), + [sym_function_static_declaration] = STATE(25), + [sym_global_declaration] = STATE(25), + [sym_namespace_definition] = STATE(25), + [sym_namespace_use_declaration] = STATE(25), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(25), + [sym_interface_declaration] = STATE(25), + [sym_enum_declaration] = STATE(25), + [sym_class_declaration] = STATE(25), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(25), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(25), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(25), + [sym_unset_statement] = STATE(25), + [sym_declare_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_foreach_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(25), + [sym_compound_statement] = STATE(25), + [sym_named_label_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(439), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(459), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [29] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(455), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(459), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_text_interpolation] = STATE(29), + [30] = { [sym_empty_statement] = STATE(488), [sym_function_static_declaration] = STATE(488), [sym_global_declaration] = STATE(488), [sym_namespace_definition] = STATE(488), [sym_namespace_use_declaration] = STATE(488), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), [sym_trait_declaration] = STATE(488), [sym_interface_declaration] = STATE(488), [sym_enum_declaration] = STATE(488), [sym_class_declaration] = STATE(488), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), [sym_const_declaration] = STATE(488), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), [sym_echo_statement] = STATE(488), [sym_unset_statement] = STATE(488), [sym_declare_statement] = STATE(488), @@ -17973,47388 +18013,45892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(488), [sym_break_statement] = STATE(488), [sym_return_statement] = STATE(488), - [sym_throw_expression] = STATE(1087), + [sym_throw_expression] = STATE(1038), [sym_while_statement] = STATE(488), [sym_do_statement] = STATE(488), [sym_for_statement] = STATE(488), [sym_foreach_statement] = STATE(488), [sym_if_statement] = STATE(488), - [sym_match_expression] = STATE(1134), + [sym_match_expression] = STATE(1078), [sym_switch_statement] = STATE(488), [sym_compound_statement] = STATE(488), [sym_named_label_statement] = STATE(488), [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(447), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(449), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(451), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(451), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(453), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(455), }, - [30] = { - [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [31] = { + [sym_empty_statement] = STATE(29), + [sym_function_static_declaration] = STATE(29), + [sym_global_declaration] = STATE(29), + [sym_namespace_definition] = STATE(29), + [sym_namespace_use_declaration] = STATE(29), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(29), + [sym_interface_declaration] = STATE(29), + [sym_enum_declaration] = STATE(29), + [sym_class_declaration] = STATE(29), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(29), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(29), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(29), + [sym_unset_statement] = STATE(29), + [sym_declare_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_foreach_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(29), + [sym_compound_statement] = STATE(29), + [sym_named_label_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(461), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [32] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(457), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(461), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(487), - [sym_function_static_declaration] = STATE(487), - [sym_global_declaration] = STATE(487), - [sym_namespace_definition] = STATE(487), - [sym_namespace_use_declaration] = STATE(487), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(487), - [sym_interface_declaration] = STATE(487), - [sym_enum_declaration] = STATE(487), - [sym_class_declaration] = STATE(487), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(487), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(487), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(487), - [sym_unset_statement] = STATE(487), - [sym_declare_statement] = STATE(487), - [sym_try_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym_continue_statement] = STATE(487), - [sym_break_statement] = STATE(487), - [sym_return_statement] = STATE(487), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(487), - [sym_do_statement] = STATE(487), - [sym_for_statement] = STATE(487), - [sym_foreach_statement] = STATE(487), - [sym_if_statement] = STATE(487), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(487), - [sym_compound_statement] = STATE(487), - [sym_named_label_statement] = STATE(487), - [sym_expression_statement] = STATE(487), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [33] = { + [sym_empty_statement] = STATE(489), + [sym_function_static_declaration] = STATE(489), + [sym_global_declaration] = STATE(489), + [sym_namespace_definition] = STATE(489), + [sym_namespace_use_declaration] = STATE(489), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(489), + [sym_interface_declaration] = STATE(489), + [sym_enum_declaration] = STATE(489), + [sym_class_declaration] = STATE(489), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(489), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(489), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(489), + [sym_unset_statement] = STATE(489), + [sym_declare_statement] = STATE(489), + [sym_try_statement] = STATE(489), + [sym_goto_statement] = STATE(489), + [sym_continue_statement] = STATE(489), + [sym_break_statement] = STATE(489), + [sym_return_statement] = STATE(489), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(489), + [sym_do_statement] = STATE(489), + [sym_for_statement] = STATE(489), + [sym_foreach_statement] = STATE(489), + [sym_if_statement] = STATE(489), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(489), + [sym_compound_statement] = STATE(489), + [sym_named_label_statement] = STATE(489), + [sym_expression_statement] = STATE(489), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(459), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(461), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(463), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(467), }, - [32] = { - [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(487), - [sym_function_static_declaration] = STATE(487), - [sym_global_declaration] = STATE(487), - [sym_namespace_definition] = STATE(487), - [sym_namespace_use_declaration] = STATE(487), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(487), - [sym_interface_declaration] = STATE(487), - [sym_enum_declaration] = STATE(487), - [sym_class_declaration] = STATE(487), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(487), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(487), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(487), - [sym_unset_statement] = STATE(487), - [sym_declare_statement] = STATE(487), - [sym_try_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym_continue_statement] = STATE(487), - [sym_break_statement] = STATE(487), - [sym_return_statement] = STATE(487), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(487), - [sym_do_statement] = STATE(487), - [sym_for_statement] = STATE(487), - [sym_foreach_statement] = STATE(487), - [sym_if_statement] = STATE(487), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(487), - [sym_compound_statement] = STATE(487), - [sym_named_label_statement] = STATE(487), - [sym_expression_statement] = STATE(487), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [34] = { + [sym_empty_statement] = STATE(22), + [sym_function_static_declaration] = STATE(22), + [sym_global_declaration] = STATE(22), + [sym_namespace_definition] = STATE(22), + [sym_namespace_use_declaration] = STATE(22), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(22), + [sym_interface_declaration] = STATE(22), + [sym_enum_declaration] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(22), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(22), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(22), + [sym_unset_statement] = STATE(22), + [sym_declare_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_foreach_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(22), + [sym_compound_statement] = STATE(22), + [sym_named_label_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(459), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(461), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(463), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(469), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(429), - [sym_function_static_declaration] = STATE(429), - [sym_global_declaration] = STATE(429), - [sym_namespace_definition] = STATE(429), - [sym_namespace_use_declaration] = STATE(429), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(429), - [sym_interface_declaration] = STATE(429), - [sym_enum_declaration] = STATE(429), - [sym_class_declaration] = STATE(429), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(429), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(429), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(429), - [sym_unset_statement] = STATE(429), - [sym_declare_statement] = STATE(429), - [sym_try_statement] = STATE(429), - [sym_goto_statement] = STATE(429), - [sym_continue_statement] = STATE(429), - [sym_break_statement] = STATE(429), - [sym_return_statement] = STATE(429), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(429), - [sym_do_statement] = STATE(429), - [sym_for_statement] = STATE(429), - [sym_foreach_statement] = STATE(429), - [sym_if_statement] = STATE(429), - [sym_colon_block] = STATE(1591), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(429), - [sym_compound_statement] = STATE(429), - [sym_named_label_statement] = STATE(429), - [sym_expression_statement] = STATE(429), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [35] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(439), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(469), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(552), - [sym_function_static_declaration] = STATE(552), - [sym_global_declaration] = STATE(552), - [sym_namespace_definition] = STATE(552), - [sym_namespace_use_declaration] = STATE(552), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(552), - [sym_interface_declaration] = STATE(552), - [sym_enum_declaration] = STATE(552), - [sym_class_declaration] = STATE(552), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(552), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(552), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(552), - [sym_unset_statement] = STATE(552), - [sym_declare_statement] = STATE(552), - [sym_try_statement] = STATE(552), - [sym_goto_statement] = STATE(552), - [sym_continue_statement] = STATE(552), - [sym_break_statement] = STATE(552), - [sym_return_statement] = STATE(552), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(552), - [sym_do_statement] = STATE(552), - [sym_for_statement] = STATE(552), - [sym_foreach_statement] = STATE(552), - [sym_if_statement] = STATE(552), - [sym_colon_block] = STATE(2492), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(552), - [sym_compound_statement] = STATE(552), - [sym_named_label_statement] = STATE(552), - [sym_expression_statement] = STATE(552), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [36] = { + [sym_empty_statement] = STATE(45), + [sym_function_static_declaration] = STATE(45), + [sym_global_declaration] = STATE(45), + [sym_namespace_definition] = STATE(45), + [sym_namespace_use_declaration] = STATE(45), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(45), + [sym_interface_declaration] = STATE(45), + [sym_enum_declaration] = STATE(45), + [sym_class_declaration] = STATE(45), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(45), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(45), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(45), + [sym_unset_statement] = STATE(45), + [sym_declare_statement] = STATE(45), + [sym_try_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_foreach_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(45), + [sym_compound_statement] = STATE(45), + [sym_named_label_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(471), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [35] = { - [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [37] = { + [sym_empty_statement] = STATE(32), + [sym_function_static_declaration] = STATE(32), + [sym_global_declaration] = STATE(32), + [sym_namespace_definition] = STATE(32), + [sym_namespace_use_declaration] = STATE(32), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(32), + [sym_interface_declaration] = STATE(32), + [sym_enum_declaration] = STATE(32), + [sym_class_declaration] = STATE(32), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(32), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(32), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(32), + [sym_unset_statement] = STATE(32), + [sym_declare_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_foreach_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(32), + [sym_compound_statement] = STATE(32), + [sym_named_label_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(473), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [38] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(465), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(473), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(1570), - [sym_function_static_declaration] = STATE(1570), - [sym_global_declaration] = STATE(1570), - [sym_namespace_definition] = STATE(1570), - [sym_namespace_use_declaration] = STATE(1570), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(1570), - [sym_interface_declaration] = STATE(1570), - [sym_enum_declaration] = STATE(1570), - [sym_class_declaration] = STATE(1570), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(1570), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(1570), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(1570), - [sym_unset_statement] = STATE(1570), - [sym_declare_statement] = STATE(1570), - [sym_try_statement] = STATE(1570), - [sym_goto_statement] = STATE(1570), - [sym_continue_statement] = STATE(1570), - [sym_break_statement] = STATE(1570), - [sym_return_statement] = STATE(1570), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(1570), - [sym_do_statement] = STATE(1570), - [sym_for_statement] = STATE(1570), - [sym_foreach_statement] = STATE(1570), - [sym_if_statement] = STATE(1570), - [sym_colon_block] = STATE(1633), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(1570), - [sym_compound_statement] = STATE(1570), - [sym_named_label_statement] = STATE(1570), - [sym_expression_statement] = STATE(1570), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [39] = { + [sym_empty_statement] = STATE(2032), + [sym_function_static_declaration] = STATE(2032), + [sym_global_declaration] = STATE(2032), + [sym_namespace_definition] = STATE(2032), + [sym_namespace_use_declaration] = STATE(2032), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2032), + [sym_interface_declaration] = STATE(2032), + [sym_enum_declaration] = STATE(2032), + [sym_class_declaration] = STATE(2032), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2032), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2032), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2032), + [sym_unset_statement] = STATE(2032), + [sym_declare_statement] = STATE(2032), + [sym_try_statement] = STATE(2032), + [sym_goto_statement] = STATE(2032), + [sym_continue_statement] = STATE(2032), + [sym_break_statement] = STATE(2032), + [sym_return_statement] = STATE(2032), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2032), + [sym_do_statement] = STATE(2032), + [sym_for_statement] = STATE(2032), + [sym_foreach_statement] = STATE(2032), + [sym_if_statement] = STATE(2032), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2032), + [sym_compound_statement] = STATE(2032), + [sym_named_label_statement] = STATE(2032), + [sym_expression_statement] = STATE(2032), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), [anon_sym_SEMI] = ACTIONS(437), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), [anon_sym_COLON] = ACTIONS(439), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(441), }, - [37] = { - [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [40] = { + [sym_empty_statement] = STATE(463), + [sym_function_static_declaration] = STATE(463), + [sym_global_declaration] = STATE(463), + [sym_namespace_definition] = STATE(463), + [sym_namespace_use_declaration] = STATE(463), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(463), + [sym_interface_declaration] = STATE(463), + [sym_enum_declaration] = STATE(463), + [sym_class_declaration] = STATE(463), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(463), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(463), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(463), + [sym_unset_statement] = STATE(463), + [sym_declare_statement] = STATE(463), + [sym_try_statement] = STATE(463), + [sym_goto_statement] = STATE(463), + [sym_continue_statement] = STATE(463), + [sym_break_statement] = STATE(463), + [sym_return_statement] = STATE(463), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(463), + [sym_do_statement] = STATE(463), + [sym_for_statement] = STATE(463), + [sym_foreach_statement] = STATE(463), + [sym_if_statement] = STATE(463), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(463), + [sym_compound_statement] = STATE(463), + [sym_named_label_statement] = STATE(463), + [sym_expression_statement] = STATE(463), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(48), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(467), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(479), }, - [38] = { - [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [41] = { + [sym_empty_statement] = STATE(422), + [sym_function_static_declaration] = STATE(422), + [sym_global_declaration] = STATE(422), + [sym_namespace_definition] = STATE(422), + [sym_namespace_use_declaration] = STATE(422), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(422), + [sym_interface_declaration] = STATE(422), + [sym_enum_declaration] = STATE(422), + [sym_class_declaration] = STATE(422), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(422), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(422), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(422), + [sym_unset_statement] = STATE(422), + [sym_declare_statement] = STATE(422), + [sym_try_statement] = STATE(422), + [sym_goto_statement] = STATE(422), + [sym_continue_statement] = STATE(422), + [sym_break_statement] = STATE(422), + [sym_return_statement] = STATE(422), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(422), + [sym_do_statement] = STATE(422), + [sym_for_statement] = STATE(422), + [sym_foreach_statement] = STATE(422), + [sym_if_statement] = STATE(422), + [sym_colon_block] = STATE(1614), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(422), + [sym_compound_statement] = STATE(422), + [sym_named_label_statement] = STATE(422), + [sym_expression_statement] = STATE(422), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(469), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [42] = { + [sym_empty_statement] = STATE(537), + [sym_function_static_declaration] = STATE(537), + [sym_global_declaration] = STATE(537), + [sym_namespace_definition] = STATE(537), + [sym_namespace_use_declaration] = STATE(537), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(537), + [sym_interface_declaration] = STATE(537), + [sym_enum_declaration] = STATE(537), + [sym_class_declaration] = STATE(537), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(537), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(537), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(537), + [sym_unset_statement] = STATE(537), + [sym_declare_statement] = STATE(537), + [sym_try_statement] = STATE(537), + [sym_goto_statement] = STATE(537), + [sym_continue_statement] = STATE(537), + [sym_break_statement] = STATE(537), + [sym_return_statement] = STATE(537), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(537), + [sym_do_statement] = STATE(537), + [sym_for_statement] = STATE(537), + [sym_foreach_statement] = STATE(537), + [sym_if_statement] = STATE(537), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(537), + [sym_compound_statement] = STATE(537), + [sym_named_label_statement] = STATE(537), + [sym_expression_statement] = STATE(537), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(471), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(487), }, - [40] = { - [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(2068), - [sym_function_static_declaration] = STATE(2068), - [sym_global_declaration] = STATE(2068), - [sym_namespace_definition] = STATE(2068), - [sym_namespace_use_declaration] = STATE(2068), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2068), - [sym_interface_declaration] = STATE(2068), - [sym_enum_declaration] = STATE(2068), - [sym_class_declaration] = STATE(2068), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2068), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2068), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2068), - [sym_unset_statement] = STATE(2068), - [sym_declare_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_goto_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_break_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2068), - [sym_compound_statement] = STATE(2068), - [sym_named_label_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [43] = { + [sym_empty_statement] = STATE(72), + [sym_function_static_declaration] = STATE(72), + [sym_global_declaration] = STATE(72), + [sym_namespace_definition] = STATE(72), + [sym_namespace_use_declaration] = STATE(72), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(72), + [sym_interface_declaration] = STATE(72), + [sym_enum_declaration] = STATE(72), + [sym_class_declaration] = STATE(72), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(72), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(72), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(72), + [sym_unset_statement] = STATE(72), + [sym_declare_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_foreach_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(72), + [sym_compound_statement] = STATE(72), + [sym_named_label_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(72), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(489), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [44] = { + [sym_empty_statement] = STATE(38), + [sym_function_static_declaration] = STATE(38), + [sym_global_declaration] = STATE(38), + [sym_namespace_definition] = STATE(38), + [sym_namespace_use_declaration] = STATE(38), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(38), + [sym_interface_declaration] = STATE(38), + [sym_enum_declaration] = STATE(38), + [sym_class_declaration] = STATE(38), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(38), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(38), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(38), + [sym_unset_statement] = STATE(38), + [sym_declare_statement] = STATE(38), + [sym_try_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_foreach_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(38), + [sym_compound_statement] = STATE(38), + [sym_named_label_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(38), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(491), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [45] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(493), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_empty_statement] = STATE(2013), + [sym_function_static_declaration] = STATE(2013), + [sym_global_declaration] = STATE(2013), + [sym_namespace_definition] = STATE(2013), + [sym_namespace_use_declaration] = STATE(2013), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2013), + [sym_interface_declaration] = STATE(2013), + [sym_enum_declaration] = STATE(2013), + [sym_class_declaration] = STATE(2013), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2013), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2013), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2013), + [sym_unset_statement] = STATE(2013), + [sym_declare_statement] = STATE(2013), + [sym_try_statement] = STATE(2013), + [sym_goto_statement] = STATE(2013), + [sym_continue_statement] = STATE(2013), + [sym_break_statement] = STATE(2013), + [sym_return_statement] = STATE(2013), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2013), + [sym_do_statement] = STATE(2013), + [sym_for_statement] = STATE(2013), + [sym_foreach_statement] = STATE(2013), + [sym_if_statement] = STATE(2013), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2013), + [sym_compound_statement] = STATE(2013), + [sym_named_label_statement] = STATE(2013), + [sym_expression_statement] = STATE(2013), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(495), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(475), + [anon_sym_COLON] = ACTIONS(497), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(499), }, - [41] = { - [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(525), - [sym_function_static_declaration] = STATE(525), - [sym_global_declaration] = STATE(525), - [sym_namespace_definition] = STATE(525), - [sym_namespace_use_declaration] = STATE(525), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(525), - [sym_interface_declaration] = STATE(525), - [sym_enum_declaration] = STATE(525), - [sym_class_declaration] = STATE(525), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(525), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(525), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(525), - [sym_unset_statement] = STATE(525), - [sym_declare_statement] = STATE(525), - [sym_try_statement] = STATE(525), - [sym_goto_statement] = STATE(525), - [sym_continue_statement] = STATE(525), - [sym_break_statement] = STATE(525), - [sym_return_statement] = STATE(525), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(525), - [sym_do_statement] = STATE(525), - [sym_for_statement] = STATE(525), - [sym_foreach_statement] = STATE(525), - [sym_if_statement] = STATE(525), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(525), - [sym_compound_statement] = STATE(525), - [sym_named_label_statement] = STATE(525), - [sym_expression_statement] = STATE(525), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [47] = { + [sym_empty_statement] = STATE(489), + [sym_function_static_declaration] = STATE(489), + [sym_global_declaration] = STATE(489), + [sym_namespace_definition] = STATE(489), + [sym_namespace_use_declaration] = STATE(489), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(489), + [sym_interface_declaration] = STATE(489), + [sym_enum_declaration] = STATE(489), + [sym_class_declaration] = STATE(489), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(489), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(489), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(489), + [sym_unset_statement] = STATE(489), + [sym_declare_statement] = STATE(489), + [sym_try_statement] = STATE(489), + [sym_goto_statement] = STATE(489), + [sym_continue_statement] = STATE(489), + [sym_break_statement] = STATE(489), + [sym_return_statement] = STATE(489), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(489), + [sym_do_statement] = STATE(489), + [sym_for_statement] = STATE(489), + [sym_foreach_statement] = STATE(489), + [sym_if_statement] = STATE(489), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(489), + [sym_compound_statement] = STATE(489), + [sym_named_label_statement] = STATE(489), + [sym_expression_statement] = STATE(489), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(479), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(481), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(483), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(463), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(465), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(467), }, - [42] = { - [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(525), - [sym_function_static_declaration] = STATE(525), - [sym_global_declaration] = STATE(525), - [sym_namespace_definition] = STATE(525), - [sym_namespace_use_declaration] = STATE(525), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(525), - [sym_interface_declaration] = STATE(525), - [sym_enum_declaration] = STATE(525), - [sym_class_declaration] = STATE(525), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(525), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(525), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(525), - [sym_unset_statement] = STATE(525), - [sym_declare_statement] = STATE(525), - [sym_try_statement] = STATE(525), - [sym_goto_statement] = STATE(525), - [sym_continue_statement] = STATE(525), - [sym_break_statement] = STATE(525), - [sym_return_statement] = STATE(525), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(525), - [sym_do_statement] = STATE(525), - [sym_for_statement] = STATE(525), - [sym_foreach_statement] = STATE(525), - [sym_if_statement] = STATE(525), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(525), - [sym_compound_statement] = STATE(525), - [sym_named_label_statement] = STATE(525), - [sym_expression_statement] = STATE(525), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [48] = { + [sym_empty_statement] = STATE(19), + [sym_function_static_declaration] = STATE(19), + [sym_global_declaration] = STATE(19), + [sym_namespace_definition] = STATE(19), + [sym_namespace_use_declaration] = STATE(19), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(19), + [sym_interface_declaration] = STATE(19), + [sym_enum_declaration] = STATE(19), + [sym_class_declaration] = STATE(19), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(19), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(19), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(19), + [sym_unset_statement] = STATE(19), + [sym_declare_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_foreach_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(19), + [sym_compound_statement] = STATE(19), + [sym_named_label_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(479), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(481), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(483), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(443), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [49] = { + [sym_empty_statement] = STATE(468), + [sym_function_static_declaration] = STATE(468), + [sym_global_declaration] = STATE(468), + [sym_namespace_definition] = STATE(468), + [sym_namespace_use_declaration] = STATE(468), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(468), + [sym_interface_declaration] = STATE(468), + [sym_enum_declaration] = STATE(468), + [sym_class_declaration] = STATE(468), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(468), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(468), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(468), + [sym_unset_statement] = STATE(468), + [sym_declare_statement] = STATE(468), + [sym_try_statement] = STATE(468), + [sym_goto_statement] = STATE(468), + [sym_continue_statement] = STATE(468), + [sym_break_statement] = STATE(468), + [sym_return_statement] = STATE(468), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(468), + [sym_do_statement] = STATE(468), + [sym_for_statement] = STATE(468), + [sym_foreach_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(468), + [sym_compound_statement] = STATE(468), + [sym_named_label_statement] = STATE(468), + [sym_expression_statement] = STATE(468), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(505), + }, + [50] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(485), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(507), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [44] = { - [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [51] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(57), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(487), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(435), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(2052), - [sym_function_static_declaration] = STATE(2052), - [sym_global_declaration] = STATE(2052), - [sym_namespace_definition] = STATE(2052), - [sym_namespace_use_declaration] = STATE(2052), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2052), - [sym_interface_declaration] = STATE(2052), - [sym_enum_declaration] = STATE(2052), - [sym_class_declaration] = STATE(2052), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2052), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2052), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2052), - [sym_unset_statement] = STATE(2052), - [sym_declare_statement] = STATE(2052), - [sym_try_statement] = STATE(2052), - [sym_goto_statement] = STATE(2052), - [sym_continue_statement] = STATE(2052), - [sym_break_statement] = STATE(2052), - [sym_return_statement] = STATE(2052), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2052), - [sym_do_statement] = STATE(2052), - [sym_for_statement] = STATE(2052), - [sym_foreach_statement] = STATE(2052), - [sym_if_statement] = STATE(2052), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2052), - [sym_compound_statement] = STATE(2052), - [sym_named_label_statement] = STATE(2052), - [sym_expression_statement] = STATE(2052), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [52] = { + [sym_empty_statement] = STATE(27), + [sym_function_static_declaration] = STATE(27), + [sym_global_declaration] = STATE(27), + [sym_namespace_definition] = STATE(27), + [sym_namespace_use_declaration] = STATE(27), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(27), + [sym_interface_declaration] = STATE(27), + [sym_enum_declaration] = STATE(27), + [sym_class_declaration] = STATE(27), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(27), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(27), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(27), + [sym_unset_statement] = STATE(27), + [sym_declare_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_foreach_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(27), + [sym_compound_statement] = STATE(27), + [sym_named_label_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(509), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [53] = { + [sym_empty_statement] = STATE(468), + [sym_function_static_declaration] = STATE(468), + [sym_global_declaration] = STATE(468), + [sym_namespace_definition] = STATE(468), + [sym_namespace_use_declaration] = STATE(468), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(468), + [sym_interface_declaration] = STATE(468), + [sym_enum_declaration] = STATE(468), + [sym_class_declaration] = STATE(468), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(468), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(468), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(468), + [sym_unset_statement] = STATE(468), + [sym_declare_statement] = STATE(468), + [sym_try_statement] = STATE(468), + [sym_goto_statement] = STATE(468), + [sym_continue_statement] = STATE(468), + [sym_break_statement] = STATE(468), + [sym_return_statement] = STATE(468), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(468), + [sym_do_statement] = STATE(468), + [sym_for_statement] = STATE(468), + [sym_foreach_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(468), + [sym_compound_statement] = STATE(468), + [sym_named_label_statement] = STATE(468), + [sym_expression_statement] = STATE(468), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(501), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(503), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(505), + }, + [54] = { + [sym_empty_statement] = STATE(50), + [sym_function_static_declaration] = STATE(50), + [sym_global_declaration] = STATE(50), + [sym_namespace_definition] = STATE(50), + [sym_namespace_use_declaration] = STATE(50), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(50), + [sym_interface_declaration] = STATE(50), + [sym_enum_declaration] = STATE(50), + [sym_class_declaration] = STATE(50), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(50), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(50), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(50), + [sym_unset_statement] = STATE(50), + [sym_declare_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_foreach_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(50), + [sym_compound_statement] = STATE(50), + [sym_named_label_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(50), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(511), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [55] = { + [sym_empty_statement] = STATE(1979), + [sym_function_static_declaration] = STATE(1979), + [sym_global_declaration] = STATE(1979), + [sym_namespace_definition] = STATE(1979), + [sym_namespace_use_declaration] = STATE(1979), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1979), + [sym_interface_declaration] = STATE(1979), + [sym_enum_declaration] = STATE(1979), + [sym_class_declaration] = STATE(1979), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1979), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1979), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1979), + [sym_unset_statement] = STATE(1979), + [sym_declare_statement] = STATE(1979), + [sym_try_statement] = STATE(1979), + [sym_goto_statement] = STATE(1979), + [sym_continue_statement] = STATE(1979), + [sym_break_statement] = STATE(1979), + [sym_return_statement] = STATE(1979), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1979), + [sym_do_statement] = STATE(1979), + [sym_for_statement] = STATE(1979), + [sym_foreach_statement] = STATE(1979), + [sym_if_statement] = STATE(1979), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1979), + [sym_compound_statement] = STATE(1979), + [sym_named_label_statement] = STATE(1979), + [sym_expression_statement] = STATE(1979), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(513), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(515), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(517), }, - [46] = { - [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(2052), - [sym_function_static_declaration] = STATE(2052), - [sym_global_declaration] = STATE(2052), - [sym_namespace_definition] = STATE(2052), - [sym_namespace_use_declaration] = STATE(2052), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2052), - [sym_interface_declaration] = STATE(2052), - [sym_enum_declaration] = STATE(2052), - [sym_class_declaration] = STATE(2052), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2052), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2052), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2052), - [sym_unset_statement] = STATE(2052), - [sym_declare_statement] = STATE(2052), - [sym_try_statement] = STATE(2052), - [sym_goto_statement] = STATE(2052), - [sym_continue_statement] = STATE(2052), - [sym_break_statement] = STATE(2052), - [sym_return_statement] = STATE(2052), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2052), - [sym_do_statement] = STATE(2052), - [sym_for_statement] = STATE(2052), - [sym_foreach_statement] = STATE(2052), - [sym_if_statement] = STATE(2052), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2052), - [sym_compound_statement] = STATE(2052), - [sym_named_label_statement] = STATE(2052), - [sym_expression_statement] = STATE(2052), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [56] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(519), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [57] = { + [sym_empty_statement] = STATE(1948), + [sym_function_static_declaration] = STATE(1948), + [sym_global_declaration] = STATE(1948), + [sym_namespace_definition] = STATE(1948), + [sym_namespace_use_declaration] = STATE(1948), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1948), + [sym_interface_declaration] = STATE(1948), + [sym_enum_declaration] = STATE(1948), + [sym_class_declaration] = STATE(1948), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1948), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1948), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1948), + [sym_unset_statement] = STATE(1948), + [sym_declare_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_goto_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_break_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1948), + [sym_compound_statement] = STATE(1948), + [sym_named_label_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(521), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(523), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(525), }, - [47] = { - [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(2009), - [sym_function_static_declaration] = STATE(2009), - [sym_global_declaration] = STATE(2009), - [sym_namespace_definition] = STATE(2009), - [sym_namespace_use_declaration] = STATE(2009), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2009), - [sym_interface_declaration] = STATE(2009), - [sym_enum_declaration] = STATE(2009), - [sym_class_declaration] = STATE(2009), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2009), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2009), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2009), - [sym_unset_statement] = STATE(2009), - [sym_declare_statement] = STATE(2009), - [sym_try_statement] = STATE(2009), - [sym_goto_statement] = STATE(2009), - [sym_continue_statement] = STATE(2009), - [sym_break_statement] = STATE(2009), - [sym_return_statement] = STATE(2009), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2009), - [sym_do_statement] = STATE(2009), - [sym_for_statement] = STATE(2009), - [sym_foreach_statement] = STATE(2009), - [sym_if_statement] = STATE(2009), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2009), - [sym_compound_statement] = STATE(2009), - [sym_named_label_statement] = STATE(2009), - [sym_expression_statement] = STATE(2009), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [58] = { + [sym_empty_statement] = STATE(1935), + [sym_function_static_declaration] = STATE(1935), + [sym_global_declaration] = STATE(1935), + [sym_namespace_definition] = STATE(1935), + [sym_namespace_use_declaration] = STATE(1935), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1935), + [sym_interface_declaration] = STATE(1935), + [sym_enum_declaration] = STATE(1935), + [sym_class_declaration] = STATE(1935), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1935), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1935), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1935), + [sym_unset_statement] = STATE(1935), + [sym_declare_statement] = STATE(1935), + [sym_try_statement] = STATE(1935), + [sym_goto_statement] = STATE(1935), + [sym_continue_statement] = STATE(1935), + [sym_break_statement] = STATE(1935), + [sym_return_statement] = STATE(1935), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1935), + [sym_do_statement] = STATE(1935), + [sym_for_statement] = STATE(1935), + [sym_foreach_statement] = STATE(1935), + [sym_if_statement] = STATE(1935), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1935), + [sym_compound_statement] = STATE(1935), + [sym_named_label_statement] = STATE(1935), + [sym_expression_statement] = STATE(1935), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(527), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(497), + [anon_sym_COLON] = ACTIONS(529), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(531), }, - [48] = { - [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [59] = { + [sym_empty_statement] = STATE(463), + [sym_function_static_declaration] = STATE(463), + [sym_global_declaration] = STATE(463), + [sym_namespace_definition] = STATE(463), + [sym_namespace_use_declaration] = STATE(463), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(463), + [sym_interface_declaration] = STATE(463), + [sym_enum_declaration] = STATE(463), + [sym_class_declaration] = STATE(463), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(463), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(463), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(463), + [sym_unset_statement] = STATE(463), + [sym_declare_statement] = STATE(463), + [sym_try_statement] = STATE(463), + [sym_goto_statement] = STATE(463), + [sym_continue_statement] = STATE(463), + [sym_break_statement] = STATE(463), + [sym_return_statement] = STATE(463), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(463), + [sym_do_statement] = STATE(463), + [sym_for_statement] = STATE(463), + [sym_foreach_statement] = STATE(463), + [sym_if_statement] = STATE(463), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(463), + [sym_compound_statement] = STATE(463), + [sym_named_label_statement] = STATE(463), + [sym_expression_statement] = STATE(463), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(501), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(475), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(477), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(479), }, - [49] = { - [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(1977), - [sym_function_static_declaration] = STATE(1977), - [sym_global_declaration] = STATE(1977), - [sym_namespace_definition] = STATE(1977), - [sym_namespace_use_declaration] = STATE(1977), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(1977), - [sym_interface_declaration] = STATE(1977), - [sym_enum_declaration] = STATE(1977), - [sym_class_declaration] = STATE(1977), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(1977), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(1977), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(1977), - [sym_unset_statement] = STATE(1977), - [sym_declare_statement] = STATE(1977), - [sym_try_statement] = STATE(1977), - [sym_goto_statement] = STATE(1977), - [sym_continue_statement] = STATE(1977), - [sym_break_statement] = STATE(1977), - [sym_return_statement] = STATE(1977), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(1977), - [sym_do_statement] = STATE(1977), - [sym_for_statement] = STATE(1977), - [sym_foreach_statement] = STATE(1977), - [sym_if_statement] = STATE(1977), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(1977), - [sym_compound_statement] = STATE(1977), - [sym_named_label_statement] = STATE(1977), - [sym_expression_statement] = STATE(1977), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [60] = { + [sym_empty_statement] = STATE(56), + [sym_function_static_declaration] = STATE(56), + [sym_global_declaration] = STATE(56), + [sym_namespace_definition] = STATE(56), + [sym_namespace_use_declaration] = STATE(56), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(56), + [sym_interface_declaration] = STATE(56), + [sym_enum_declaration] = STATE(56), + [sym_class_declaration] = STATE(56), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(56), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(56), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(56), + [sym_unset_statement] = STATE(56), + [sym_declare_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_foreach_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(56), + [sym_compound_statement] = STATE(56), + [sym_named_label_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(533), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_empty_statement] = STATE(24), + [sym_function_static_declaration] = STATE(24), + [sym_global_declaration] = STATE(24), + [sym_namespace_definition] = STATE(24), + [sym_namespace_use_declaration] = STATE(24), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(24), + [sym_interface_declaration] = STATE(24), + [sym_enum_declaration] = STATE(24), + [sym_class_declaration] = STATE(24), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(24), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(24), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(24), + [sym_unset_statement] = STATE(24), + [sym_declare_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_foreach_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(24), + [sym_compound_statement] = STATE(24), + [sym_named_label_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(535), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_empty_statement] = STATE(67), + [sym_function_static_declaration] = STATE(67), + [sym_global_declaration] = STATE(67), + [sym_namespace_definition] = STATE(67), + [sym_namespace_use_declaration] = STATE(67), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(67), + [sym_interface_declaration] = STATE(67), + [sym_enum_declaration] = STATE(67), + [sym_class_declaration] = STATE(67), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(67), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(67), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(67), + [sym_unset_statement] = STATE(67), + [sym_declare_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_foreach_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(67), + [sym_compound_statement] = STATE(67), + [sym_named_label_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(67), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(537), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [63] = { + [sym_empty_statement] = STATE(497), + [sym_function_static_declaration] = STATE(497), + [sym_global_declaration] = STATE(497), + [sym_namespace_definition] = STATE(497), + [sym_namespace_use_declaration] = STATE(497), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(497), + [sym_interface_declaration] = STATE(497), + [sym_enum_declaration] = STATE(497), + [sym_class_declaration] = STATE(497), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(497), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(497), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(497), + [sym_unset_statement] = STATE(497), + [sym_declare_statement] = STATE(497), + [sym_try_statement] = STATE(497), + [sym_goto_statement] = STATE(497), + [sym_continue_statement] = STATE(497), + [sym_break_statement] = STATE(497), + [sym_return_statement] = STATE(497), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(497), + [sym_do_statement] = STATE(497), + [sym_for_statement] = STATE(497), + [sym_foreach_statement] = STATE(497), + [sym_if_statement] = STATE(497), + [sym_colon_block] = STATE(2449), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(497), + [sym_compound_statement] = STATE(497), + [sym_named_label_statement] = STATE(497), + [sym_expression_statement] = STATE(497), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym_empty_statement] = STATE(497), + [sym_function_static_declaration] = STATE(497), + [sym_global_declaration] = STATE(497), + [sym_namespace_definition] = STATE(497), + [sym_namespace_use_declaration] = STATE(497), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(497), + [sym_interface_declaration] = STATE(497), + [sym_enum_declaration] = STATE(497), + [sym_class_declaration] = STATE(497), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(497), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(497), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(497), + [sym_unset_statement] = STATE(497), + [sym_declare_statement] = STATE(497), + [sym_try_statement] = STATE(497), + [sym_goto_statement] = STATE(497), + [sym_continue_statement] = STATE(497), + [sym_break_statement] = STATE(497), + [sym_return_statement] = STATE(497), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(497), + [sym_do_statement] = STATE(497), + [sym_for_statement] = STATE(497), + [sym_foreach_statement] = STATE(497), + [sym_if_statement] = STATE(497), + [sym_colon_block] = STATE(2449), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(497), + [sym_compound_statement] = STATE(497), + [sym_named_label_statement] = STATE(497), + [sym_expression_statement] = STATE(497), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(357), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [65] = { + [sym_empty_statement] = STATE(2013), + [sym_function_static_declaration] = STATE(2013), + [sym_global_declaration] = STATE(2013), + [sym_namespace_definition] = STATE(2013), + [sym_namespace_use_declaration] = STATE(2013), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2013), + [sym_interface_declaration] = STATE(2013), + [sym_enum_declaration] = STATE(2013), + [sym_class_declaration] = STATE(2013), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2013), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2013), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2013), + [sym_unset_statement] = STATE(2013), + [sym_declare_statement] = STATE(2013), + [sym_try_statement] = STATE(2013), + [sym_goto_statement] = STATE(2013), + [sym_continue_statement] = STATE(2013), + [sym_break_statement] = STATE(2013), + [sym_return_statement] = STATE(2013), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2013), + [sym_do_statement] = STATE(2013), + [sym_for_statement] = STATE(2013), + [sym_foreach_statement] = STATE(2013), + [sym_if_statement] = STATE(2013), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2013), + [sym_compound_statement] = STATE(2013), + [sym_named_label_statement] = STATE(2013), + [sym_expression_statement] = STATE(2013), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(495), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(497), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(507), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(499), }, - [50] = { - [sym_text_interpolation] = STATE(50), - [sym_empty_statement] = STATE(1971), - [sym_function_static_declaration] = STATE(1971), - [sym_global_declaration] = STATE(1971), - [sym_namespace_definition] = STATE(1971), - [sym_namespace_use_declaration] = STATE(1971), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(1971), - [sym_interface_declaration] = STATE(1971), - [sym_enum_declaration] = STATE(1971), - [sym_class_declaration] = STATE(1971), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(1971), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(1971), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(1971), - [sym_unset_statement] = STATE(1971), - [sym_declare_statement] = STATE(1971), - [sym_try_statement] = STATE(1971), - [sym_goto_statement] = STATE(1971), - [sym_continue_statement] = STATE(1971), - [sym_break_statement] = STATE(1971), - [sym_return_statement] = STATE(1971), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(1971), - [sym_do_statement] = STATE(1971), - [sym_for_statement] = STATE(1971), - [sym_foreach_statement] = STATE(1971), - [sym_if_statement] = STATE(1971), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(1971), - [sym_compound_statement] = STATE(1971), - [sym_named_label_statement] = STATE(1971), - [sym_expression_statement] = STATE(1971), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [66] = { + [sym_empty_statement] = STATE(423), + [sym_function_static_declaration] = STATE(423), + [sym_global_declaration] = STATE(423), + [sym_namespace_definition] = STATE(423), + [sym_namespace_use_declaration] = STATE(423), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(423), + [sym_interface_declaration] = STATE(423), + [sym_enum_declaration] = STATE(423), + [sym_class_declaration] = STATE(423), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(423), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(423), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(423), + [sym_unset_statement] = STATE(423), + [sym_declare_statement] = STATE(423), + [sym_try_statement] = STATE(423), + [sym_goto_statement] = STATE(423), + [sym_continue_statement] = STATE(423), + [sym_break_statement] = STATE(423), + [sym_return_statement] = STATE(423), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(423), + [sym_do_statement] = STATE(423), + [sym_for_statement] = STATE(423), + [sym_foreach_statement] = STATE(423), + [sym_if_statement] = STATE(423), + [sym_colon_block] = STATE(1614), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(423), + [sym_compound_statement] = STATE(423), + [sym_named_label_statement] = STATE(423), + [sym_expression_statement] = STATE(423), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [67] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(539), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [68] = { + [sym_empty_statement] = STATE(1581), + [sym_function_static_declaration] = STATE(1581), + [sym_global_declaration] = STATE(1581), + [sym_namespace_definition] = STATE(1581), + [sym_namespace_use_declaration] = STATE(1581), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1581), + [sym_interface_declaration] = STATE(1581), + [sym_enum_declaration] = STATE(1581), + [sym_class_declaration] = STATE(1581), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1581), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1581), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1581), + [sym_unset_statement] = STATE(1581), + [sym_declare_statement] = STATE(1581), + [sym_try_statement] = STATE(1581), + [sym_goto_statement] = STATE(1581), + [sym_continue_statement] = STATE(1581), + [sym_break_statement] = STATE(1581), + [sym_return_statement] = STATE(1581), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1581), + [sym_do_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_foreach_statement] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_colon_block] = STATE(1557), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1581), + [sym_compound_statement] = STATE(1581), + [sym_named_label_statement] = STATE(1581), + [sym_expression_statement] = STATE(1581), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_SEMI] = ACTIONS(445), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(433), + [anon_sym_COLON] = ACTIONS(481), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(435), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(2102), - [sym_function_static_declaration] = STATE(2102), - [sym_global_declaration] = STATE(2102), - [sym_namespace_definition] = STATE(2102), - [sym_namespace_use_declaration] = STATE(2102), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2102), - [sym_interface_declaration] = STATE(2102), - [sym_enum_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2102), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2102), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2102), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2102), - [sym_unset_statement] = STATE(2102), - [sym_declare_statement] = STATE(2102), - [sym_try_statement] = STATE(2102), - [sym_goto_statement] = STATE(2102), - [sym_continue_statement] = STATE(2102), - [sym_break_statement] = STATE(2102), - [sym_return_statement] = STATE(2102), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2102), - [sym_do_statement] = STATE(2102), - [sym_for_statement] = STATE(2102), - [sym_foreach_statement] = STATE(2102), - [sym_if_statement] = STATE(2102), - [sym_colon_block] = STATE(2516), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2102), - [sym_compound_statement] = STATE(2102), - [sym_named_label_statement] = STATE(2102), - [sym_expression_statement] = STATE(2102), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [69] = { + [sym_empty_statement] = STATE(1564), + [sym_function_static_declaration] = STATE(1564), + [sym_global_declaration] = STATE(1564), + [sym_namespace_definition] = STATE(1564), + [sym_namespace_use_declaration] = STATE(1564), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1564), + [sym_interface_declaration] = STATE(1564), + [sym_enum_declaration] = STATE(1564), + [sym_class_declaration] = STATE(1564), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1564), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1564), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1564), + [sym_unset_statement] = STATE(1564), + [sym_declare_statement] = STATE(1564), + [sym_try_statement] = STATE(1564), + [sym_goto_statement] = STATE(1564), + [sym_continue_statement] = STATE(1564), + [sym_break_statement] = STATE(1564), + [sym_return_statement] = STATE(1564), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1564), + [sym_do_statement] = STATE(1564), + [sym_for_statement] = STATE(1564), + [sym_foreach_statement] = STATE(1564), + [sym_if_statement] = STATE(1564), + [sym_colon_block] = STATE(1557), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1564), + [sym_compound_statement] = STATE(1564), + [sym_named_label_statement] = STATE(1564), + [sym_expression_statement] = STATE(1564), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(445), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(481), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(1977), - [sym_function_static_declaration] = STATE(1977), - [sym_global_declaration] = STATE(1977), - [sym_namespace_definition] = STATE(1977), - [sym_namespace_use_declaration] = STATE(1977), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(1977), - [sym_interface_declaration] = STATE(1977), - [sym_enum_declaration] = STATE(1977), - [sym_class_declaration] = STATE(1977), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(1977), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(1977), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(1977), - [sym_unset_statement] = STATE(1977), - [sym_declare_statement] = STATE(1977), - [sym_try_statement] = STATE(1977), - [sym_goto_statement] = STATE(1977), - [sym_continue_statement] = STATE(1977), - [sym_break_statement] = STATE(1977), - [sym_return_statement] = STATE(1977), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(1977), - [sym_do_statement] = STATE(1977), - [sym_for_statement] = STATE(1977), - [sym_foreach_statement] = STATE(1977), - [sym_if_statement] = STATE(1977), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(1977), - [sym_compound_statement] = STATE(1977), - [sym_named_label_statement] = STATE(1977), - [sym_expression_statement] = STATE(1977), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [70] = { + [sym_empty_statement] = STATE(1979), + [sym_function_static_declaration] = STATE(1979), + [sym_global_declaration] = STATE(1979), + [sym_namespace_definition] = STATE(1979), + [sym_namespace_use_declaration] = STATE(1979), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1979), + [sym_interface_declaration] = STATE(1979), + [sym_enum_declaration] = STATE(1979), + [sym_class_declaration] = STATE(1979), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1979), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1979), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1979), + [sym_unset_statement] = STATE(1979), + [sym_declare_statement] = STATE(1979), + [sym_try_statement] = STATE(1979), + [sym_goto_statement] = STATE(1979), + [sym_continue_statement] = STATE(1979), + [sym_break_statement] = STATE(1979), + [sym_return_statement] = STATE(1979), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1979), + [sym_do_statement] = STATE(1979), + [sym_for_statement] = STATE(1979), + [sym_foreach_statement] = STATE(1979), + [sym_if_statement] = STATE(1979), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1979), + [sym_compound_statement] = STATE(1979), + [sym_named_label_statement] = STATE(1979), + [sym_expression_statement] = STATE(1979), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(513), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(515), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), + [aux_sym_throw_expression_token1] = ACTIONS(71), [aux_sym_while_statement_token1] = ACTIONS(405), [aux_sym_do_statement_token1] = ACTIONS(407), [aux_sym_for_statement_token1] = ACTIONS(409), [aux_sym_foreach_statement_token1] = ACTIONS(411), [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(507), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(517), }, - [53] = { - [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(2068), - [sym_function_static_declaration] = STATE(2068), - [sym_global_declaration] = STATE(2068), - [sym_namespace_definition] = STATE(2068), - [sym_namespace_use_declaration] = STATE(2068), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2068), - [sym_interface_declaration] = STATE(2068), - [sym_enum_declaration] = STATE(2068), - [sym_class_declaration] = STATE(2068), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2068), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2068), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2068), - [sym_unset_statement] = STATE(2068), - [sym_declare_statement] = STATE(2068), - [sym_try_statement] = STATE(2068), - [sym_goto_statement] = STATE(2068), - [sym_continue_statement] = STATE(2068), - [sym_break_statement] = STATE(2068), - [sym_return_statement] = STATE(2068), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2068), - [sym_do_statement] = STATE(2068), - [sym_for_statement] = STATE(2068), - [sym_foreach_statement] = STATE(2068), - [sym_if_statement] = STATE(2068), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2068), - [sym_compound_statement] = STATE(2068), - [sym_named_label_statement] = STATE(2068), - [sym_expression_statement] = STATE(2068), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [71] = { + [sym_empty_statement] = STATE(2064), + [sym_function_static_declaration] = STATE(2064), + [sym_global_declaration] = STATE(2064), + [sym_namespace_definition] = STATE(2064), + [sym_namespace_use_declaration] = STATE(2064), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2064), + [sym_interface_declaration] = STATE(2064), + [sym_enum_declaration] = STATE(2064), + [sym_class_declaration] = STATE(2064), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2064), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2064), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2064), + [sym_unset_statement] = STATE(2064), + [sym_declare_statement] = STATE(2064), + [sym_try_statement] = STATE(2064), + [sym_goto_statement] = STATE(2064), + [sym_continue_statement] = STATE(2064), + [sym_break_statement] = STATE(2064), + [sym_return_statement] = STATE(2064), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2064), + [sym_do_statement] = STATE(2064), + [sym_for_statement] = STATE(2064), + [sym_foreach_statement] = STATE(2064), + [sym_if_statement] = STATE(2064), + [sym_colon_block] = STATE(2474), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2064), + [sym_compound_statement] = STATE(2064), + [sym_named_label_statement] = STATE(2064), + [sym_expression_statement] = STATE(2064), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(445), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(475), + [anon_sym_COLON] = ACTIONS(357), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), + [aux_sym_throw_expression_token1] = ACTIONS(71), [aux_sym_while_statement_token1] = ACTIONS(405), [aux_sym_do_statement_token1] = ACTIONS(407), [aux_sym_for_statement_token1] = ACTIONS(409), [aux_sym_foreach_statement_token1] = ACTIONS(411), [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(2009), - [sym_function_static_declaration] = STATE(2009), - [sym_global_declaration] = STATE(2009), - [sym_namespace_definition] = STATE(2009), - [sym_namespace_use_declaration] = STATE(2009), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2009), - [sym_interface_declaration] = STATE(2009), - [sym_enum_declaration] = STATE(2009), - [sym_class_declaration] = STATE(2009), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2009), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2009), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2009), - [sym_unset_statement] = STATE(2009), - [sym_declare_statement] = STATE(2009), - [sym_try_statement] = STATE(2009), - [sym_goto_statement] = STATE(2009), - [sym_continue_statement] = STATE(2009), - [sym_break_statement] = STATE(2009), - [sym_return_statement] = STATE(2009), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2009), - [sym_do_statement] = STATE(2009), - [sym_for_statement] = STATE(2009), - [sym_foreach_statement] = STATE(2009), - [sym_if_statement] = STATE(2009), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2009), - [sym_compound_statement] = STATE(2009), - [sym_named_label_statement] = STATE(2009), - [sym_expression_statement] = STATE(2009), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [72] = { + [sym_empty_statement] = STATE(2), + [sym_function_static_declaration] = STATE(2), + [sym_global_declaration] = STATE(2), + [sym_namespace_definition] = STATE(2), + [sym_namespace_use_declaration] = STATE(2), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2), + [sym_interface_declaration] = STATE(2), + [sym_enum_declaration] = STATE(2), + [sym_class_declaration] = STATE(2), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(2), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(2), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2), + [sym_unset_statement] = STATE(2), + [sym_declare_statement] = STATE(2), + [sym_try_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_foreach_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2), + [sym_compound_statement] = STATE(2), + [sym_named_label_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [aux_sym_declare_statement_token2] = ACTIONS(541), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [73] = { + [sym_empty_statement] = STATE(1948), + [sym_function_static_declaration] = STATE(1948), + [sym_global_declaration] = STATE(1948), + [sym_namespace_definition] = STATE(1948), + [sym_namespace_use_declaration] = STATE(1948), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1948), + [sym_interface_declaration] = STATE(1948), + [sym_enum_declaration] = STATE(1948), + [sym_class_declaration] = STATE(1948), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1948), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1948), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1948), + [sym_unset_statement] = STATE(1948), + [sym_declare_statement] = STATE(1948), + [sym_try_statement] = STATE(1948), + [sym_goto_statement] = STATE(1948), + [sym_continue_statement] = STATE(1948), + [sym_break_statement] = STATE(1948), + [sym_return_statement] = STATE(1948), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1948), + [sym_do_statement] = STATE(1948), + [sym_for_statement] = STATE(1948), + [sym_foreach_statement] = STATE(1948), + [sym_if_statement] = STATE(1948), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1948), + [sym_compound_statement] = STATE(1948), + [sym_named_label_statement] = STATE(1948), + [sym_expression_statement] = STATE(1948), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(521), [aux_sym_function_static_declaration_token1] = ACTIONS(369), [aux_sym_global_declaration_token1] = ACTIONS(371), [aux_sym_namespace_definition_token1] = ACTIONS(373), [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(379), [aux_sym_trait_declaration_token1] = ACTIONS(381), [aux_sym_interface_declaration_token1] = ACTIONS(383), [aux_sym_enum_declaration_token1] = ACTIONS(385), - [anon_sym_COLON] = ACTIONS(497), + [anon_sym_COLON] = ACTIONS(523), [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), [aux_sym_echo_statement_token1] = ACTIONS(389), [anon_sym_unset] = ACTIONS(391), [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), + [sym_float] = ACTIONS(59), [aux_sym_try_statement_token1] = ACTIONS(395), [aux_sym_goto_statement_token1] = ACTIONS(397), [aux_sym_continue_statement_token1] = ACTIONS(399), [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), + [sym_integer] = ACTIONS(59), [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), + [aux_sym_throw_expression_token1] = ACTIONS(71), [aux_sym_while_statement_token1] = ACTIONS(405), [aux_sym_do_statement_token1] = ACTIONS(407), [aux_sym_for_statement_token1] = ACTIONS(409), [aux_sym_foreach_statement_token1] = ACTIONS(411), [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), + [aux_sym_match_expression_token1] = ACTIONS(83), [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(525), }, - [55] = { - [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [74] = { + [sym_empty_statement] = STATE(1935), + [sym_function_static_declaration] = STATE(1935), + [sym_global_declaration] = STATE(1935), + [sym_namespace_definition] = STATE(1935), + [sym_namespace_use_declaration] = STATE(1935), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(1935), + [sym_interface_declaration] = STATE(1935), + [sym_enum_declaration] = STATE(1935), + [sym_class_declaration] = STATE(1935), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(1935), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(1935), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(1935), + [sym_unset_statement] = STATE(1935), + [sym_declare_statement] = STATE(1935), + [sym_try_statement] = STATE(1935), + [sym_goto_statement] = STATE(1935), + [sym_continue_statement] = STATE(1935), + [sym_break_statement] = STATE(1935), + [sym_return_statement] = STATE(1935), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(1935), + [sym_do_statement] = STATE(1935), + [sym_for_statement] = STATE(1935), + [sym_foreach_statement] = STATE(1935), + [sym_if_statement] = STATE(1935), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(1935), + [sym_compound_statement] = STATE(1935), + [sym_named_label_statement] = STATE(1935), + [sym_expression_statement] = STATE(1935), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(509), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(527), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(529), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(531), }, - [56] = { - [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [75] = { + [sym_empty_statement] = STATE(51), + [sym_function_static_declaration] = STATE(51), + [sym_global_declaration] = STATE(51), + [sym_namespace_definition] = STATE(51), + [sym_namespace_use_declaration] = STATE(51), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(51), + [sym_interface_declaration] = STATE(51), + [sym_enum_declaration] = STATE(51), + [sym_class_declaration] = STATE(51), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(51), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(51), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(51), + [sym_unset_statement] = STATE(51), + [sym_declare_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_foreach_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(51), + [sym_compound_statement] = STATE(51), + [sym_named_label_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(511), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_program_repeat1] = STATE(51), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_for_statement_token2] = ACTIONS(543), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [76] = { + [sym_empty_statement] = STATE(537), + [sym_function_static_declaration] = STATE(537), + [sym_global_declaration] = STATE(537), + [sym_namespace_definition] = STATE(537), + [sym_namespace_use_declaration] = STATE(537), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(537), + [sym_interface_declaration] = STATE(537), + [sym_enum_declaration] = STATE(537), + [sym_class_declaration] = STATE(537), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(537), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(537), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(537), + [sym_unset_statement] = STATE(537), + [sym_declare_statement] = STATE(537), + [sym_try_statement] = STATE(537), + [sym_goto_statement] = STATE(537), + [sym_continue_statement] = STATE(537), + [sym_break_statement] = STATE(537), + [sym_return_statement] = STATE(537), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(537), + [sym_do_statement] = STATE(537), + [sym_for_statement] = STATE(537), + [sym_foreach_statement] = STATE(537), + [sym_if_statement] = STATE(537), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(537), + [sym_compound_statement] = STATE(537), + [sym_named_label_statement] = STATE(537), + [sym_expression_statement] = STATE(537), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(513), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(483), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [anon_sym_COLON] = ACTIONS(485), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(487), }, - [58] = { - [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [77] = { + [sym_empty_statement] = STATE(2510), + [sym_function_static_declaration] = STATE(2510), + [sym_global_declaration] = STATE(2510), + [sym_namespace_definition] = STATE(2510), + [sym_namespace_use_declaration] = STATE(2510), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2510), + [sym_interface_declaration] = STATE(2510), + [sym_enum_declaration] = STATE(2510), + [sym_class_declaration] = STATE(2510), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2510), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2510), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2510), + [sym_unset_statement] = STATE(2510), + [sym_declare_statement] = STATE(2510), + [sym_try_statement] = STATE(2510), + [sym_goto_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_return_statement] = STATE(2510), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2510), + [sym_do_statement] = STATE(2510), + [sym_for_statement] = STATE(2510), + [sym_foreach_statement] = STATE(2510), + [sym_if_statement] = STATE(2510), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2510), + [sym_compound_statement] = STATE(2510), + [sym_named_label_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(73), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(513), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [78] = { + [sym_empty_statement] = STATE(2025), + [sym_function_static_declaration] = STATE(2025), + [sym_global_declaration] = STATE(2025), + [sym_namespace_definition] = STATE(2025), + [sym_namespace_use_declaration] = STATE(2025), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2025), + [sym_interface_declaration] = STATE(2025), + [sym_enum_declaration] = STATE(2025), + [sym_class_declaration] = STATE(2025), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2025), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2025), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2025), + [sym_unset_statement] = STATE(2025), + [sym_declare_statement] = STATE(2025), + [sym_try_statement] = STATE(2025), + [sym_goto_statement] = STATE(2025), + [sym_continue_statement] = STATE(2025), + [sym_break_statement] = STATE(2025), + [sym_return_statement] = STATE(2025), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2025), + [sym_do_statement] = STATE(2025), + [sym_for_statement] = STATE(2025), + [sym_foreach_statement] = STATE(2025), + [sym_if_statement] = STATE(2025), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2025), + [sym_compound_statement] = STATE(2025), + [sym_named_label_statement] = STATE(2025), + [sym_expression_statement] = STATE(2025), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(515), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(481), - [sym_function_static_declaration] = STATE(481), - [sym_global_declaration] = STATE(481), - [sym_namespace_definition] = STATE(481), - [sym_namespace_use_declaration] = STATE(481), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(481), - [sym_interface_declaration] = STATE(481), - [sym_enum_declaration] = STATE(481), - [sym_class_declaration] = STATE(481), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(481), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(481), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(481), - [sym_unset_statement] = STATE(481), - [sym_declare_statement] = STATE(481), - [sym_try_statement] = STATE(481), - [sym_goto_statement] = STATE(481), - [sym_continue_statement] = STATE(481), - [sym_break_statement] = STATE(481), - [sym_return_statement] = STATE(481), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(481), - [sym_do_statement] = STATE(481), - [sym_for_statement] = STATE(481), - [sym_foreach_statement] = STATE(481), - [sym_if_statement] = STATE(481), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(481), - [sym_compound_statement] = STATE(481), - [sym_named_label_statement] = STATE(481), - [sym_expression_statement] = STATE(481), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [79] = { + [sym_empty_statement] = STATE(2025), + [sym_function_static_declaration] = STATE(2025), + [sym_global_declaration] = STATE(2025), + [sym_namespace_definition] = STATE(2025), + [sym_namespace_use_declaration] = STATE(2025), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2025), + [sym_interface_declaration] = STATE(2025), + [sym_enum_declaration] = STATE(2025), + [sym_class_declaration] = STATE(2025), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2025), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2025), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2025), + [sym_unset_statement] = STATE(2025), + [sym_declare_statement] = STATE(2025), + [sym_try_statement] = STATE(2025), + [sym_goto_statement] = STATE(2025), + [sym_continue_statement] = STATE(2025), + [sym_break_statement] = STATE(2025), + [sym_return_statement] = STATE(2025), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2025), + [sym_do_statement] = STATE(2025), + [sym_for_statement] = STATE(2025), + [sym_foreach_statement] = STATE(2025), + [sym_if_statement] = STATE(2025), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2025), + [sym_compound_statement] = STATE(2025), + [sym_named_label_statement] = STATE(2025), + [sym_expression_statement] = STATE(2025), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(517), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(519), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(521), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [80] = { + [sym_empty_statement] = STATE(478), + [sym_function_static_declaration] = STATE(478), + [sym_global_declaration] = STATE(478), + [sym_namespace_definition] = STATE(478), + [sym_namespace_use_declaration] = STATE(478), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(478), + [sym_interface_declaration] = STATE(478), + [sym_enum_declaration] = STATE(478), + [sym_class_declaration] = STATE(478), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(478), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(478), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(478), + [sym_unset_statement] = STATE(478), + [sym_declare_statement] = STATE(478), + [sym_try_statement] = STATE(478), + [sym_goto_statement] = STATE(478), + [sym_continue_statement] = STATE(478), + [sym_break_statement] = STATE(478), + [sym_return_statement] = STATE(478), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(478), + [sym_do_statement] = STATE(478), + [sym_for_statement] = STATE(478), + [sym_foreach_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(478), + [sym_compound_statement] = STATE(478), + [sym_named_label_statement] = STATE(478), + [sym_expression_statement] = STATE(478), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(523), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_text_interpolation] = STATE(62), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [81] = { + [sym_empty_statement] = STATE(555), + [sym_function_static_declaration] = STATE(555), + [sym_global_declaration] = STATE(555), + [sym_namespace_definition] = STATE(555), + [sym_namespace_use_declaration] = STATE(555), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(555), + [sym_interface_declaration] = STATE(555), + [sym_enum_declaration] = STATE(555), + [sym_class_declaration] = STATE(555), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(555), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(555), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(555), + [sym_unset_statement] = STATE(555), + [sym_declare_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_goto_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_foreach_statement] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(555), + [sym_compound_statement] = STATE(555), + [sym_named_label_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(515), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(345), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(347), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(349), + [aux_sym_foreach_statement_token1] = ACTIONS(351), + [aux_sym_if_statement_token1] = ACTIONS(353), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [82] = { + [sym_empty_statement] = STATE(2541), + [sym_function_static_declaration] = STATE(2541), + [sym_global_declaration] = STATE(2541), + [sym_namespace_definition] = STATE(2541), + [sym_namespace_use_declaration] = STATE(2541), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2541), + [sym_interface_declaration] = STATE(2541), + [sym_enum_declaration] = STATE(2541), + [sym_class_declaration] = STATE(2541), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2541), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2541), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2541), + [sym_unset_statement] = STATE(2541), + [sym_declare_statement] = STATE(2541), + [sym_try_statement] = STATE(2541), + [sym_goto_statement] = STATE(2541), + [sym_continue_statement] = STATE(2541), + [sym_break_statement] = STATE(2541), + [sym_return_statement] = STATE(2541), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2541), + [sym_do_statement] = STATE(2541), + [sym_for_statement] = STATE(2541), + [sym_foreach_statement] = STATE(2541), + [sym_if_statement] = STATE(2541), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2541), + [sym_compound_statement] = STATE(2541), + [sym_named_label_statement] = STATE(2541), + [sym_expression_statement] = STATE(2541), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(525), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(393), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(405), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(409), + [aux_sym_foreach_statement_token1] = ACTIONS(411), + [aux_sym_if_statement_token1] = ACTIONS(413), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_text_interpolation] = STATE(64), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [83] = { + [sym_empty_statement] = STATE(555), + [sym_function_static_declaration] = STATE(555), + [sym_global_declaration] = STATE(555), + [sym_namespace_definition] = STATE(555), + [sym_namespace_use_declaration] = STATE(555), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(555), + [sym_interface_declaration] = STATE(555), + [sym_enum_declaration] = STATE(555), + [sym_class_declaration] = STATE(555), + [sym_final_modifier] = STATE(1867), + [sym_abstract_modifier] = STATE(1867), + [sym_readonly_modifier] = STATE(2569), + [sym_const_declaration] = STATE(555), + [sym__const_declaration] = STATE(521), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2567), + [sym_function_definition] = STATE(555), + [sym__function_definition_header] = STATE(2153), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(555), + [sym_unset_statement] = STATE(555), + [sym_declare_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_goto_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_foreach_statement] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(555), + [sym_compound_statement] = STATE(555), + [sym_named_label_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1379), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(527), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(13), + [aux_sym_function_static_declaration_token1] = ACTIONS(15), + [aux_sym_global_declaration_token1] = ACTIONS(17), + [aux_sym_namespace_definition_token1] = ACTIONS(19), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(21), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(25), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_trait_declaration_token1] = ACTIONS(31), + [aux_sym_interface_declaration_token1] = ACTIONS(33), + [aux_sym_enum_declaration_token1] = ACTIONS(35), + [aux_sym_class_declaration_token1] = ACTIONS(37), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(53), + [anon_sym_unset] = ACTIONS(55), + [aux_sym_declare_statement_token1] = ACTIONS(57), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(61), + [aux_sym_goto_statement_token1] = ACTIONS(63), + [aux_sym_continue_statement_token1] = ACTIONS(65), + [aux_sym_break_statement_token1] = ACTIONS(67), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(69), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(73), + [aux_sym_do_statement_token1] = ACTIONS(75), + [aux_sym_for_statement_token1] = ACTIONS(77), + [aux_sym_foreach_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token1] = ACTIONS(81), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(552), - [sym_function_static_declaration] = STATE(552), - [sym_global_declaration] = STATE(552), - [sym_namespace_definition] = STATE(552), - [sym_namespace_use_declaration] = STATE(552), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(552), - [sym_interface_declaration] = STATE(552), - [sym_enum_declaration] = STATE(552), - [sym_class_declaration] = STATE(552), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(552), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(552), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(552), - [sym_unset_statement] = STATE(552), - [sym_declare_statement] = STATE(552), - [sym_try_statement] = STATE(552), - [sym_goto_statement] = STATE(552), - [sym_continue_statement] = STATE(552), - [sym_break_statement] = STATE(552), - [sym_return_statement] = STATE(552), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(552), - [sym_do_statement] = STATE(552), - [sym_for_statement] = STATE(552), - [sym_foreach_statement] = STATE(552), - [sym_if_statement] = STATE(552), - [sym_colon_block] = STATE(2492), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(552), - [sym_compound_statement] = STATE(552), - [sym_named_label_statement] = STATE(552), - [sym_expression_statement] = STATE(552), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [84] = { + [sym_empty_statement] = STATE(2011), + [sym_function_static_declaration] = STATE(2011), + [sym_global_declaration] = STATE(2011), + [sym_namespace_definition] = STATE(2011), + [sym_namespace_use_declaration] = STATE(2011), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_trait_declaration] = STATE(2011), + [sym_interface_declaration] = STATE(2011), + [sym_enum_declaration] = STATE(2011), + [sym_class_declaration] = STATE(2011), + [sym_final_modifier] = STATE(1880), + [sym_abstract_modifier] = STATE(1880), + [sym_readonly_modifier] = STATE(2504), + [sym_const_declaration] = STATE(2011), + [sym__const_declaration] = STATE(2089), + [sym_static_modifier] = STATE(2568), + [sym_visibility_modifier] = STATE(2505), + [sym_function_definition] = STATE(2011), + [sym__function_definition_header] = STATE(2381), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_echo_statement] = STATE(2011), + [sym_unset_statement] = STATE(2011), + [sym_declare_statement] = STATE(2011), + [sym_try_statement] = STATE(2011), + [sym_goto_statement] = STATE(2011), + [sym_continue_statement] = STATE(2011), + [sym_break_statement] = STATE(2011), + [sym_return_statement] = STATE(2011), + [sym_throw_expression] = STATE(1038), + [sym_while_statement] = STATE(2011), + [sym_do_statement] = STATE(2011), + [sym_for_statement] = STATE(2011), + [sym_foreach_statement] = STATE(2011), + [sym_if_statement] = STATE(2011), + [sym_match_expression] = STATE(1078), + [sym_switch_statement] = STATE(2011), + [sym_compound_statement] = STATE(2011), + [sym_named_label_statement] = STATE(2011), + [sym_expression_statement] = STATE(2011), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1389), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(361), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(445), + [aux_sym_function_static_declaration_token1] = ACTIONS(369), + [aux_sym_global_declaration_token1] = ACTIONS(371), + [aux_sym_namespace_definition_token1] = ACTIONS(373), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(23), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(379), + [aux_sym_trait_declaration_token1] = ACTIONS(381), + [aux_sym_interface_declaration_token1] = ACTIONS(383), + [aux_sym_enum_declaration_token1] = ACTIONS(385), + [aux_sym_class_declaration_token1] = ACTIONS(387), + [aux_sym_final_modifier_token1] = ACTIONS(39), + [aux_sym_abstract_modifier_token1] = ACTIONS(41), + [aux_sym_readonly_modifier_token1] = ACTIONS(43), + [aux_sym_visibility_modifier_token1] = ACTIONS(45), + [aux_sym_visibility_modifier_token2] = ACTIONS(45), + [aux_sym_visibility_modifier_token3] = ACTIONS(45), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [aux_sym_echo_statement_token1] = ACTIONS(389), + [anon_sym_unset] = ACTIONS(391), + [aux_sym_declare_statement_token1] = ACTIONS(423), + [sym_float] = ACTIONS(59), + [aux_sym_try_statement_token1] = ACTIONS(395), + [aux_sym_goto_statement_token1] = ACTIONS(397), + [aux_sym_continue_statement_token1] = ACTIONS(399), + [aux_sym_break_statement_token1] = ACTIONS(401), + [sym_integer] = ACTIONS(59), + [aux_sym_return_statement_token1] = ACTIONS(403), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(407), + [aux_sym_for_statement_token1] = ACTIONS(427), + [aux_sym_foreach_statement_token1] = ACTIONS(429), + [aux_sym_if_statement_token1] = ACTIONS(431), + [aux_sym_match_expression_token1] = ACTIONS(83), + [aux_sym_switch_statement_token1] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_text_interpolation] = STATE(66), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(529), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [85] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(984), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(962), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_COLON] = ACTIONS(547), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_yield_expression_token2] = ACTIONS(599), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [aux_sym_declare_statement_token2] = ACTIONS(531), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [86] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(962), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(549), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(547), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(547), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(547), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_yield_expression_token2] = ACTIONS(629), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_text_interpolation] = STATE(68), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [87] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1061), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), + [sym_variadic_unpacking] = STATE(1055), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(63), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(533), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_by_ref] = STATE(1055), + [sym_yield_expression] = STATE(1104), + [sym_array_element_initializer] = STATE(1064), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(641), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(547), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(49), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_yield_expression_token2] = ACTIONS(649), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(547), }, - [69] = { - [sym_text_interpolation] = STATE(69), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(533), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [88] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1150), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(962), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(549), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(547), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_EQ_GT] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(547), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_yield_expression_token2] = ACTIONS(671), + [aux_sym_binary_expression_token1] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [aux_sym_binary_expression_token2] = ACTIONS(557), + [aux_sym_binary_expression_token3] = ACTIONS(557), + [aux_sym_binary_expression_token4] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_GT] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_EQ_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(547), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(517), - [sym_function_static_declaration] = STATE(517), - [sym_global_declaration] = STATE(517), - [sym_namespace_definition] = STATE(517), - [sym_namespace_use_declaration] = STATE(517), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(517), - [sym_interface_declaration] = STATE(517), - [sym_enum_declaration] = STATE(517), - [sym_class_declaration] = STATE(517), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(517), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(517), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(517), - [sym_unset_statement] = STATE(517), - [sym_declare_statement] = STATE(517), - [sym_try_statement] = STATE(517), - [sym_goto_statement] = STATE(517), - [sym_continue_statement] = STATE(517), - [sym_break_statement] = STATE(517), - [sym_return_statement] = STATE(517), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(517), - [sym_do_statement] = STATE(517), - [sym_for_statement] = STATE(517), - [sym_foreach_statement] = STATE(517), - [sym_if_statement] = STATE(517), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(517), - [sym_compound_statement] = STATE(517), - [sym_named_label_statement] = STATE(517), - [sym_expression_statement] = STATE(517), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(535), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(537), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(539), + [89] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_cast_type] = STATE(2495), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(541), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [72] = { - [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(541), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [73] = { - [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(543), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [74] = { - [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(62), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_for_statement_token2] = ACTIONS(543), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [75] = { - [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(481), - [sym_function_static_declaration] = STATE(481), - [sym_global_declaration] = STATE(481), - [sym_namespace_definition] = STATE(481), - [sym_namespace_use_declaration] = STATE(481), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(481), - [sym_interface_declaration] = STATE(481), - [sym_enum_declaration] = STATE(481), - [sym_class_declaration] = STATE(481), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(481), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(481), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(481), - [sym_unset_statement] = STATE(481), - [sym_declare_statement] = STATE(481), - [sym_try_statement] = STATE(481), - [sym_goto_statement] = STATE(481), - [sym_continue_statement] = STATE(481), - [sym_break_statement] = STATE(481), - [sym_return_statement] = STATE(481), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(481), - [sym_do_statement] = STATE(481), - [sym_for_statement] = STATE(481), - [sym_foreach_statement] = STATE(481), - [sym_if_statement] = STATE(481), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(481), - [sym_compound_statement] = STATE(481), - [sym_named_label_statement] = STATE(481), - [sym_expression_statement] = STATE(481), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(517), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(519), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(521), - }, - [76] = { - [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(545), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [77] = { - [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(517), - [sym_function_static_declaration] = STATE(517), - [sym_global_declaration] = STATE(517), - [sym_namespace_definition] = STATE(517), - [sym_namespace_use_declaration] = STATE(517), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(517), - [sym_interface_declaration] = STATE(517), - [sym_enum_declaration] = STATE(517), - [sym_class_declaration] = STATE(517), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(517), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(517), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(517), - [sym_unset_statement] = STATE(517), - [sym_declare_statement] = STATE(517), - [sym_try_statement] = STATE(517), - [sym_goto_statement] = STATE(517), - [sym_continue_statement] = STATE(517), - [sym_break_statement] = STATE(517), - [sym_return_statement] = STATE(517), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(517), - [sym_do_statement] = STATE(517), - [sym_for_statement] = STATE(517), - [sym_foreach_statement] = STATE(517), - [sym_if_statement] = STATE(517), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(517), - [sym_compound_statement] = STATE(517), - [sym_named_label_statement] = STATE(517), - [sym_expression_statement] = STATE(517), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(535), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [anon_sym_COLON] = ACTIONS(537), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(539), - }, - [78] = { - [sym_text_interpolation] = STATE(78), - [sym_empty_statement] = STATE(2050), - [sym_function_static_declaration] = STATE(2050), - [sym_global_declaration] = STATE(2050), - [sym_namespace_definition] = STATE(2050), - [sym_namespace_use_declaration] = STATE(2050), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2050), - [sym_interface_declaration] = STATE(2050), - [sym_enum_declaration] = STATE(2050), - [sym_class_declaration] = STATE(2050), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2050), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2050), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2050), - [sym_unset_statement] = STATE(2050), - [sym_declare_statement] = STATE(2050), - [sym_try_statement] = STATE(2050), - [sym_goto_statement] = STATE(2050), - [sym_continue_statement] = STATE(2050), - [sym_break_statement] = STATE(2050), - [sym_return_statement] = STATE(2050), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2050), - [sym_do_statement] = STATE(2050), - [sym_for_statement] = STATE(2050), - [sym_foreach_statement] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2050), - [sym_compound_statement] = STATE(2050), - [sym_named_label_statement] = STATE(2050), - [sym_expression_statement] = STATE(2050), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [79] = { - [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(484), - [sym_function_static_declaration] = STATE(484), - [sym_global_declaration] = STATE(484), - [sym_namespace_definition] = STATE(484), - [sym_namespace_use_declaration] = STATE(484), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(484), - [sym_unset_statement] = STATE(484), - [sym_declare_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_foreach_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [80] = { - [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(477), - [sym_function_static_declaration] = STATE(477), - [sym_global_declaration] = STATE(477), - [sym_namespace_definition] = STATE(477), - [sym_namespace_use_declaration] = STATE(477), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(477), - [sym_interface_declaration] = STATE(477), - [sym_enum_declaration] = STATE(477), - [sym_class_declaration] = STATE(477), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(477), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(477), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(477), - [sym_unset_statement] = STATE(477), - [sym_declare_statement] = STATE(477), - [sym_try_statement] = STATE(477), - [sym_goto_statement] = STATE(477), - [sym_continue_statement] = STATE(477), - [sym_break_statement] = STATE(477), - [sym_return_statement] = STATE(477), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(477), - [sym_do_statement] = STATE(477), - [sym_for_statement] = STATE(477), - [sym_foreach_statement] = STATE(477), - [sym_if_statement] = STATE(477), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(477), - [sym_compound_statement] = STATE(477), - [sym_named_label_statement] = STATE(477), - [sym_expression_statement] = STATE(477), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(330), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(332), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(336), - [aux_sym_if_statement_token1] = ACTIONS(338), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [81] = { - [sym_text_interpolation] = STATE(81), - [sym_empty_statement] = STATE(2064), - [sym_function_static_declaration] = STATE(2064), - [sym_global_declaration] = STATE(2064), - [sym_namespace_definition] = STATE(2064), - [sym_namespace_use_declaration] = STATE(2064), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2064), - [sym_interface_declaration] = STATE(2064), - [sym_enum_declaration] = STATE(2064), - [sym_class_declaration] = STATE(2064), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2064), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2064), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2064), - [sym_unset_statement] = STATE(2064), - [sym_declare_statement] = STATE(2064), - [sym_try_statement] = STATE(2064), - [sym_goto_statement] = STATE(2064), - [sym_continue_statement] = STATE(2064), - [sym_break_statement] = STATE(2064), - [sym_return_statement] = STATE(2064), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2064), - [sym_do_statement] = STATE(2064), - [sym_for_statement] = STATE(2064), - [sym_foreach_statement] = STATE(2064), - [sym_if_statement] = STATE(2064), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2064), - [sym_compound_statement] = STATE(2064), - [sym_named_label_statement] = STATE(2064), - [sym_expression_statement] = STATE(2064), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [82] = { - [sym_text_interpolation] = STATE(82), - [sym_empty_statement] = STATE(2556), - [sym_function_static_declaration] = STATE(2556), - [sym_global_declaration] = STATE(2556), - [sym_namespace_definition] = STATE(2556), - [sym_namespace_use_declaration] = STATE(2556), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2556), - [sym_interface_declaration] = STATE(2556), - [sym_enum_declaration] = STATE(2556), - [sym_class_declaration] = STATE(2556), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2556), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2556), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2556), - [sym_unset_statement] = STATE(2556), - [sym_declare_statement] = STATE(2556), - [sym_try_statement] = STATE(2556), - [sym_goto_statement] = STATE(2556), - [sym_continue_statement] = STATE(2556), - [sym_break_statement] = STATE(2556), - [sym_return_statement] = STATE(2556), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2556), - [sym_do_statement] = STATE(2556), - [sym_for_statement] = STATE(2556), - [sym_foreach_statement] = STATE(2556), - [sym_if_statement] = STATE(2556), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2556), - [sym_compound_statement] = STATE(2556), - [sym_named_label_statement] = STATE(2556), - [sym_expression_statement] = STATE(2556), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [83] = { - [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(2576), - [sym_function_static_declaration] = STATE(2576), - [sym_global_declaration] = STATE(2576), - [sym_namespace_definition] = STATE(2576), - [sym_namespace_use_declaration] = STATE(2576), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2576), - [sym_interface_declaration] = STATE(2576), - [sym_enum_declaration] = STATE(2576), - [sym_class_declaration] = STATE(2576), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2576), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2576), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2576), - [sym_unset_statement] = STATE(2576), - [sym_declare_statement] = STATE(2576), - [sym_try_statement] = STATE(2576), - [sym_goto_statement] = STATE(2576), - [sym_continue_statement] = STATE(2576), - [sym_break_statement] = STATE(2576), - [sym_return_statement] = STATE(2576), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2576), - [sym_do_statement] = STATE(2576), - [sym_for_statement] = STATE(2576), - [sym_foreach_statement] = STATE(2576), - [sym_if_statement] = STATE(2576), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2576), - [sym_compound_statement] = STATE(2576), - [sym_named_label_statement] = STATE(2576), - [sym_expression_statement] = STATE(2576), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(393), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(405), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(411), - [aux_sym_if_statement_token1] = ACTIONS(413), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [84] = { - [sym_text_interpolation] = STATE(84), - [sym_empty_statement] = STATE(2064), - [sym_function_static_declaration] = STATE(2064), - [sym_global_declaration] = STATE(2064), - [sym_namespace_definition] = STATE(2064), - [sym_namespace_use_declaration] = STATE(2064), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(2064), - [sym_interface_declaration] = STATE(2064), - [sym_enum_declaration] = STATE(2064), - [sym_class_declaration] = STATE(2064), - [sym_final_modifier] = STATE(1920), - [sym_abstract_modifier] = STATE(1920), - [sym_readonly_modifier] = STATE(2550), - [sym_const_declaration] = STATE(2064), - [sym__const_declaration] = STATE(2131), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2551), - [sym_function_definition] = STATE(2064), - [sym__function_definition_header] = STATE(2378), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(2064), - [sym_unset_statement] = STATE(2064), - [sym_declare_statement] = STATE(2064), - [sym_try_statement] = STATE(2064), - [sym_goto_statement] = STATE(2064), - [sym_continue_statement] = STATE(2064), - [sym_break_statement] = STATE(2064), - [sym_return_statement] = STATE(2064), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(2064), - [sym_do_statement] = STATE(2064), - [sym_for_statement] = STATE(2064), - [sym_foreach_statement] = STATE(2064), - [sym_if_statement] = STATE(2064), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(2064), - [sym_compound_statement] = STATE(2064), - [sym_named_label_statement] = STATE(2064), - [sym_expression_statement] = STATE(2064), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1406), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(365), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(369), - [aux_sym_global_declaration_token1] = ACTIONS(371), - [aux_sym_namespace_definition_token1] = ACTIONS(373), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(375), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(377), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(379), - [aux_sym_trait_declaration_token1] = ACTIONS(381), - [aux_sym_interface_declaration_token1] = ACTIONS(383), - [aux_sym_enum_declaration_token1] = ACTIONS(385), - [aux_sym_class_declaration_token1] = ACTIONS(387), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(389), - [anon_sym_unset] = ACTIONS(391), - [aux_sym_declare_statement_token1] = ACTIONS(419), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(395), - [aux_sym_goto_statement_token1] = ACTIONS(397), - [aux_sym_continue_statement_token1] = ACTIONS(399), - [aux_sym_break_statement_token1] = ACTIONS(401), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(403), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(421), - [aux_sym_do_statement_token1] = ACTIONS(407), - [aux_sym_for_statement_token1] = ACTIONS(423), - [aux_sym_foreach_statement_token1] = ACTIONS(425), - [aux_sym_if_statement_token1] = ACTIONS(427), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [85] = { - [sym_text_interpolation] = STATE(85), - [sym_empty_statement] = STATE(477), - [sym_function_static_declaration] = STATE(477), - [sym_global_declaration] = STATE(477), - [sym_namespace_definition] = STATE(477), - [sym_namespace_use_declaration] = STATE(477), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_trait_declaration] = STATE(477), - [sym_interface_declaration] = STATE(477), - [sym_enum_declaration] = STATE(477), - [sym_class_declaration] = STATE(477), - [sym_final_modifier] = STATE(1904), - [sym_abstract_modifier] = STATE(1904), - [sym_readonly_modifier] = STATE(2613), - [sym_const_declaration] = STATE(477), - [sym__const_declaration] = STATE(542), - [sym_static_modifier] = STATE(2612), - [sym_visibility_modifier] = STATE(2611), - [sym_function_definition] = STATE(477), - [sym__function_definition_header] = STATE(2208), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_echo_statement] = STATE(477), - [sym_unset_statement] = STATE(477), - [sym_declare_statement] = STATE(477), - [sym_try_statement] = STATE(477), - [sym_goto_statement] = STATE(477), - [sym_continue_statement] = STATE(477), - [sym_break_statement] = STATE(477), - [sym_return_statement] = STATE(477), - [sym_throw_expression] = STATE(1087), - [sym_while_statement] = STATE(477), - [sym_do_statement] = STATE(477), - [sym_for_statement] = STATE(477), - [sym_foreach_statement] = STATE(477), - [sym_if_statement] = STATE(477), - [sym_match_expression] = STATE(1134), - [sym_switch_statement] = STATE(477), - [sym_compound_statement] = STATE(477), - [sym_named_label_statement] = STATE(477), - [sym_expression_statement] = STATE(477), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1407), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(196), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(198), - [aux_sym_function_static_declaration_token1] = ACTIONS(200), - [aux_sym_global_declaration_token1] = ACTIONS(202), - [aux_sym_namespace_definition_token1] = ACTIONS(204), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(208), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(210), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(214), - [aux_sym_trait_declaration_token1] = ACTIONS(218), - [aux_sym_interface_declaration_token1] = ACTIONS(220), - [aux_sym_enum_declaration_token1] = ACTIONS(222), - [aux_sym_class_declaration_token1] = ACTIONS(226), - [aux_sym_final_modifier_token1] = ACTIONS(228), - [aux_sym_abstract_modifier_token1] = ACTIONS(230), - [aux_sym_readonly_modifier_token1] = ACTIONS(232), - [aux_sym_visibility_modifier_token1] = ACTIONS(234), - [aux_sym_visibility_modifier_token2] = ACTIONS(234), - [aux_sym_visibility_modifier_token3] = ACTIONS(234), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [aux_sym_echo_statement_token1] = ACTIONS(242), - [anon_sym_unset] = ACTIONS(244), - [aux_sym_declare_statement_token1] = ACTIONS(246), - [sym_float] = ACTIONS(248), - [aux_sym_try_statement_token1] = ACTIONS(250), - [aux_sym_goto_statement_token1] = ACTIONS(252), - [aux_sym_continue_statement_token1] = ACTIONS(254), - [aux_sym_break_statement_token1] = ACTIONS(256), - [sym_integer] = ACTIONS(248), - [aux_sym_return_statement_token1] = ACTIONS(258), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_while_statement_token1] = ACTIONS(262), - [aux_sym_do_statement_token1] = ACTIONS(264), - [aux_sym_for_statement_token1] = ACTIONS(266), - [aux_sym_foreach_statement_token1] = ACTIONS(268), - [aux_sym_if_statement_token1] = ACTIONS(270), - [aux_sym_match_expression_token1] = ACTIONS(272), - [aux_sym_switch_statement_token1] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [86] = { - [sym_text_interpolation] = STATE(86), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [90] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), + [sym_cast_type] = STATE(2397), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(907), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_COLON] = ACTIONS(549), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), [anon_sym_BANG] = ACTIONS(575), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_yield_expression_token2] = ACTIONS(601), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [87] = { - [sym_text_interpolation] = STATE(87), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [91] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), + [sym_cast_type] = STATE(2472), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1023), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(907), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(549), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(549), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(619), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_yield_expression_token2] = ACTIONS(631), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [88] = { - [sym_text_interpolation] = STATE(88), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1062), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_variadic_unpacking] = STATE(1113), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_by_ref] = STATE(1113), - [sym_yield_expression] = STATE(1136), - [sym_array_element_initializer] = STATE(1047), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(643), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [anon_sym_COMMA] = ACTIONS(549), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_yield_expression_token2] = ACTIONS(651), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(549), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [89] = { - [sym_text_interpolation] = STATE(89), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [92] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), + [sym_cast_type] = STATE(2479), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(907), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(551), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(549), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_EQ_GT] = ACTIONS(549), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_STAR_STAR] = ACTIONS(549), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_yield_expression_token2] = ACTIONS(673), - [aux_sym_binary_expression_token1] = ACTIONS(559), - [anon_sym_QMARK_QMARK] = ACTIONS(549), - [aux_sym_binary_expression_token2] = ACTIONS(559), - [aux_sym_binary_expression_token3] = ACTIONS(559), - [aux_sym_binary_expression_token4] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ_GT] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(549), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [93] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2509), + [sym_cast_type] = STATE(2525), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [91] = { - [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [94] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2489), + [sym_cast_type] = STATE(2446), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [92] = { - [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [95] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2548), + [sym_cast_type] = STATE(2471), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [93] = { - [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [96] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2587), + [sym_cast_type] = STATE(2463), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [94] = { - [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2489), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [95] = { - [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2434), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [96] = { - [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2512), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [97] = { - [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2525), + [sym_cast_type] = STATE(2482), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [98] = { - [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2515), + [sym_cast_type] = STATE(2406), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [99] = { - [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2517), + [sym_cast_type] = STATE(2446), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(681), + [aux_sym_cast_type_token2] = ACTIONS(683), + [aux_sym_cast_type_token3] = ACTIONS(683), + [aux_sym_cast_type_token4] = ACTIONS(683), + [aux_sym_cast_type_token5] = ACTIONS(683), + [aux_sym_cast_type_token6] = ACTIONS(683), + [aux_sym_cast_type_token7] = ACTIONS(683), + [aux_sym_cast_type_token8] = ACTIONS(683), + [aux_sym_cast_type_token9] = ACTIONS(683), + [aux_sym_cast_type_token10] = ACTIONS(683), + [aux_sym_cast_type_token11] = ACTIONS(683), + [aux_sym_cast_type_token12] = ACTIONS(683), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [100] = { - [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), - [sym_cast_type] = STATE(2543), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(1874), + [sym_function_call_expression] = STATE(611), + [sym_scoped_call_expression] = STATE(611), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(611), + [sym_nullsafe_member_call_expression] = STATE(611), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(611), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(683), - [aux_sym_cast_type_token2] = ACTIONS(685), - [aux_sym_cast_type_token3] = ACTIONS(685), - [aux_sym_cast_type_token4] = ACTIONS(685), - [aux_sym_cast_type_token5] = ACTIONS(685), - [aux_sym_cast_type_token6] = ACTIONS(685), - [aux_sym_cast_type_token7] = ACTIONS(685), - [aux_sym_cast_type_token8] = ACTIONS(685), - [aux_sym_cast_type_token9] = ACTIONS(685), - [aux_sym_cast_type_token10] = ACTIONS(685), - [aux_sym_cast_type_token11] = ACTIONS(685), - [aux_sym_cast_type_token12] = ACTIONS(685), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(611), + [sym_variable_name] = STATE(611), + [sym_by_ref] = STATE(2196), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1893), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym__array_destructing_repeat1] = STATE(1877), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [101] = { - [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1913), - [sym_function_call_expression] = STATE(621), - [sym_scoped_call_expression] = STATE(621), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(621), - [sym_nullsafe_member_call_expression] = STATE(621), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(621), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(1874), + [sym_function_call_expression] = STATE(611), + [sym_scoped_call_expression] = STATE(611), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(611), + [sym_nullsafe_member_call_expression] = STATE(611), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(611), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(621), - [sym_variable_name] = STATE(621), - [sym_by_ref] = STATE(2243), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1926), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym__array_destructing_repeat1] = STATE(1916), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(691), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(611), + [sym_variable_name] = STATE(611), + [sym_by_ref] = STATE(2196), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1875), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym__array_destructing_repeat1] = STATE(1877), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(691), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(693), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [102] = { - [sym_text_interpolation] = STATE(102), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1913), - [sym_function_call_expression] = STATE(621), - [sym_scoped_call_expression] = STATE(621), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(621), - [sym_nullsafe_member_call_expression] = STATE(621), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(621), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(1874), + [sym_function_call_expression] = STATE(611), + [sym_scoped_call_expression] = STATE(611), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(611), + [sym_nullsafe_member_call_expression] = STATE(611), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(611), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(621), - [sym_variable_name] = STATE(621), - [sym_by_ref] = STATE(2243), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1926), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym__array_destructing_repeat1] = STATE(1916), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(693), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(611), + [sym_variable_name] = STATE(611), + [sym_by_ref] = STATE(2196), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1893), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym__array_destructing_repeat1] = STATE(1877), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [103] = { - [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1913), - [sym_function_call_expression] = STATE(621), - [sym_scoped_call_expression] = STATE(621), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(621), - [sym_nullsafe_member_call_expression] = STATE(621), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(621), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(1874), + [sym_function_call_expression] = STATE(611), + [sym_scoped_call_expression] = STATE(611), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(611), + [sym_nullsafe_member_call_expression] = STATE(611), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(611), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(621), - [sym_variable_name] = STATE(621), - [sym_by_ref] = STATE(2243), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1914), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym__array_destructing_repeat1] = STATE(1916), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(695), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(611), + [sym_variable_name] = STATE(611), + [sym_by_ref] = STATE(2196), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1893), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym__array_destructing_repeat1] = STATE(1877), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [104] = { - [sym_text_interpolation] = STATE(104), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1181), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1913), - [sym_function_call_expression] = STATE(621), - [sym_scoped_call_expression] = STATE(621), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(621), - [sym_nullsafe_member_call_expression] = STATE(621), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(621), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(638), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(638), + [sym_nullsafe_member_access_expression] = STATE(638), + [sym_scoped_property_access_expression] = STATE(638), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(1874), + [sym_function_call_expression] = STATE(611), + [sym_scoped_call_expression] = STATE(611), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(611), + [sym_nullsafe_member_call_expression] = STATE(611), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(611), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(621), - [sym_variable_name] = STATE(621), - [sym_by_ref] = STATE(2243), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1926), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym__array_destructing_repeat1] = STATE(1916), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(611), + [sym_variable_name] = STATE(611), + [sym_by_ref] = STATE(2196), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1893), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym__array_destructing_repeat1] = STATE(1877), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(687), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [105] = { - [sym_text_interpolation] = STATE(105), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(1913), - [sym_function_call_expression] = STATE(621), - [sym_scoped_call_expression] = STATE(621), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(621), - [sym_nullsafe_member_call_expression] = STATE(621), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(621), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2431), + [sym_argument] = STATE(1906), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(621), - [sym_variable_name] = STATE(621), - [sym_by_ref] = STATE(2243), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1926), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym__array_destructing_repeat1] = STATE(1916), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(689), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(705), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [106] = { - [sym_text_interpolation] = STATE(106), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2650), - [sym_argument] = STATE(2157), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2556), + [sym_argument] = STATE(2099), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(707), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(711), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [107] = { - [sym_text_interpolation] = STATE(107), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2614), - [sym_argument] = STATE(2140), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2583), + [sym_argument] = STATE(2113), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(713), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(715), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [108] = { - [sym_text_interpolation] = STATE(108), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2582), - [sym_argument] = STATE(2097), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2547), + [sym_argument] = STATE(1871), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(717), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(719), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [109] = { - [sym_text_interpolation] = STATE(109), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2595), - [sym_argument] = STATE(2134), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2609), + [sym_argument] = STATE(2119), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(721), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(723), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [110] = { - [sym_text_interpolation] = STATE(110), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2622), - [sym_argument] = STATE(2150), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2515), + [sym_argument] = STATE(2051), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(725), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(727), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [111] = { - [sym_text_interpolation] = STATE(111), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2561), - [sym_argument] = STATE(1917), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2566), + [sym_argument] = STATE(2107), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(729), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(731), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [112] = { - [sym_text_interpolation] = STATE(112), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2473), - [sym_argument] = STATE(1944), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_variadic_placeholder] = STATE(2546), + [sym_argument] = STATE(2092), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(733), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(735), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [113] = { - [sym_text_interpolation] = STATE(113), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_variadic_placeholder] = STATE(2610), - [sym_argument] = STATE(2138), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(737), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(711), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1875), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(739), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [114] = { - [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1914), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(741), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1896), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(743), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [115] = { - [sym_text_interpolation] = STATE(115), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1907), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(745), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1893), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(747), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(749), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [116] = { - [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1926), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(749), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1876), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(751), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [117] = { - [sym_text_interpolation] = STATE(117), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1935), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(753), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [118] = { - [sym_text_interpolation] = STATE(118), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [119] = { - [sym_text_interpolation] = STATE(119), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [120] = { - [sym_text_interpolation] = STATE(120), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [121] = { - [sym_text_interpolation] = STATE(121), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [122] = { - [sym_text_interpolation] = STATE(122), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [123] = { - [sym_text_interpolation] = STATE(123), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [124] = { - [sym_text_interpolation] = STATE(124), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [125] = { - [sym_text_interpolation] = STATE(125), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [126] = { - [sym_text_interpolation] = STATE(126), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(1984), - [sym_match_default_expression] = STATE(1984), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(773), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(775), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [127] = { - [sym_text_interpolation] = STATE(127), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(775), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [128] = { - [sym_text_interpolation] = STATE(128), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [129] = { - [sym_text_interpolation] = STATE(129), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [130] = { - [sym_text_interpolation] = STATE(130), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(781), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [131] = { - [sym_text_interpolation] = STATE(131), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(783), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [132] = { - [sym_text_interpolation] = STATE(132), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [133] = { - [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(1951), - [sym_match_default_expression] = STATE(1951), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(791), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(793), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [134] = { - [sym_text_interpolation] = STATE(134), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(795), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [135] = { - [sym_text_interpolation] = STATE(135), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [136] = { - [sym_text_interpolation] = STATE(136), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [137] = { - [sym_text_interpolation] = STATE(137), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(801), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [138] = { - [sym_text_interpolation] = STATE(138), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [139] = { - [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [140] = { - [sym_text_interpolation] = STATE(140), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(1936), + [sym_match_default_expression] = STATE(1936), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(801), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(803), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [141] = { - [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(1905), + [sym_match_default_expression] = STATE(1905), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(809), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(807), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(809), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [142] = { - [sym_text_interpolation] = STATE(142), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [143] = { - [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [144] = { - [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(2383), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2383), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(813), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(819), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [145] = { - [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(644), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(644), - [sym_nullsafe_member_access_expression] = STATE(644), - [sym_scoped_property_access_expression] = STATE(644), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(2320), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_argument] = STATE(2238), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2289), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2323), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(815), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(817), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1485), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [146] = { - [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(2168), + [sym_match_default_expression] = STATE(2168), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(644), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(644), - [sym_nullsafe_member_access_expression] = STATE(644), - [sym_scoped_property_access_expression] = STATE(644), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(2320), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2323), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(815), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(817), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(824), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(822), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [147] = { - [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1287), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(2168), + [sym_match_default_expression] = STATE(2168), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(1793), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_by_ref] = STATE(1937), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym__list_destructing_repeat1] = STATE(1938), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(827), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(829), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(824), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [148] = { - [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(923), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(2383), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(923), - [sym_yield_expression] = STATE(927), - [sym_array_element_initializer] = STATE(1996), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2383), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(813), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [149] = { - [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(2175), - [sym_match_default_expression] = STATE(2175), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(2168), + [sym_match_default_expression] = STATE(2168), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(831), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(826), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [150] = { - [sym_text_interpolation] = STATE(150), - [sym_reference_modifier] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_argument] = STATE(2274), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2331), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(642), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(642), + [sym_nullsafe_member_access_expression] = STATE(642), + [sym_scoped_property_access_expression] = STATE(642), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1873), + [sym__array_destructing_element] = STATE(2383), + [sym_function_call_expression] = STATE(608), + [sym_scoped_call_expression] = STATE(608), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(608), + [sym_nullsafe_member_call_expression] = STATE(608), + [sym_subscript_expression] = STATE(608), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1462), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(703), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(608), + [sym_variable_name] = STATE(608), + [sym_by_ref] = STATE(2383), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(813), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [151] = { - [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(644), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(644), - [sym_nullsafe_member_access_expression] = STATE(644), - [sym_scoped_property_access_expression] = STATE(644), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1912), - [sym__array_destructing_element] = STATE(2320), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_variadic_unpacking] = STATE(924), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2323), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(815), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(817), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(924), + [sym_yield_expression] = STATE(923), + [sym_array_element_initializer] = STATE(1950), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [152] = { - [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(2175), - [sym_match_default_expression] = STATE(2175), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(2168), + [sym_match_default_expression] = STATE(2168), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(833), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(831), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [153] = { - [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(2175), - [sym_match_default_expression] = STATE(2175), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(635), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(635), + [sym_nullsafe_member_access_expression] = STATE(635), + [sym_scoped_property_access_expression] = STATE(635), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(1799), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(835), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(1899), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym__list_destructing_repeat1] = STATE(1900), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(833), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(835), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [154] = { - [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(2175), - [sym_match_default_expression] = STATE(2175), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym_match_condition_list] = STATE(2386), + [sym_match_conditional_expression] = STATE(2168), + [sym_match_default_expression] = STATE(2168), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(837), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [aux_sym_match_default_expression_token1] = ACTIONS(805), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [155] = { - [sym_text_interpolation] = STATE(155), - [sym_reference_modifier] = STATE(196), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1237), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2158), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(639), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(639), + [sym_nullsafe_member_access_expression] = STATE(639), + [sym_scoped_property_access_expression] = STATE(639), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(1939), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(630), + [sym_scoped_call_expression] = STATE(630), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(630), + [sym_nullsafe_member_call_expression] = STATE(630), + [sym_subscript_expression] = STATE(630), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1474), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(705), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(630), + [sym_variable_name] = STATE(630), + [sym_by_ref] = STATE(2350), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(837), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(837), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [156] = { - [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_reference_modifier] = STATE(194), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym_match_condition_list] = STATE(2450), - [sym_match_conditional_expression] = STATE(2175), - [sym_match_default_expression] = STATE(2175), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2240), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [aux_sym_match_default_expression_token1] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1438), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(703), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [157] = { - [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2394), + [sym_sequence_expression] = STATE(2394), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), + [sym_cast_expression] = STATE(922), [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), [sym_member_access_expression] = STATE(641), [sym_nullsafe_member_access_expression] = STATE(641), [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(1985), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(631), - [sym_scoped_call_expression] = STATE(631), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(631), - [sym_nullsafe_member_call_expression] = STATE(631), - [sym_subscript_expression] = STATE(631), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(631), - [sym_variable_name] = STATE(631), - [sym_by_ref] = STATE(2392), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [anon_sym_COMMA] = ACTIONS(839), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(817), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(839), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [158] = { - [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2635), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2436), + [sym_sequence_expression] = STATE(2436), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(841), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(841), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [159] = { - [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2584), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2597), + [sym_sequence_expression] = STATE(2597), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(843), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(843), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [160] = { - [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2655), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2438), + [sym_sequence_expression] = STATE(2438), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(845), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [161] = { - [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_foreach_pair] = STATE(2483), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2559), + [sym_sequence_expression] = STATE(2559), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2322), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(2483), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(847), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [162] = { - [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2490), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2388), + [sym_sequence_expression] = STATE(2388), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(847), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(849), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [163] = { - [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2486), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2563), + [sym_sequence_expression] = STATE(2563), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(849), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(851), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [164] = { - [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2599), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2389), + [sym_sequence_expression] = STATE(2389), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(851), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(853), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [165] = { - [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2429), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_foreach_pair] = STATE(2391), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2376), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(853), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2391), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [166] = { - [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2578), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2396), + [sym_sequence_expression] = STATE(2396), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(855), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [167] = { - [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2637), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_foreach_pair] = STATE(2535), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2192), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(857), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2535), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [168] = { - [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2477), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2590), + [sym_sequence_expression] = STATE(2590), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(859), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(857), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [169] = { - [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2605), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2594), + [sym_sequence_expression] = STATE(2594), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(861), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(859), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [170] = { - [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2485), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2591), + [sym_sequence_expression] = STATE(2591), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(863), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(861), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [171] = { - [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2609), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2589), + [sym_sequence_expression] = STATE(2589), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(865), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(863), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [172] = { - [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2487), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2540), + [sym_sequence_expression] = STATE(2540), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(867), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(865), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [173] = { - [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_foreach_pair] = STATE(2491), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2447), + [sym_sequence_expression] = STATE(2447), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2314), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(2491), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(867), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [174] = { - [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2466), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2603), + [sym_sequence_expression] = STATE(2603), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(869), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(869), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [175] = { - [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2435), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2430), + [sym_sequence_expression] = STATE(2430), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), [anon_sym_RPAREN] = ACTIONS(871), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [176] = { - [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_foreach_pair] = STATE(2437), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2538), + [sym_sequence_expression] = STATE(2538), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2413), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(2437), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(873), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [177] = { - [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2440), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2527), + [sym_sequence_expression] = STATE(2527), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(873), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(875), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [178] = { - [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2442), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2441), + [sym_sequence_expression] = STATE(2441), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(875), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(877), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [179] = { - [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2445), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2552), + [sym_sequence_expression] = STATE(2552), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(877), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(879), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [180] = { - [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2649), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_foreach_pair] = STATE(2444), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1187), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2276), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(879), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2444), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [181] = { - [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2640), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(881), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [182] = { - [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_foreach_pair] = STATE(2581), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2534), + [sym_sequence_expression] = STATE(2534), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2231), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(2581), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(881), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [182] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2643), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_foreach_pair] = STATE(2442), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2275), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(883), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2442), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [183] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2573), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2448), + [sym_sequence_expression] = STATE(2448), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(885), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(883), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [184] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym__expressions] = STATE(2586), - [sym_sequence_expression] = STATE(2221), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__expressions] = STATE(2532), + [sym_sequence_expression] = STATE(2532), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(887), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(885), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1061), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [185] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_by_ref] = STATE(1066), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(889), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(887), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(887), }, - [187] = { - [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [186] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(891), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(891), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(889), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(889), }, - [188] = { - [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [187] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1024), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(912), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(893), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(891), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [188] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1024), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2168), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(2632), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + }, + [189] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2335), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1433), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [190] = { - [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym__expressions] = STATE(2182), + [sym_sequence_expression] = STATE(2182), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1184), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(895), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(895), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [191] = { - [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1144), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(912), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [192] = { - [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym__expressions] = STATE(2229), - [sym_sequence_expression] = STATE(2233), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(893), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(893), }, [193] = { - [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1115), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_by_ref] = STATE(1100), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(895), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_variadic_unpacking] = STATE(2159), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_by_ref] = STATE(912), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(893), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1487), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [195] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1144), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_by_ref] = STATE(912), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(891), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [196] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), [anon_sym_SEMI] = ACTIONS(897), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(897), }, - [196] = { - [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2191), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1487), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, [197] = { - [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym__expressions] = STATE(2283), + [sym_sequence_expression] = STATE(2283), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1184), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(973), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_variadic_unpacking] = STATE(2377), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1503), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(655), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(933), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(891), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [199] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1024), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(646), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(646), - [sym_nullsafe_member_access_expression] = STATE(646), - [sym_scoped_property_access_expression] = STATE(646), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(1993), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(643), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(643), + [sym_nullsafe_member_access_expression] = STATE(643), + [sym_scoped_property_access_expression] = STATE(643), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(1982), [sym_function_call_expression] = STATE(637), [sym_scoped_call_expression] = STATE(637), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(637), [sym_nullsafe_member_call_expression] = STATE(637), [sym_subscript_expression] = STATE(637), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(637), [sym_variable_name] = STATE(637), - [sym_by_ref] = STATE(2386), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(687), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym_by_ref] = STATE(2343), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [200] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2140), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_by_ref] = STATE(2579), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(685), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [201] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), [anon_sym_SEMI] = ACTIONS(899), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(899), }, - [200] = { - [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [202] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), [anon_sym_SEMI] = ACTIONS(901), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(901), }, - [201] = { - [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(903), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(903), - }, - [202] = { - [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [203] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1272), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_by_ref] = STATE(912), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(893), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [203] = { - [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym__expressions] = STATE(2279), - [sym_sequence_expression] = STATE(2233), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(903), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [204] = { - [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_sequence_expression] = STATE(2244), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1293), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [205] = { - [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_sequence_expression] = STATE(2217), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(905), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [206] = { - [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1289), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(907), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [207] = { - [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1304), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1269), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(909), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [208] = { - [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(974), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), [anon_sym_AMP] = ACTIONS(911), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [209] = { - [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(913), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [210] = { - [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1293), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(915), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(915), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [211] = { - [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_sequence_expression] = STATE(2420), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [212] = { - [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1165), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_RPAREN] = ACTIONS(917), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [212] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_sequence_expression] = STATE(2368), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [213] = { - [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1288), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_AMP] = ACTIONS(919), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [anon_sym_COLON] = ACTIONS(919), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [214] = { - [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(921), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [215] = { - [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_sequence_expression] = STATE(2217), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(923), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [216] = { - [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1145), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1281), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(925), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [217] = { - [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_sequence_expression] = STATE(2244), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(925), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [218] = { - [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1298), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1249), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(927), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [219] = { - [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [220] = { - [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), [sym__expression] = STATE(1068), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), [anon_sym_AMP] = ACTIONS(931), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, [221] = { - [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1248), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [anon_sym_COLON] = ACTIONS(933), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [222] = { - [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1135), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, [223] = { - [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1286), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [224] = { - [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1283), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [225] = { - [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1103), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1279), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [226] = { - [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1068), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [227] = { - [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, [228] = { - [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1268), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, [229] = { - [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [230] = { - [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [231] = { - [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [232] = { - [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [233] = { - [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1090), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [234] = { - [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [235] = { - [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [236] = { - [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [237] = { - [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1284), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [238] = { - [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1283), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [239] = { - [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [240] = { - [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [241] = { - [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [242] = { - [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [243] = { - [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1098), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1114), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [244] = { - [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [230] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [245] = { - [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [231] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1094), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [232] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1106), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1086), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [233] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1103), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [248] = { - [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1085), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [234] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1102), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1084), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [235] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1101), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1083), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [236] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1098), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1082), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [237] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1095), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1081), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [238] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1094), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1063), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [239] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1091), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1080), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [240] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1090), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1079), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [241] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1089), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1078), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [242] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1087), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1075), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [243] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1086), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1072), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [244] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1085), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [245] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1084), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1070), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [246] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1083), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [261] = { - [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [262] = { - [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [247] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1016), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [248] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1246), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), + [249] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), [sym__expression] = STATE(1067), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [250] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(972), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [251] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1240), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [267] = { - [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [253] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(968), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [254] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1279), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1273), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [270] = { - [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [255] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1165), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [256] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1263), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [257] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1273), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1267), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [258] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [274] = { - [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1120), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [259] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [260] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), + [sym_match_expression] = STATE(997), [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [261] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1254), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [262] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1296), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [263] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1256), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [280] = { - [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [264] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(982), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [265] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1287), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [266] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(985), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [267] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [268] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(909), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [285] = { - [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [269] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1252), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [270] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1002), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), + [271] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [272] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(987), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [273] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1257), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [274] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [291] = { - [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1115), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [275] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [293] = { - [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1114), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [276] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [277] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1300), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1292), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [278] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [279] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1303), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1295), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [280] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [281] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1068), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [282] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1097), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [301] = { - [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [284] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1278), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [285] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1015), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [286] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1168), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(995), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [287] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [288] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1280), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [289] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1143), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [290] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(909), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [291] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1299), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [292] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1026), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [293] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(951), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [294] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1018), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [312] = { - [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1110), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [295] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(998), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [296] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1288), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [297] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(941), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [298] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(974), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [299] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1025), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [300] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1146), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [301] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(983), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [302] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [303] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [304] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1277), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [305] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [306] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(967), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [307] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1035), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [308] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1027), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [309] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [310] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [311] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1186), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [313] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [314] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [315] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [316] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1141), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [317] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [335] = { - [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [318] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [319] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(973), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(929), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [338] = { - [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1128), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [320] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [321] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [322] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1030), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [323] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1145), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(930), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [324] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1155), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [325] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [326] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [346] = { - [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1197), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [327] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [348] = { - [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1045), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [328] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1137), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [329] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [330] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1296), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [331] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1153), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [332] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1143), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), - }, - [354] = { - [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1042), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), - }, - [355] = { - [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1123), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [333] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1145), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [357] = { - [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1124), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(601), - [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(601), - [sym_nullsafe_member_call_expression] = STATE(601), - [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(601), - [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [334] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [335] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1235), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [336] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [337] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [338] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [339] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1092), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [340] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1075), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [341] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1147), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [342] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1004), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [343] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), + [sym_match_expression] = STATE(1157), [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [344] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1036), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [345] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1017), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [370] = { - [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1292), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [346] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1162), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [347] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1134), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [348] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1015), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1136), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [349] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1307), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [375] = { - [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), - }, - [376] = { - [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [350] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1147), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1160), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [351] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1149), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1148), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [352] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1034), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1250), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [353] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1152), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [354] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [355] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1163), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [356] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(930), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [357] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1275), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(929), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [358] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(951), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1154), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [359] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [360] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(941), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1196), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [361] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1033), - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1158), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2443), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(597), - [sym_scoped_call_expression] = STATE(597), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(597), - [sym_nullsafe_member_call_expression] = STATE(597), - [sym_subscript_expression] = STATE(597), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(597), - [sym_variable_name] = STATE(597), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(629), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [aux_sym_require_expression_token1] = ACTIONS(637), - [aux_sym_require_once_expression_token1] = ACTIONS(639), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [362] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1139), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [363] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1126), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [364] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1159), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [365] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1138), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [366] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(988), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_text_interpolation] = STATE(394), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [367] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(978), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_text_interpolation] = STATE(395), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [368] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1057), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [369] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1290), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_text_interpolation] = STATE(396), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [370] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1291), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_text_interpolation] = STATE(397), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [371] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1142), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1282), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_text_interpolation] = STATE(398), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [372] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(941), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1297), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_text_interpolation] = STATE(399), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [373] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(951), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_text_interpolation] = STATE(400), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [374] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1300), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_text_interpolation] = STATE(401), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [375] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1230), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_text_interpolation] = STATE(402), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1134), - [sym__expression] = STATE(1054), - [sym__unary_expression] = STATE(1138), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(1136), - [sym_reference_assignment_expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_augmented_assignment_expression] = STATE(1136), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2607), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [376] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1133), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(601), [sym_scoped_call_expression] = STATE(601), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), [sym_member_call_expression] = STATE(601), [sym_nullsafe_member_call_expression] = STATE(601), [sym_subscript_expression] = STATE(601), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), [sym_dynamic_variable_name] = STATE(601), [sym_variable_name] = STATE(601), - [sym_yield_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_include_expression] = STATE(1136), - [sym_include_once_expression] = STATE(1136), - [sym_require_expression] = STATE(1136), - [sym_require_once_expression] = STATE(1136), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_yield_expression_token1] = ACTIONS(308), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [aux_sym_require_expression_token1] = ACTIONS(314), - [aux_sym_require_once_expression_token1] = ACTIONS(316), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_text_interpolation] = STATE(403), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [377] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [378] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [379] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1019), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_text_interpolation] = STATE(404), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [380] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [381] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(975), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_text_interpolation] = STATE(405), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [382] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(977), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_text_interpolation] = STATE(406), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [383] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1177), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_text_interpolation] = STATE(407), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [385] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_text_interpolation] = STATE(408), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [386] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_text_interpolation] = STATE(409), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [387] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(970), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_text_interpolation] = STATE(410), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [388] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_text_interpolation] = STATE(411), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [389] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1301), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_text_interpolation] = STATE(412), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [390] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1132), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [391] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1140), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_text_interpolation] = STATE(413), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [392] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_text_interpolation] = STATE(414), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [393] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1301), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_text_interpolation] = STATE(415), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [394] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1302), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1164), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [395] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), + }, + [396] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1198), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), [sym_function_call_expression] = STATE(594), [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), [sym_member_call_expression] = STATE(594), [sym_nullsafe_member_call_expression] = STATE(594), [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), + [sym__string] = STATE(684), [sym_dynamic_variable_name] = STATE(594), [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_text_interpolation] = STATE(416), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [397] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_text_interpolation] = STATE(417), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [398] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1154), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(645), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(645), - [sym_nullsafe_member_access_expression] = STATE(645), - [sym_scoped_property_access_expression] = STATE(645), - [sym_list_literal] = STATE(2507), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(616), - [sym_scoped_call_expression] = STATE(616), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(616), - [sym_nullsafe_member_call_expression] = STATE(616), - [sym_subscript_expression] = STATE(616), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(616), - [sym_variable_name] = STATE(616), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(671), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [aux_sym_require_expression_token1] = ACTIONS(679), - [aux_sym_require_once_expression_token1] = ACTIONS(681), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_text_interpolation] = STATE(418), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [399] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_text_interpolation] = STATE(419), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [400] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(979), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(924), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(969), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(603), - [sym_assignment_expression] = STATE(927), - [sym_reference_assignment_expression] = STATE(927), - [sym_conditional_expression] = STATE(927), - [sym_augmented_assignment_expression] = STATE(927), - [sym_member_access_expression] = STATE(603), - [sym_nullsafe_member_access_expression] = STATE(603), - [sym_scoped_property_access_expression] = STATE(603), - [sym_list_literal] = STATE(2479), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(594), - [sym_scoped_call_expression] = STATE(594), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(594), - [sym_nullsafe_member_call_expression] = STATE(594), - [sym_subscript_expression] = STATE(594), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(594), - [sym_variable_name] = STATE(594), - [sym_yield_expression] = STATE(927), - [sym_binary_expression] = STATE(927), - [sym_include_expression] = STATE(927), - [sym_include_once_expression] = STATE(927), - [sym_require_expression] = STATE(927), - [sym_require_once_expression] = STATE(927), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_yield_expression_token1] = ACTIONS(599), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [aux_sym_require_expression_token1] = ACTIONS(607), - [aux_sym_require_once_expression_token1] = ACTIONS(609), - [sym_comment] = ACTIONS(5), - }, - [420] = { - [sym_text_interpolation] = STATE(420), - [sym_catch_clause] = STATE(439), - [sym_finally_clause] = STATE(439), - [aux_sym_try_statement_repeat1] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(935), - [sym_name] = ACTIONS(937), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(935), - [aux_sym_function_static_declaration_token1] = ACTIONS(937), - [aux_sym_global_declaration_token1] = ACTIONS(937), - [aux_sym_namespace_definition_token1] = ACTIONS(937), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(937), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(937), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(937), - [anon_sym_BSLASH] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [aux_sym_trait_declaration_token1] = ACTIONS(937), - [aux_sym_interface_declaration_token1] = ACTIONS(937), - [aux_sym_enum_declaration_token1] = ACTIONS(937), - [aux_sym_enum_case_token1] = ACTIONS(937), - [aux_sym_class_declaration_token1] = ACTIONS(937), - [aux_sym_final_modifier_token1] = ACTIONS(937), - [aux_sym_abstract_modifier_token1] = ACTIONS(937), - [aux_sym_readonly_modifier_token1] = ACTIONS(937), - [aux_sym_visibility_modifier_token1] = ACTIONS(937), - [aux_sym_visibility_modifier_token2] = ACTIONS(937), - [aux_sym_visibility_modifier_token3] = ACTIONS(937), - [aux_sym__arrow_function_header_token1] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [aux_sym_cast_type_token1] = ACTIONS(937), - [aux_sym_echo_statement_token1] = ACTIONS(937), - [anon_sym_unset] = ACTIONS(937), - [aux_sym_declare_statement_token1] = ACTIONS(937), - [aux_sym_declare_statement_token2] = ACTIONS(937), - [sym_float] = ACTIONS(937), - [aux_sym_try_statement_token1] = ACTIONS(937), - [aux_sym_catch_clause_token1] = ACTIONS(939), - [aux_sym_finally_clause_token1] = ACTIONS(941), - [aux_sym_goto_statement_token1] = ACTIONS(937), - [aux_sym_continue_statement_token1] = ACTIONS(937), - [aux_sym_break_statement_token1] = ACTIONS(937), - [sym_integer] = ACTIONS(937), - [aux_sym_return_statement_token1] = ACTIONS(937), - [aux_sym_throw_expression_token1] = ACTIONS(937), - [aux_sym_while_statement_token1] = ACTIONS(937), - [aux_sym_while_statement_token2] = ACTIONS(937), - [aux_sym_do_statement_token1] = ACTIONS(937), - [aux_sym_for_statement_token1] = ACTIONS(937), - [aux_sym_for_statement_token2] = ACTIONS(937), - [aux_sym_foreach_statement_token1] = ACTIONS(937), - [aux_sym_foreach_statement_token2] = ACTIONS(937), - [aux_sym_if_statement_token1] = ACTIONS(937), - [aux_sym_if_statement_token2] = ACTIONS(937), - [aux_sym_else_if_clause_token1] = ACTIONS(937), - [aux_sym_else_clause_token1] = ACTIONS(937), - [aux_sym_match_expression_token1] = ACTIONS(937), - [aux_sym_match_default_expression_token1] = ACTIONS(937), - [aux_sym_switch_statement_token1] = ACTIONS(937), - [aux_sym_switch_block_token1] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [aux_sym_clone_expression_token1] = ACTIONS(937), - [aux_sym_print_intrinsic_token1] = ACTIONS(937), - [aux_sym_object_creation_expression_token1] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [aux_sym__list_destructing_token1] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_self] = ACTIONS(937), - [anon_sym_parent] = ACTIONS(937), - [anon_sym_POUND_LBRACK] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [aux_sym_encapsed_string_token1] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [aux_sym_string_token1] = ACTIONS(935), - [anon_sym_LT_LT_LT] = ACTIONS(935), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_boolean] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [aux_sym_yield_expression_token1] = ACTIONS(937), - [aux_sym_include_expression_token1] = ACTIONS(937), - [aux_sym_include_once_expression_token1] = ACTIONS(937), - [aux_sym_require_expression_token1] = ACTIONS(937), - [aux_sym_require_once_expression_token1] = ACTIONS(937), - [sym_comment] = ACTIONS(5), - }, - [421] = { - [sym_text_interpolation] = STATE(421), - [sym_catch_clause] = STATE(439), - [sym_finally_clause] = STATE(439), - [aux_sym_try_statement_repeat1] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(943), - [sym_name] = ACTIONS(945), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(943), - [aux_sym_function_static_declaration_token1] = ACTIONS(945), - [aux_sym_global_declaration_token1] = ACTIONS(945), - [aux_sym_namespace_definition_token1] = ACTIONS(945), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(945), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(945), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(945), - [anon_sym_BSLASH] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [aux_sym_trait_declaration_token1] = ACTIONS(945), - [aux_sym_interface_declaration_token1] = ACTIONS(945), - [aux_sym_enum_declaration_token1] = ACTIONS(945), - [aux_sym_enum_case_token1] = ACTIONS(945), - [aux_sym_class_declaration_token1] = ACTIONS(945), - [aux_sym_final_modifier_token1] = ACTIONS(945), - [aux_sym_abstract_modifier_token1] = ACTIONS(945), - [aux_sym_readonly_modifier_token1] = ACTIONS(945), - [aux_sym_visibility_modifier_token1] = ACTIONS(945), - [aux_sym_visibility_modifier_token2] = ACTIONS(945), - [aux_sym_visibility_modifier_token3] = ACTIONS(945), - [aux_sym__arrow_function_header_token1] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(943), - [aux_sym_cast_type_token1] = ACTIONS(945), - [aux_sym_echo_statement_token1] = ACTIONS(945), - [anon_sym_unset] = ACTIONS(945), - [aux_sym_declare_statement_token1] = ACTIONS(945), - [aux_sym_declare_statement_token2] = ACTIONS(945), - [sym_float] = ACTIONS(945), - [aux_sym_try_statement_token1] = ACTIONS(945), - [aux_sym_catch_clause_token1] = ACTIONS(947), - [aux_sym_finally_clause_token1] = ACTIONS(950), - [aux_sym_goto_statement_token1] = ACTIONS(945), - [aux_sym_continue_statement_token1] = ACTIONS(945), - [aux_sym_break_statement_token1] = ACTIONS(945), - [sym_integer] = ACTIONS(945), - [aux_sym_return_statement_token1] = ACTIONS(945), - [aux_sym_throw_expression_token1] = ACTIONS(945), - [aux_sym_while_statement_token1] = ACTIONS(945), - [aux_sym_while_statement_token2] = ACTIONS(945), - [aux_sym_do_statement_token1] = ACTIONS(945), - [aux_sym_for_statement_token1] = ACTIONS(945), - [aux_sym_for_statement_token2] = ACTIONS(945), - [aux_sym_foreach_statement_token1] = ACTIONS(945), - [aux_sym_foreach_statement_token2] = ACTIONS(945), - [aux_sym_if_statement_token1] = ACTIONS(945), - [aux_sym_if_statement_token2] = ACTIONS(945), - [aux_sym_else_if_clause_token1] = ACTIONS(945), - [aux_sym_else_clause_token1] = ACTIONS(945), - [aux_sym_match_expression_token1] = ACTIONS(945), - [aux_sym_match_default_expression_token1] = ACTIONS(945), - [aux_sym_switch_statement_token1] = ACTIONS(945), - [aux_sym_switch_block_token1] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_TILDE] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(943), - [aux_sym_clone_expression_token1] = ACTIONS(945), - [aux_sym_print_intrinsic_token1] = ACTIONS(945), - [aux_sym_object_creation_expression_token1] = ACTIONS(945), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(943), - [aux_sym__list_destructing_token1] = ACTIONS(945), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_self] = ACTIONS(945), - [anon_sym_parent] = ACTIONS(945), - [anon_sym_POUND_LBRACK] = ACTIONS(943), - [anon_sym_SQUOTE] = ACTIONS(943), - [aux_sym_encapsed_string_token1] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(943), - [aux_sym_string_token1] = ACTIONS(943), - [anon_sym_LT_LT_LT] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [sym_boolean] = ACTIONS(945), - [sym_null] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [aux_sym_yield_expression_token1] = ACTIONS(945), - [aux_sym_include_expression_token1] = ACTIONS(945), - [aux_sym_include_once_expression_token1] = ACTIONS(945), - [aux_sym_require_expression_token1] = ACTIONS(945), - [aux_sym_require_once_expression_token1] = ACTIONS(945), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_text_interpolation] = STATE(422), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [401] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1173), - [sym_unary_op_expression] = STATE(1173), - [sym_exponentiation_expression] = STATE(937), - [sym_clone_expression] = STATE(1173), - [sym__primary_expression] = STATE(1173), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1298), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(937), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(937), - [sym_augmented_assignment_expression] = STATE(937), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2511), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(613), - [sym_scoped_call_expression] = STATE(613), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(613), - [sym_nullsafe_member_call_expression] = STATE(613), - [sym_subscript_expression] = STATE(613), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(613), - [sym_variable_name] = STATE(613), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [sym_comment] = ACTIONS(5), - }, - [423] = { - [sym_text_interpolation] = STATE(423), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(1097), - [sym_unary_op_expression] = STATE(1097), - [sym_exponentiation_expression] = STATE(1096), - [sym_clone_expression] = STATE(1097), - [sym__primary_expression] = STATE(1097), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1096), - [sym_cast_variable] = STATE(639), - [sym_assignment_expression] = STATE(1096), - [sym_augmented_assignment_expression] = STATE(1096), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_list_literal] = STATE(2467), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [sym_comment] = ACTIONS(5), - }, - [424] = { - [sym_text_interpolation] = STATE(424), - [sym_else_if_clause] = STATE(463), - [sym_else_clause] = STATE(476), - [aux_sym_if_statement_repeat1] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(953), - [sym_name] = ACTIONS(955), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(953), - [aux_sym_function_static_declaration_token1] = ACTIONS(955), - [aux_sym_global_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_definition_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(955), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [aux_sym_trait_declaration_token1] = ACTIONS(955), - [aux_sym_interface_declaration_token1] = ACTIONS(955), - [aux_sym_enum_declaration_token1] = ACTIONS(955), - [aux_sym_enum_case_token1] = ACTIONS(955), - [aux_sym_class_declaration_token1] = ACTIONS(955), - [aux_sym_final_modifier_token1] = ACTIONS(955), - [aux_sym_abstract_modifier_token1] = ACTIONS(955), - [aux_sym_readonly_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token2] = ACTIONS(955), - [aux_sym_visibility_modifier_token3] = ACTIONS(955), - [aux_sym__arrow_function_header_token1] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(953), - [aux_sym_cast_type_token1] = ACTIONS(955), - [aux_sym_echo_statement_token1] = ACTIONS(955), - [anon_sym_unset] = ACTIONS(955), - [aux_sym_declare_statement_token1] = ACTIONS(955), - [aux_sym_declare_statement_token2] = ACTIONS(955), - [sym_float] = ACTIONS(955), - [aux_sym_try_statement_token1] = ACTIONS(955), - [aux_sym_goto_statement_token1] = ACTIONS(955), - [aux_sym_continue_statement_token1] = ACTIONS(955), - [aux_sym_break_statement_token1] = ACTIONS(955), - [sym_integer] = ACTIONS(955), - [aux_sym_return_statement_token1] = ACTIONS(955), - [aux_sym_throw_expression_token1] = ACTIONS(955), - [aux_sym_while_statement_token1] = ACTIONS(955), - [aux_sym_while_statement_token2] = ACTIONS(955), - [aux_sym_do_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token2] = ACTIONS(955), - [aux_sym_foreach_statement_token1] = ACTIONS(955), - [aux_sym_foreach_statement_token2] = ACTIONS(955), - [aux_sym_if_statement_token1] = ACTIONS(955), - [aux_sym_if_statement_token2] = ACTIONS(955), - [aux_sym_else_if_clause_token1] = ACTIONS(957), - [aux_sym_else_clause_token1] = ACTIONS(959), - [aux_sym_match_expression_token1] = ACTIONS(955), - [aux_sym_match_default_expression_token1] = ACTIONS(955), - [aux_sym_switch_statement_token1] = ACTIONS(955), - [aux_sym_switch_block_token1] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [aux_sym_clone_expression_token1] = ACTIONS(955), - [aux_sym_print_intrinsic_token1] = ACTIONS(955), - [aux_sym_object_creation_expression_token1] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [aux_sym__list_destructing_token1] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_self] = ACTIONS(955), - [anon_sym_parent] = ACTIONS(955), - [anon_sym_POUND_LBRACK] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(953), - [aux_sym_encapsed_string_token1] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [aux_sym_string_token1] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [sym_boolean] = ACTIONS(955), - [sym_null] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [aux_sym_yield_expression_token1] = ACTIONS(955), - [aux_sym_include_expression_token1] = ACTIONS(955), - [aux_sym_include_once_expression_token1] = ACTIONS(955), - [aux_sym_require_expression_token1] = ACTIONS(955), - [aux_sym_require_once_expression_token1] = ACTIONS(955), - [sym_comment] = ACTIONS(5), - }, - [425] = { - [sym_text_interpolation] = STATE(425), - [sym_else_if_clause] = STATE(463), - [sym_else_clause] = STATE(476), - [aux_sym_if_statement_repeat1] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(953), - [sym_name] = ACTIONS(955), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(953), - [aux_sym_function_static_declaration_token1] = ACTIONS(955), - [aux_sym_global_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_definition_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(955), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(955), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [aux_sym_trait_declaration_token1] = ACTIONS(955), - [aux_sym_interface_declaration_token1] = ACTIONS(955), - [aux_sym_enum_declaration_token1] = ACTIONS(955), - [aux_sym_enum_case_token1] = ACTIONS(955), - [aux_sym_class_declaration_token1] = ACTIONS(955), - [aux_sym_final_modifier_token1] = ACTIONS(955), - [aux_sym_abstract_modifier_token1] = ACTIONS(955), - [aux_sym_readonly_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token1] = ACTIONS(955), - [aux_sym_visibility_modifier_token2] = ACTIONS(955), - [aux_sym_visibility_modifier_token3] = ACTIONS(955), - [aux_sym__arrow_function_header_token1] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(953), - [aux_sym_cast_type_token1] = ACTIONS(955), - [aux_sym_echo_statement_token1] = ACTIONS(955), - [anon_sym_unset] = ACTIONS(955), - [aux_sym_declare_statement_token1] = ACTIONS(955), - [aux_sym_declare_statement_token2] = ACTIONS(955), - [sym_float] = ACTIONS(955), - [aux_sym_try_statement_token1] = ACTIONS(955), - [aux_sym_goto_statement_token1] = ACTIONS(955), - [aux_sym_continue_statement_token1] = ACTIONS(955), - [aux_sym_break_statement_token1] = ACTIONS(955), - [sym_integer] = ACTIONS(955), - [aux_sym_return_statement_token1] = ACTIONS(955), - [aux_sym_throw_expression_token1] = ACTIONS(955), - [aux_sym_while_statement_token1] = ACTIONS(955), - [aux_sym_while_statement_token2] = ACTIONS(955), - [aux_sym_do_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token1] = ACTIONS(955), - [aux_sym_for_statement_token2] = ACTIONS(955), - [aux_sym_foreach_statement_token1] = ACTIONS(955), - [aux_sym_foreach_statement_token2] = ACTIONS(955), - [aux_sym_if_statement_token1] = ACTIONS(955), - [aux_sym_if_statement_token2] = ACTIONS(955), - [aux_sym_else_if_clause_token1] = ACTIONS(961), - [aux_sym_else_clause_token1] = ACTIONS(964), - [aux_sym_match_expression_token1] = ACTIONS(955), - [aux_sym_match_default_expression_token1] = ACTIONS(955), - [aux_sym_switch_statement_token1] = ACTIONS(955), - [aux_sym_switch_block_token1] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [aux_sym_clone_expression_token1] = ACTIONS(955), - [aux_sym_print_intrinsic_token1] = ACTIONS(955), - [aux_sym_object_creation_expression_token1] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [aux_sym__list_destructing_token1] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_self] = ACTIONS(955), - [anon_sym_parent] = ACTIONS(955), - [anon_sym_POUND_LBRACK] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(953), - [aux_sym_encapsed_string_token1] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [aux_sym_string_token1] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [sym_boolean] = ACTIONS(955), - [sym_null] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(953), - [aux_sym_yield_expression_token1] = ACTIONS(955), - [aux_sym_include_expression_token1] = ACTIONS(955), - [aux_sym_include_once_expression_token1] = ACTIONS(955), - [aux_sym_require_expression_token1] = ACTIONS(955), - [aux_sym_require_once_expression_token1] = ACTIONS(955), - [sym_comment] = ACTIONS(5), - }, - [426] = { - [sym_text_interpolation] = STATE(426), - [sym_else_if_clause] = STATE(463), - [sym_else_clause] = STATE(507), - [aux_sym_if_statement_repeat1] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(967), - [sym_name] = ACTIONS(969), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(967), - [aux_sym_function_static_declaration_token1] = ACTIONS(969), - [aux_sym_global_declaration_token1] = ACTIONS(969), - [aux_sym_namespace_definition_token1] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(969), - [anon_sym_BSLASH] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [aux_sym_trait_declaration_token1] = ACTIONS(969), - [aux_sym_interface_declaration_token1] = ACTIONS(969), - [aux_sym_enum_declaration_token1] = ACTIONS(969), - [aux_sym_enum_case_token1] = ACTIONS(969), - [aux_sym_class_declaration_token1] = ACTIONS(969), - [aux_sym_final_modifier_token1] = ACTIONS(969), - [aux_sym_abstract_modifier_token1] = ACTIONS(969), - [aux_sym_readonly_modifier_token1] = ACTIONS(969), - [aux_sym_visibility_modifier_token1] = ACTIONS(969), - [aux_sym_visibility_modifier_token2] = ACTIONS(969), - [aux_sym_visibility_modifier_token3] = ACTIONS(969), - [aux_sym__arrow_function_header_token1] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [aux_sym_cast_type_token1] = ACTIONS(969), - [aux_sym_echo_statement_token1] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [aux_sym_declare_statement_token1] = ACTIONS(969), - [aux_sym_declare_statement_token2] = ACTIONS(969), - [sym_float] = ACTIONS(969), - [aux_sym_try_statement_token1] = ACTIONS(969), - [aux_sym_goto_statement_token1] = ACTIONS(969), - [aux_sym_continue_statement_token1] = ACTIONS(969), - [aux_sym_break_statement_token1] = ACTIONS(969), - [sym_integer] = ACTIONS(969), - [aux_sym_return_statement_token1] = ACTIONS(969), - [aux_sym_throw_expression_token1] = ACTIONS(969), - [aux_sym_while_statement_token1] = ACTIONS(969), - [aux_sym_while_statement_token2] = ACTIONS(969), - [aux_sym_do_statement_token1] = ACTIONS(969), - [aux_sym_for_statement_token1] = ACTIONS(969), - [aux_sym_for_statement_token2] = ACTIONS(969), - [aux_sym_foreach_statement_token1] = ACTIONS(969), - [aux_sym_foreach_statement_token2] = ACTIONS(969), - [aux_sym_if_statement_token1] = ACTIONS(969), - [aux_sym_if_statement_token2] = ACTIONS(969), - [aux_sym_else_if_clause_token1] = ACTIONS(971), - [aux_sym_else_clause_token1] = ACTIONS(974), - [aux_sym_match_expression_token1] = ACTIONS(969), - [aux_sym_match_default_expression_token1] = ACTIONS(969), - [aux_sym_switch_statement_token1] = ACTIONS(969), - [aux_sym_switch_block_token1] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [aux_sym_clone_expression_token1] = ACTIONS(969), - [aux_sym_print_intrinsic_token1] = ACTIONS(969), - [aux_sym_object_creation_expression_token1] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [aux_sym__list_destructing_token1] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_self] = ACTIONS(969), - [anon_sym_parent] = ACTIONS(969), - [anon_sym_POUND_LBRACK] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(967), - [aux_sym_encapsed_string_token1] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [aux_sym_string_token1] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_boolean] = ACTIONS(969), - [sym_null] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [aux_sym_yield_expression_token1] = ACTIONS(969), - [aux_sym_include_expression_token1] = ACTIONS(969), - [aux_sym_include_once_expression_token1] = ACTIONS(969), - [aux_sym_require_expression_token1] = ACTIONS(969), - [aux_sym_require_once_expression_token1] = ACTIONS(969), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_text_interpolation] = STATE(427), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [402] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1024), - [sym_unary_op_expression] = STATE(1024), - [sym_exponentiation_expression] = STATE(937), - [sym_clone_expression] = STATE(1024), - [sym__primary_expression] = STATE(1024), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(909), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(937), - [sym_cast_variable] = STATE(626), - [sym_assignment_expression] = STATE(937), - [sym_augmented_assignment_expression] = STATE(937), - [sym_member_access_expression] = STATE(626), - [sym_nullsafe_member_access_expression] = STATE(626), - [sym_scoped_property_access_expression] = STATE(626), - [sym_list_literal] = STATE(2433), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(598), - [sym_scoped_call_expression] = STATE(598), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(598), - [sym_nullsafe_member_call_expression] = STATE(598), - [sym_subscript_expression] = STATE(598), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(598), - [sym_variable_name] = STATE(598), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_text_interpolation] = STATE(428), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [403] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(1001), - [sym_unary_op_expression] = STATE(1001), - [sym_exponentiation_expression] = STATE(937), - [sym_clone_expression] = STATE(1001), - [sym__primary_expression] = STATE(1001), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1294), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(937), - [sym_cast_variable] = STATE(609), - [sym_assignment_expression] = STATE(937), - [sym_augmented_assignment_expression] = STATE(937), - [sym_member_access_expression] = STATE(609), - [sym_nullsafe_member_access_expression] = STATE(609), - [sym_scoped_property_access_expression] = STATE(609), - [sym_list_literal] = STATE(2554), - [sym__list_destructing] = STATE(2211), - [sym__array_destructing] = STATE(2211), - [sym_function_call_expression] = STATE(596), - [sym_scoped_call_expression] = STATE(596), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(596), - [sym_nullsafe_member_call_expression] = STATE(596), - [sym_subscript_expression] = STATE(596), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(596), - [sym_variable_name] = STATE(596), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [aux_sym__list_destructing_token1] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [sym_comment] = ACTIONS(5), - }, - [429] = { - [sym_text_interpolation] = STATE(429), - [sym_else_if_clause] = STATE(463), - [sym_else_clause] = STATE(507), - [aux_sym_if_statement_repeat1] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(967), - [sym_name] = ACTIONS(969), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(967), - [aux_sym_function_static_declaration_token1] = ACTIONS(969), - [aux_sym_global_declaration_token1] = ACTIONS(969), - [aux_sym_namespace_definition_token1] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(969), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(969), - [anon_sym_BSLASH] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [aux_sym_trait_declaration_token1] = ACTIONS(969), - [aux_sym_interface_declaration_token1] = ACTIONS(969), - [aux_sym_enum_declaration_token1] = ACTIONS(969), - [aux_sym_enum_case_token1] = ACTIONS(969), - [aux_sym_class_declaration_token1] = ACTIONS(969), - [aux_sym_final_modifier_token1] = ACTIONS(969), - [aux_sym_abstract_modifier_token1] = ACTIONS(969), - [aux_sym_readonly_modifier_token1] = ACTIONS(969), - [aux_sym_visibility_modifier_token1] = ACTIONS(969), - [aux_sym_visibility_modifier_token2] = ACTIONS(969), - [aux_sym_visibility_modifier_token3] = ACTIONS(969), - [aux_sym__arrow_function_header_token1] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [aux_sym_cast_type_token1] = ACTIONS(969), - [aux_sym_echo_statement_token1] = ACTIONS(969), - [anon_sym_unset] = ACTIONS(969), - [aux_sym_declare_statement_token1] = ACTIONS(969), - [aux_sym_declare_statement_token2] = ACTIONS(969), - [sym_float] = ACTIONS(969), - [aux_sym_try_statement_token1] = ACTIONS(969), - [aux_sym_goto_statement_token1] = ACTIONS(969), - [aux_sym_continue_statement_token1] = ACTIONS(969), - [aux_sym_break_statement_token1] = ACTIONS(969), - [sym_integer] = ACTIONS(969), - [aux_sym_return_statement_token1] = ACTIONS(969), - [aux_sym_throw_expression_token1] = ACTIONS(969), - [aux_sym_while_statement_token1] = ACTIONS(969), - [aux_sym_while_statement_token2] = ACTIONS(969), - [aux_sym_do_statement_token1] = ACTIONS(969), - [aux_sym_for_statement_token1] = ACTIONS(969), - [aux_sym_for_statement_token2] = ACTIONS(969), - [aux_sym_foreach_statement_token1] = ACTIONS(969), - [aux_sym_foreach_statement_token2] = ACTIONS(969), - [aux_sym_if_statement_token1] = ACTIONS(969), - [aux_sym_if_statement_token2] = ACTIONS(969), - [aux_sym_else_if_clause_token1] = ACTIONS(957), - [aux_sym_else_clause_token1] = ACTIONS(959), - [aux_sym_match_expression_token1] = ACTIONS(969), - [aux_sym_match_default_expression_token1] = ACTIONS(969), - [aux_sym_switch_statement_token1] = ACTIONS(969), - [aux_sym_switch_block_token1] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [aux_sym_clone_expression_token1] = ACTIONS(969), - [aux_sym_print_intrinsic_token1] = ACTIONS(969), - [aux_sym_object_creation_expression_token1] = ACTIONS(969), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [aux_sym__list_destructing_token1] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_self] = ACTIONS(969), - [anon_sym_parent] = ACTIONS(969), - [anon_sym_POUND_LBRACK] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(967), - [aux_sym_encapsed_string_token1] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [aux_sym_string_token1] = ACTIONS(967), - [anon_sym_LT_LT_LT] = ACTIONS(967), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_boolean] = ACTIONS(969), - [sym_null] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [aux_sym_yield_expression_token1] = ACTIONS(969), - [aux_sym_include_expression_token1] = ACTIONS(969), - [aux_sym_include_once_expression_token1] = ACTIONS(969), - [aux_sym_require_expression_token1] = ACTIONS(969), - [aux_sym_require_once_expression_token1] = ACTIONS(969), - [sym_comment] = ACTIONS(5), - }, - [430] = { - [sym_text_interpolation] = STATE(430), - [sym_qualified_name] = STATE(827), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym_match_expression] = STATE(2432), - [sym__unary_expression] = STATE(1043), - [sym_unary_op_expression] = STATE(1140), - [sym_exponentiation_expression] = STATE(1137), - [sym_clone_expression] = STATE(1140), - [sym__primary_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(813), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_expression] = STATE(1137), - [sym_cast_variable] = STATE(638), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_function_call_expression] = STATE(604), - [sym_scoped_call_expression] = STATE(604), - [sym__scope_resolution_qualifier] = STATE(2604), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(604), - [sym_nullsafe_member_call_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(813), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(813), - [sym_dynamic_variable_name] = STATE(604), - [sym_variable_name] = STATE(604), - [sym_include_expression] = STATE(1043), - [sym_include_once_expression] = STATE(1043), - [sym__reserved_identifier] = STATE(1547), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(641), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(238), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(280), - [anon_sym_BANG] = ACTIONS(280), - [aux_sym_clone_expression_token1] = ACTIONS(282), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(306), - [aux_sym_include_expression_token1] = ACTIONS(310), - [aux_sym_include_once_expression_token1] = ACTIONS(312), - [sym_comment] = ACTIONS(5), - }, - [431] = { - [sym_text_interpolation] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(979), - [sym_name] = ACTIONS(981), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(979), - [aux_sym_function_static_declaration_token1] = ACTIONS(981), - [aux_sym_global_declaration_token1] = ACTIONS(981), - [aux_sym_namespace_definition_token1] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(981), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(981), - [anon_sym_BSLASH] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [aux_sym_trait_declaration_token1] = ACTIONS(981), - [aux_sym_interface_declaration_token1] = ACTIONS(981), - [aux_sym_enum_declaration_token1] = ACTIONS(981), - [aux_sym_enum_case_token1] = ACTIONS(981), - [aux_sym_class_declaration_token1] = ACTIONS(981), - [aux_sym_final_modifier_token1] = ACTIONS(981), - [aux_sym_abstract_modifier_token1] = ACTIONS(981), - [aux_sym_readonly_modifier_token1] = ACTIONS(981), - [aux_sym_visibility_modifier_token1] = ACTIONS(981), - [aux_sym_visibility_modifier_token2] = ACTIONS(981), - [aux_sym_visibility_modifier_token3] = ACTIONS(981), - [aux_sym__arrow_function_header_token1] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [aux_sym_cast_type_token1] = ACTIONS(981), - [aux_sym_echo_statement_token1] = ACTIONS(981), - [anon_sym_unset] = ACTIONS(981), - [aux_sym_declare_statement_token1] = ACTIONS(981), - [aux_sym_declare_statement_token2] = ACTIONS(981), - [sym_float] = ACTIONS(981), - [aux_sym_try_statement_token1] = ACTIONS(981), - [aux_sym_catch_clause_token1] = ACTIONS(981), - [aux_sym_finally_clause_token1] = ACTIONS(981), - [aux_sym_goto_statement_token1] = ACTIONS(981), - [aux_sym_continue_statement_token1] = ACTIONS(981), - [aux_sym_break_statement_token1] = ACTIONS(981), - [sym_integer] = ACTIONS(981), - [aux_sym_return_statement_token1] = ACTIONS(981), - [aux_sym_throw_expression_token1] = ACTIONS(981), - [aux_sym_while_statement_token1] = ACTIONS(981), - [aux_sym_while_statement_token2] = ACTIONS(981), - [aux_sym_do_statement_token1] = ACTIONS(981), - [aux_sym_for_statement_token1] = ACTIONS(981), - [aux_sym_for_statement_token2] = ACTIONS(981), - [aux_sym_foreach_statement_token1] = ACTIONS(981), - [aux_sym_foreach_statement_token2] = ACTIONS(981), - [aux_sym_if_statement_token1] = ACTIONS(981), - [aux_sym_if_statement_token2] = ACTIONS(981), - [aux_sym_else_if_clause_token1] = ACTIONS(981), - [aux_sym_else_clause_token1] = ACTIONS(981), - [aux_sym_match_expression_token1] = ACTIONS(981), - [aux_sym_match_default_expression_token1] = ACTIONS(981), - [aux_sym_switch_statement_token1] = ACTIONS(981), - [aux_sym_switch_block_token1] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [aux_sym_clone_expression_token1] = ACTIONS(981), - [aux_sym_print_intrinsic_token1] = ACTIONS(981), - [aux_sym_object_creation_expression_token1] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [aux_sym__list_destructing_token1] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_self] = ACTIONS(981), - [anon_sym_parent] = ACTIONS(981), - [anon_sym_POUND_LBRACK] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(979), - [aux_sym_encapsed_string_token1] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [aux_sym_string_token1] = ACTIONS(979), - [anon_sym_LT_LT_LT] = ACTIONS(979), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_boolean] = ACTIONS(981), - [sym_null] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [aux_sym_yield_expression_token1] = ACTIONS(981), - [aux_sym_include_expression_token1] = ACTIONS(981), - [aux_sym_include_once_expression_token1] = ACTIONS(981), - [aux_sym_require_expression_token1] = ACTIONS(981), - [aux_sym_require_once_expression_token1] = ACTIONS(981), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_text_interpolation] = STATE(432), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), + [404] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(2447), - [sym__unary_expression] = STATE(936), - [sym_unary_op_expression] = STATE(1032), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1032), - [sym__primary_expression] = STATE(1032), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(595), - [sym_member_access_expression] = STATE(595), - [sym_nullsafe_member_access_expression] = STATE(595), - [sym_scoped_property_access_expression] = STATE(595), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_include_expression] = STATE(936), - [sym_include_once_expression] = STATE(936), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(611), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_BANG] = ACTIONS(621), - [aux_sym_clone_expression_token1] = ACTIONS(623), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(633), - [aux_sym_include_once_expression_token1] = ACTIONS(635), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_text_interpolation] = STATE(433), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [405] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(2577), - [sym__unary_expression] = STATE(936), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(1157), + [sym__expression] = STATE(1149), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(595), - [sym_member_access_expression] = STATE(595), - [sym_nullsafe_member_access_expression] = STATE(595), - [sym_scoped_property_access_expression] = STATE(595), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(641), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(641), + [sym_nullsafe_member_access_expression] = STATE(641), + [sym_scoped_property_access_expression] = STATE(641), + [sym_list_literal] = STATE(2461), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(620), + [sym_scoped_call_expression] = STATE(620), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(620), + [sym_nullsafe_member_call_expression] = STATE(620), + [sym_subscript_expression] = STATE(620), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_include_expression] = STATE(936), - [sym_include_once_expression] = STATE(936), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(561), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(620), + [sym_variable_name] = STATE(620), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(669), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [aux_sym_require_expression_token1] = ACTIONS(677), + [aux_sym_require_once_expression_token1] = ACTIONS(679), + [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_text_interpolation] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(985), - [sym_name] = ACTIONS(987), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(985), - [aux_sym_function_static_declaration_token1] = ACTIONS(987), - [aux_sym_global_declaration_token1] = ACTIONS(987), - [aux_sym_namespace_definition_token1] = ACTIONS(987), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(987), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(987), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(987), - [anon_sym_BSLASH] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [aux_sym_trait_declaration_token1] = ACTIONS(987), - [aux_sym_interface_declaration_token1] = ACTIONS(987), - [aux_sym_enum_declaration_token1] = ACTIONS(987), - [aux_sym_enum_case_token1] = ACTIONS(987), - [aux_sym_class_declaration_token1] = ACTIONS(987), - [aux_sym_final_modifier_token1] = ACTIONS(987), - [aux_sym_abstract_modifier_token1] = ACTIONS(987), - [aux_sym_readonly_modifier_token1] = ACTIONS(987), - [aux_sym_visibility_modifier_token1] = ACTIONS(987), - [aux_sym_visibility_modifier_token2] = ACTIONS(987), - [aux_sym_visibility_modifier_token3] = ACTIONS(987), - [aux_sym__arrow_function_header_token1] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(985), - [aux_sym_cast_type_token1] = ACTIONS(987), - [aux_sym_echo_statement_token1] = ACTIONS(987), - [anon_sym_unset] = ACTIONS(987), - [aux_sym_declare_statement_token1] = ACTIONS(987), - [aux_sym_declare_statement_token2] = ACTIONS(987), - [sym_float] = ACTIONS(987), - [aux_sym_try_statement_token1] = ACTIONS(987), - [aux_sym_catch_clause_token1] = ACTIONS(987), - [aux_sym_finally_clause_token1] = ACTIONS(987), - [aux_sym_goto_statement_token1] = ACTIONS(987), - [aux_sym_continue_statement_token1] = ACTIONS(987), - [aux_sym_break_statement_token1] = ACTIONS(987), - [sym_integer] = ACTIONS(987), - [aux_sym_return_statement_token1] = ACTIONS(987), - [aux_sym_throw_expression_token1] = ACTIONS(987), - [aux_sym_while_statement_token1] = ACTIONS(987), - [aux_sym_while_statement_token2] = ACTIONS(987), - [aux_sym_do_statement_token1] = ACTIONS(987), - [aux_sym_for_statement_token1] = ACTIONS(987), - [aux_sym_for_statement_token2] = ACTIONS(987), - [aux_sym_foreach_statement_token1] = ACTIONS(987), - [aux_sym_foreach_statement_token2] = ACTIONS(987), - [aux_sym_if_statement_token1] = ACTIONS(987), - [aux_sym_if_statement_token2] = ACTIONS(987), - [aux_sym_else_if_clause_token1] = ACTIONS(987), - [aux_sym_else_clause_token1] = ACTIONS(987), - [aux_sym_match_expression_token1] = ACTIONS(987), - [aux_sym_match_default_expression_token1] = ACTIONS(987), - [aux_sym_switch_statement_token1] = ACTIONS(987), - [aux_sym_switch_block_token1] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [aux_sym_clone_expression_token1] = ACTIONS(987), - [aux_sym_print_intrinsic_token1] = ACTIONS(987), - [aux_sym_object_creation_expression_token1] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(985), - [anon_sym_DASH_DASH] = ACTIONS(985), - [aux_sym__list_destructing_token1] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_self] = ACTIONS(987), - [anon_sym_parent] = ACTIONS(987), - [anon_sym_POUND_LBRACK] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [aux_sym_encapsed_string_token1] = ACTIONS(985), - [anon_sym_DQUOTE] = ACTIONS(985), - [aux_sym_string_token1] = ACTIONS(985), - [anon_sym_LT_LT_LT] = ACTIONS(985), - [anon_sym_BQUOTE] = ACTIONS(985), - [sym_boolean] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(985), - [aux_sym_yield_expression_token1] = ACTIONS(987), - [aux_sym_include_expression_token1] = ACTIONS(987), - [aux_sym_include_once_expression_token1] = ACTIONS(987), - [aux_sym_require_expression_token1] = ACTIONS(987), - [aux_sym_require_once_expression_token1] = ACTIONS(987), - [sym_comment] = ACTIONS(5), + [406] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_text_interpolation] = STATE(435), - [sym_else_if_clause] = STATE(463), - [aux_sym_if_statement_repeat1] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_name] = ACTIONS(991), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(989), - [aux_sym_function_static_declaration_token1] = ACTIONS(991), - [aux_sym_global_declaration_token1] = ACTIONS(991), - [aux_sym_namespace_definition_token1] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(991), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(991), - [anon_sym_BSLASH] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [aux_sym_trait_declaration_token1] = ACTIONS(991), - [aux_sym_interface_declaration_token1] = ACTIONS(991), - [aux_sym_enum_declaration_token1] = ACTIONS(991), - [aux_sym_enum_case_token1] = ACTIONS(991), - [aux_sym_class_declaration_token1] = ACTIONS(991), - [aux_sym_final_modifier_token1] = ACTIONS(991), - [aux_sym_abstract_modifier_token1] = ACTIONS(991), - [aux_sym_readonly_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token1] = ACTIONS(991), - [aux_sym_visibility_modifier_token2] = ACTIONS(991), - [aux_sym_visibility_modifier_token3] = ACTIONS(991), - [aux_sym__arrow_function_header_token1] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [aux_sym_cast_type_token1] = ACTIONS(991), - [aux_sym_echo_statement_token1] = ACTIONS(991), - [anon_sym_unset] = ACTIONS(991), - [aux_sym_declare_statement_token1] = ACTIONS(991), - [aux_sym_declare_statement_token2] = ACTIONS(991), - [sym_float] = ACTIONS(991), - [aux_sym_try_statement_token1] = ACTIONS(991), - [aux_sym_goto_statement_token1] = ACTIONS(991), - [aux_sym_continue_statement_token1] = ACTIONS(991), - [aux_sym_break_statement_token1] = ACTIONS(991), - [sym_integer] = ACTIONS(991), - [aux_sym_return_statement_token1] = ACTIONS(991), - [aux_sym_throw_expression_token1] = ACTIONS(991), - [aux_sym_while_statement_token1] = ACTIONS(991), - [aux_sym_while_statement_token2] = ACTIONS(991), - [aux_sym_do_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token1] = ACTIONS(991), - [aux_sym_for_statement_token2] = ACTIONS(991), - [aux_sym_foreach_statement_token1] = ACTIONS(991), - [aux_sym_foreach_statement_token2] = ACTIONS(991), - [aux_sym_if_statement_token1] = ACTIONS(991), - [aux_sym_if_statement_token2] = ACTIONS(991), - [aux_sym_else_if_clause_token1] = ACTIONS(993), - [aux_sym_else_clause_token1] = ACTIONS(991), - [aux_sym_match_expression_token1] = ACTIONS(991), - [aux_sym_match_default_expression_token1] = ACTIONS(991), - [aux_sym_switch_statement_token1] = ACTIONS(991), - [aux_sym_switch_block_token1] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [aux_sym_clone_expression_token1] = ACTIONS(991), - [aux_sym_print_intrinsic_token1] = ACTIONS(991), - [aux_sym_object_creation_expression_token1] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(989), - [aux_sym__list_destructing_token1] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_self] = ACTIONS(991), - [anon_sym_parent] = ACTIONS(991), - [anon_sym_POUND_LBRACK] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [aux_sym_encapsed_string_token1] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [aux_sym_string_token1] = ACTIONS(989), - [anon_sym_LT_LT_LT] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [sym_boolean] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(989), - [aux_sym_yield_expression_token1] = ACTIONS(991), - [aux_sym_include_expression_token1] = ACTIONS(991), - [aux_sym_include_once_expression_token1] = ACTIONS(991), - [aux_sym_require_expression_token1] = ACTIONS(991), - [aux_sym_require_once_expression_token1] = ACTIONS(991), - [sym_comment] = ACTIONS(5), + [407] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1001), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(617), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(617), + [sym_nullsafe_member_access_expression] = STATE(617), + [sym_scoped_property_access_expression] = STATE(617), + [sym_list_literal] = STATE(2393), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(594), + [sym_scoped_call_expression] = STATE(594), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(594), + [sym_nullsafe_member_call_expression] = STATE(594), + [sym_subscript_expression] = STATE(594), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(594), + [sym_variable_name] = STATE(594), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(627), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [aux_sym_require_expression_token1] = ACTIONS(635), + [aux_sym_require_once_expression_token1] = ACTIONS(637), + [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_text_interpolation] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(996), - [sym_name] = ACTIONS(998), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(996), - [aux_sym_function_static_declaration_token1] = ACTIONS(998), - [aux_sym_global_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_definition_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [aux_sym_trait_declaration_token1] = ACTIONS(998), - [aux_sym_interface_declaration_token1] = ACTIONS(998), - [aux_sym_enum_declaration_token1] = ACTIONS(998), - [aux_sym_enum_case_token1] = ACTIONS(998), - [aux_sym_class_declaration_token1] = ACTIONS(998), - [aux_sym_final_modifier_token1] = ACTIONS(998), - [aux_sym_abstract_modifier_token1] = ACTIONS(998), - [aux_sym_readonly_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token2] = ACTIONS(998), - [aux_sym_visibility_modifier_token3] = ACTIONS(998), - [aux_sym__arrow_function_header_token1] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(996), - [aux_sym_cast_type_token1] = ACTIONS(998), - [aux_sym_echo_statement_token1] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(998), - [aux_sym_declare_statement_token1] = ACTIONS(998), - [aux_sym_declare_statement_token2] = ACTIONS(998), - [sym_float] = ACTIONS(998), - [aux_sym_try_statement_token1] = ACTIONS(998), - [aux_sym_catch_clause_token1] = ACTIONS(998), - [aux_sym_finally_clause_token1] = ACTIONS(998), - [aux_sym_goto_statement_token1] = ACTIONS(998), - [aux_sym_continue_statement_token1] = ACTIONS(998), - [aux_sym_break_statement_token1] = ACTIONS(998), - [sym_integer] = ACTIONS(998), - [aux_sym_return_statement_token1] = ACTIONS(998), - [aux_sym_throw_expression_token1] = ACTIONS(998), - [aux_sym_while_statement_token1] = ACTIONS(998), - [aux_sym_while_statement_token2] = ACTIONS(998), - [aux_sym_do_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token2] = ACTIONS(998), - [aux_sym_foreach_statement_token1] = ACTIONS(998), - [aux_sym_foreach_statement_token2] = ACTIONS(998), - [aux_sym_if_statement_token1] = ACTIONS(998), - [aux_sym_if_statement_token2] = ACTIONS(998), - [aux_sym_else_if_clause_token1] = ACTIONS(998), - [aux_sym_else_clause_token1] = ACTIONS(998), - [aux_sym_match_expression_token1] = ACTIONS(998), - [aux_sym_match_default_expression_token1] = ACTIONS(998), - [aux_sym_switch_statement_token1] = ACTIONS(998), - [aux_sym_switch_block_token1] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [aux_sym_clone_expression_token1] = ACTIONS(998), - [aux_sym_print_intrinsic_token1] = ACTIONS(998), - [aux_sym_object_creation_expression_token1] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(996), - [aux_sym__list_destructing_token1] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_self] = ACTIONS(998), - [anon_sym_parent] = ACTIONS(998), - [anon_sym_POUND_LBRACK] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [aux_sym_encapsed_string_token1] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [aux_sym_string_token1] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [anon_sym_BQUOTE] = ACTIONS(996), - [sym_boolean] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [aux_sym_yield_expression_token1] = ACTIONS(998), - [aux_sym_include_expression_token1] = ACTIONS(998), - [aux_sym_include_once_expression_token1] = ACTIONS(998), - [aux_sym_require_expression_token1] = ACTIONS(998), - [aux_sym_require_once_expression_token1] = ACTIONS(998), - [sym_comment] = ACTIONS(5), + [408] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1066), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_text_interpolation] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_name] = ACTIONS(1002), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1000), - [aux_sym_function_static_declaration_token1] = ACTIONS(1002), - [aux_sym_global_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_definition_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1002), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [aux_sym_trait_declaration_token1] = ACTIONS(1002), - [aux_sym_interface_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_case_token1] = ACTIONS(1002), - [aux_sym_class_declaration_token1] = ACTIONS(1002), - [aux_sym_final_modifier_token1] = ACTIONS(1002), - [aux_sym_abstract_modifier_token1] = ACTIONS(1002), - [aux_sym_readonly_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token2] = ACTIONS(1002), - [aux_sym_visibility_modifier_token3] = ACTIONS(1002), - [aux_sym__arrow_function_header_token1] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1000), - [aux_sym_cast_type_token1] = ACTIONS(1002), - [aux_sym_echo_statement_token1] = ACTIONS(1002), - [anon_sym_unset] = ACTIONS(1002), - [aux_sym_declare_statement_token1] = ACTIONS(1002), - [aux_sym_declare_statement_token2] = ACTIONS(1002), - [sym_float] = ACTIONS(1002), - [aux_sym_try_statement_token1] = ACTIONS(1002), - [aux_sym_catch_clause_token1] = ACTIONS(1002), - [aux_sym_finally_clause_token1] = ACTIONS(1002), - [aux_sym_goto_statement_token1] = ACTIONS(1002), - [aux_sym_continue_statement_token1] = ACTIONS(1002), - [aux_sym_break_statement_token1] = ACTIONS(1002), - [sym_integer] = ACTIONS(1002), - [aux_sym_return_statement_token1] = ACTIONS(1002), - [aux_sym_throw_expression_token1] = ACTIONS(1002), - [aux_sym_while_statement_token1] = ACTIONS(1002), - [aux_sym_while_statement_token2] = ACTIONS(1002), - [aux_sym_do_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token2] = ACTIONS(1002), - [aux_sym_foreach_statement_token1] = ACTIONS(1002), - [aux_sym_foreach_statement_token2] = ACTIONS(1002), - [aux_sym_if_statement_token1] = ACTIONS(1002), - [aux_sym_if_statement_token2] = ACTIONS(1002), - [aux_sym_else_if_clause_token1] = ACTIONS(1002), - [aux_sym_else_clause_token1] = ACTIONS(1002), - [aux_sym_match_expression_token1] = ACTIONS(1002), - [aux_sym_match_default_expression_token1] = ACTIONS(1002), - [aux_sym_switch_statement_token1] = ACTIONS(1002), - [aux_sym_switch_block_token1] = ACTIONS(1002), - [anon_sym_AT] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [aux_sym_clone_expression_token1] = ACTIONS(1002), - [aux_sym_print_intrinsic_token1] = ACTIONS(1002), - [aux_sym_object_creation_expression_token1] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [aux_sym__list_destructing_token1] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_self] = ACTIONS(1002), - [anon_sym_parent] = ACTIONS(1002), - [anon_sym_POUND_LBRACK] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [aux_sym_encapsed_string_token1] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [aux_sym_string_token1] = ACTIONS(1000), - [anon_sym_LT_LT_LT] = ACTIONS(1000), - [anon_sym_BQUOTE] = ACTIONS(1000), - [sym_boolean] = ACTIONS(1002), - [sym_null] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [aux_sym_yield_expression_token1] = ACTIONS(1002), - [aux_sym_include_expression_token1] = ACTIONS(1002), - [aux_sym_include_once_expression_token1] = ACTIONS(1002), - [aux_sym_require_expression_token1] = ACTIONS(1002), - [aux_sym_require_once_expression_token1] = ACTIONS(1002), - [sym_comment] = ACTIONS(5), + [409] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1071), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_text_interpolation] = STATE(438), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), + [410] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(2577), - [sym__unary_expression] = STATE(936), - [sym_unary_op_expression] = STATE(984), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(984), - [sym__primary_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(981), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(635), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_include_expression] = STATE(936), - [sym_include_once_expression] = STATE(936), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(817), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [aux_sym_clone_expression_token1] = ACTIONS(579), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(603), - [aux_sym_include_once_expression_token1] = ACTIONS(605), - [sym_comment] = ACTIONS(5), - }, - [439] = { - [sym_text_interpolation] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_name] = ACTIONS(1006), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1004), - [aux_sym_function_static_declaration_token1] = ACTIONS(1006), - [aux_sym_global_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_definition_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [aux_sym_trait_declaration_token1] = ACTIONS(1006), - [aux_sym_interface_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_declaration_token1] = ACTIONS(1006), - [aux_sym_enum_case_token1] = ACTIONS(1006), - [aux_sym_class_declaration_token1] = ACTIONS(1006), - [aux_sym_final_modifier_token1] = ACTIONS(1006), - [aux_sym_abstract_modifier_token1] = ACTIONS(1006), - [aux_sym_readonly_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token2] = ACTIONS(1006), - [aux_sym_visibility_modifier_token3] = ACTIONS(1006), - [aux_sym__arrow_function_header_token1] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_cast_type_token1] = ACTIONS(1006), - [aux_sym_echo_statement_token1] = ACTIONS(1006), - [anon_sym_unset] = ACTIONS(1006), - [aux_sym_declare_statement_token1] = ACTIONS(1006), - [aux_sym_declare_statement_token2] = ACTIONS(1006), - [sym_float] = ACTIONS(1006), - [aux_sym_try_statement_token1] = ACTIONS(1006), - [aux_sym_catch_clause_token1] = ACTIONS(1006), - [aux_sym_finally_clause_token1] = ACTIONS(1006), - [aux_sym_goto_statement_token1] = ACTIONS(1006), - [aux_sym_continue_statement_token1] = ACTIONS(1006), - [aux_sym_break_statement_token1] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [aux_sym_return_statement_token1] = ACTIONS(1006), - [aux_sym_throw_expression_token1] = ACTIONS(1006), - [aux_sym_while_statement_token1] = ACTIONS(1006), - [aux_sym_while_statement_token2] = ACTIONS(1006), - [aux_sym_do_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token2] = ACTIONS(1006), - [aux_sym_foreach_statement_token1] = ACTIONS(1006), - [aux_sym_foreach_statement_token2] = ACTIONS(1006), - [aux_sym_if_statement_token1] = ACTIONS(1006), - [aux_sym_if_statement_token2] = ACTIONS(1006), - [aux_sym_else_if_clause_token1] = ACTIONS(1006), - [aux_sym_else_clause_token1] = ACTIONS(1006), - [aux_sym_match_expression_token1] = ACTIONS(1006), - [aux_sym_match_default_expression_token1] = ACTIONS(1006), - [aux_sym_switch_statement_token1] = ACTIONS(1006), - [aux_sym_switch_block_token1] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [aux_sym_clone_expression_token1] = ACTIONS(1006), - [aux_sym_print_intrinsic_token1] = ACTIONS(1006), - [aux_sym_object_creation_expression_token1] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [aux_sym__list_destructing_token1] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_self] = ACTIONS(1006), - [anon_sym_parent] = ACTIONS(1006), - [anon_sym_POUND_LBRACK] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [aux_sym_encapsed_string_token1] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [aux_sym_string_token1] = ACTIONS(1004), - [anon_sym_LT_LT_LT] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), - [sym_boolean] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [aux_sym_yield_expression_token1] = ACTIONS(1006), - [aux_sym_include_expression_token1] = ACTIONS(1006), - [aux_sym_include_once_expression_token1] = ACTIONS(1006), - [aux_sym_require_expression_token1] = ACTIONS(1006), - [aux_sym_require_once_expression_token1] = ACTIONS(1006), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_text_interpolation] = STATE(440), - [sym_qualified_name] = STATE(700), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), + [411] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), [sym_arrow_function] = STATE(917), [sym_throw_expression] = STATE(917), - [sym_match_expression] = STATE(2500), - [sym__unary_expression] = STATE(936), - [sym_unary_op_expression] = STATE(1156), - [sym_exponentiation_expression] = STATE(926), - [sym_clone_expression] = STATE(1156), - [sym__primary_expression] = STATE(1156), - [sym_parenthesized_expression] = STATE(706), - [sym_class_constant_access_expression] = STATE(782), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(929), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), [sym_print_intrinsic] = STATE(917), [sym_anonymous_function_creation_expression] = STATE(917), [sym_object_creation_expression] = STATE(917), [sym_update_expression] = STATE(917), - [sym_cast_expression] = STATE(926), - [sym_cast_variable] = STATE(595), - [sym_member_access_expression] = STATE(595), - [sym_nullsafe_member_access_expression] = STATE(595), - [sym_scoped_property_access_expression] = STATE(595), - [sym_function_call_expression] = STATE(580), - [sym_scoped_call_expression] = STATE(580), - [sym__scope_resolution_qualifier] = STATE(2481), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(580), - [sym_nullsafe_member_call_expression] = STATE(580), - [sym_subscript_expression] = STATE(580), - [sym__dereferencable_expression] = STATE(1738), - [sym_array_creation_expression] = STATE(706), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(706), - [sym_dynamic_variable_name] = STATE(580), - [sym_variable_name] = STATE(580), - [sym_include_expression] = STATE(936), - [sym_include_once_expression] = STATE(936), - [sym__reserved_identifier] = STATE(1562), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(547), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(653), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_match_expression_token1] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [aux_sym_clone_expression_token1] = ACTIONS(665), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(597), - [aux_sym_include_expression_token1] = ACTIONS(675), - [aux_sym_include_once_expression_token1] = ACTIONS(677), - [sym_comment] = ACTIONS(5), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_text_interpolation] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_name] = ACTIONS(1010), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1008), - [aux_sym_function_static_declaration_token1] = ACTIONS(1010), - [aux_sym_global_declaration_token1] = ACTIONS(1010), + [412] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1072), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [413] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [414] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1078), + [sym__expression] = STATE(1073), + [sym__unary_expression] = STATE(1082), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1082), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1082), + [sym_cast_variable] = STATE(634), + [sym_assignment_expression] = STATE(1104), + [sym_reference_assignment_expression] = STATE(1104), + [sym_conditional_expression] = STATE(1104), + [sym_augmented_assignment_expression] = STATE(1104), + [sym_member_access_expression] = STATE(634), + [sym_nullsafe_member_access_expression] = STATE(634), + [sym_scoped_property_access_expression] = STATE(634), + [sym_list_literal] = STATE(2564), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(601), + [sym_scoped_call_expression] = STATE(601), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(601), + [sym_nullsafe_member_call_expression] = STATE(601), + [sym_subscript_expression] = STATE(601), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(601), + [sym_variable_name] = STATE(601), + [sym_yield_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_include_expression] = STATE(1104), + [sym_include_once_expression] = STATE(1104), + [sym_require_expression] = STATE(1104), + [sym_require_once_expression] = STATE(1104), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_yield_expression_token1] = ACTIONS(119), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [aux_sym_require_expression_token1] = ACTIONS(125), + [aux_sym_require_once_expression_token1] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + }, + [415] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(930), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [416] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [417] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1285), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(997), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(922), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(922), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(922), + [sym_cast_variable] = STATE(597), + [sym_assignment_expression] = STATE(923), + [sym_reference_assignment_expression] = STATE(923), + [sym_conditional_expression] = STATE(923), + [sym_augmented_assignment_expression] = STATE(923), + [sym_member_access_expression] = STATE(597), + [sym_nullsafe_member_access_expression] = STATE(597), + [sym_scoped_property_access_expression] = STATE(597), + [sym_list_literal] = STATE(2412), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(593), + [sym_scoped_call_expression] = STATE(593), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(593), + [sym_nullsafe_member_call_expression] = STATE(593), + [sym_subscript_expression] = STATE(593), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(593), + [sym_variable_name] = STATE(593), + [sym_yield_expression] = STATE(923), + [sym_binary_expression] = STATE(923), + [sym_include_expression] = STATE(923), + [sym_include_once_expression] = STATE(923), + [sym_require_expression] = STATE(923), + [sym_require_once_expression] = STATE(923), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_yield_expression_token1] = ACTIONS(597), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [aux_sym_require_expression_token1] = ACTIONS(605), + [aux_sym_require_once_expression_token1] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [sym_catch_clause] = STATE(420), + [sym_finally_clause] = STATE(420), + [aux_sym_try_statement_repeat1] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_name] = ACTIONS(935), + [anon_sym_QMARK_GT] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(935), + [aux_sym_global_declaration_token1] = ACTIONS(935), + [aux_sym_namespace_definition_token1] = ACTIONS(935), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(935), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(935), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(935), + [anon_sym_BSLASH] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [aux_sym_trait_declaration_token1] = ACTIONS(935), + [aux_sym_interface_declaration_token1] = ACTIONS(935), + [aux_sym_enum_declaration_token1] = ACTIONS(935), + [aux_sym_enum_case_token1] = ACTIONS(935), + [aux_sym_class_declaration_token1] = ACTIONS(935), + [aux_sym_final_modifier_token1] = ACTIONS(935), + [aux_sym_abstract_modifier_token1] = ACTIONS(935), + [aux_sym_readonly_modifier_token1] = ACTIONS(935), + [aux_sym_visibility_modifier_token1] = ACTIONS(935), + [aux_sym_visibility_modifier_token2] = ACTIONS(935), + [aux_sym_visibility_modifier_token3] = ACTIONS(935), + [aux_sym__arrow_function_header_token1] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(933), + [aux_sym_cast_type_token1] = ACTIONS(935), + [aux_sym_echo_statement_token1] = ACTIONS(935), + [anon_sym_unset] = ACTIONS(935), + [aux_sym_declare_statement_token1] = ACTIONS(935), + [aux_sym_declare_statement_token2] = ACTIONS(935), + [sym_float] = ACTIONS(935), + [aux_sym_try_statement_token1] = ACTIONS(935), + [aux_sym_catch_clause_token1] = ACTIONS(937), + [aux_sym_finally_clause_token1] = ACTIONS(939), + [aux_sym_goto_statement_token1] = ACTIONS(935), + [aux_sym_continue_statement_token1] = ACTIONS(935), + [aux_sym_break_statement_token1] = ACTIONS(935), + [sym_integer] = ACTIONS(935), + [aux_sym_return_statement_token1] = ACTIONS(935), + [aux_sym_throw_expression_token1] = ACTIONS(935), + [aux_sym_while_statement_token1] = ACTIONS(935), + [aux_sym_while_statement_token2] = ACTIONS(935), + [aux_sym_do_statement_token1] = ACTIONS(935), + [aux_sym_for_statement_token1] = ACTIONS(935), + [aux_sym_for_statement_token2] = ACTIONS(935), + [aux_sym_foreach_statement_token1] = ACTIONS(935), + [aux_sym_foreach_statement_token2] = ACTIONS(935), + [aux_sym_if_statement_token1] = ACTIONS(935), + [aux_sym_if_statement_token2] = ACTIONS(935), + [aux_sym_else_if_clause_token1] = ACTIONS(935), + [aux_sym_else_clause_token1] = ACTIONS(935), + [aux_sym_match_expression_token1] = ACTIONS(935), + [aux_sym_match_default_expression_token1] = ACTIONS(935), + [aux_sym_switch_statement_token1] = ACTIONS(935), + [aux_sym_switch_block_token1] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [aux_sym_clone_expression_token1] = ACTIONS(935), + [aux_sym_print_intrinsic_token1] = ACTIONS(935), + [aux_sym_object_creation_expression_token1] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [aux_sym__list_destructing_token1] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_self] = ACTIONS(935), + [anon_sym_parent] = ACTIONS(935), + [anon_sym_POUND_LBRACK] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(933), + [aux_sym_encapsed_string_token1] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym_string_token1] = ACTIONS(933), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_boolean] = ACTIONS(935), + [sym_null] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(933), + [aux_sym_yield_expression_token1] = ACTIONS(935), + [aux_sym_include_expression_token1] = ACTIONS(935), + [aux_sym_include_once_expression_token1] = ACTIONS(935), + [aux_sym_require_expression_token1] = ACTIONS(935), + [aux_sym_require_once_expression_token1] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + }, + [420] = { + [sym_catch_clause] = STATE(420), + [sym_finally_clause] = STATE(420), + [aux_sym_try_statement_repeat1] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_name] = ACTIONS(943), + [anon_sym_QMARK_GT] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(941), + [aux_sym_function_static_declaration_token1] = ACTIONS(943), + [aux_sym_global_declaration_token1] = ACTIONS(943), + [aux_sym_namespace_definition_token1] = ACTIONS(943), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(943), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(943), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(943), + [anon_sym_BSLASH] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [aux_sym_trait_declaration_token1] = ACTIONS(943), + [aux_sym_interface_declaration_token1] = ACTIONS(943), + [aux_sym_enum_declaration_token1] = ACTIONS(943), + [aux_sym_enum_case_token1] = ACTIONS(943), + [aux_sym_class_declaration_token1] = ACTIONS(943), + [aux_sym_final_modifier_token1] = ACTIONS(943), + [aux_sym_abstract_modifier_token1] = ACTIONS(943), + [aux_sym_readonly_modifier_token1] = ACTIONS(943), + [aux_sym_visibility_modifier_token1] = ACTIONS(943), + [aux_sym_visibility_modifier_token2] = ACTIONS(943), + [aux_sym_visibility_modifier_token3] = ACTIONS(943), + [aux_sym__arrow_function_header_token1] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(941), + [aux_sym_cast_type_token1] = ACTIONS(943), + [aux_sym_echo_statement_token1] = ACTIONS(943), + [anon_sym_unset] = ACTIONS(943), + [aux_sym_declare_statement_token1] = ACTIONS(943), + [aux_sym_declare_statement_token2] = ACTIONS(943), + [sym_float] = ACTIONS(943), + [aux_sym_try_statement_token1] = ACTIONS(943), + [aux_sym_catch_clause_token1] = ACTIONS(945), + [aux_sym_finally_clause_token1] = ACTIONS(948), + [aux_sym_goto_statement_token1] = ACTIONS(943), + [aux_sym_continue_statement_token1] = ACTIONS(943), + [aux_sym_break_statement_token1] = ACTIONS(943), + [sym_integer] = ACTIONS(943), + [aux_sym_return_statement_token1] = ACTIONS(943), + [aux_sym_throw_expression_token1] = ACTIONS(943), + [aux_sym_while_statement_token1] = ACTIONS(943), + [aux_sym_while_statement_token2] = ACTIONS(943), + [aux_sym_do_statement_token1] = ACTIONS(943), + [aux_sym_for_statement_token1] = ACTIONS(943), + [aux_sym_for_statement_token2] = ACTIONS(943), + [aux_sym_foreach_statement_token1] = ACTIONS(943), + [aux_sym_foreach_statement_token2] = ACTIONS(943), + [aux_sym_if_statement_token1] = ACTIONS(943), + [aux_sym_if_statement_token2] = ACTIONS(943), + [aux_sym_else_if_clause_token1] = ACTIONS(943), + [aux_sym_else_clause_token1] = ACTIONS(943), + [aux_sym_match_expression_token1] = ACTIONS(943), + [aux_sym_match_default_expression_token1] = ACTIONS(943), + [aux_sym_switch_statement_token1] = ACTIONS(943), + [aux_sym_switch_block_token1] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [aux_sym_clone_expression_token1] = ACTIONS(943), + [aux_sym_print_intrinsic_token1] = ACTIONS(943), + [aux_sym_object_creation_expression_token1] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [aux_sym__list_destructing_token1] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_parent] = ACTIONS(943), + [anon_sym_POUND_LBRACK] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [aux_sym_encapsed_string_token1] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [aux_sym_string_token1] = ACTIONS(941), + [anon_sym_LT_LT_LT] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_boolean] = ACTIONS(943), + [sym_null] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [aux_sym_yield_expression_token1] = ACTIONS(943), + [aux_sym_include_expression_token1] = ACTIONS(943), + [aux_sym_include_once_expression_token1] = ACTIONS(943), + [aux_sym_require_expression_token1] = ACTIONS(943), + [aux_sym_require_once_expression_token1] = ACTIONS(943), + [sym_comment] = ACTIONS(3), + }, + [421] = { + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(557), + [aux_sym_if_statement_repeat1] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_name] = ACTIONS(953), + [anon_sym_QMARK_GT] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [aux_sym_function_static_declaration_token1] = ACTIONS(953), + [aux_sym_global_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_definition_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(953), + [anon_sym_BSLASH] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [aux_sym_trait_declaration_token1] = ACTIONS(953), + [aux_sym_interface_declaration_token1] = ACTIONS(953), + [aux_sym_enum_declaration_token1] = ACTIONS(953), + [aux_sym_enum_case_token1] = ACTIONS(953), + [aux_sym_class_declaration_token1] = ACTIONS(953), + [aux_sym_final_modifier_token1] = ACTIONS(953), + [aux_sym_abstract_modifier_token1] = ACTIONS(953), + [aux_sym_readonly_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token2] = ACTIONS(953), + [aux_sym_visibility_modifier_token3] = ACTIONS(953), + [aux_sym__arrow_function_header_token1] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(953), + [aux_sym_echo_statement_token1] = ACTIONS(953), + [anon_sym_unset] = ACTIONS(953), + [aux_sym_declare_statement_token1] = ACTIONS(953), + [aux_sym_declare_statement_token2] = ACTIONS(953), + [sym_float] = ACTIONS(953), + [aux_sym_try_statement_token1] = ACTIONS(953), + [aux_sym_goto_statement_token1] = ACTIONS(953), + [aux_sym_continue_statement_token1] = ACTIONS(953), + [aux_sym_break_statement_token1] = ACTIONS(953), + [sym_integer] = ACTIONS(953), + [aux_sym_return_statement_token1] = ACTIONS(953), + [aux_sym_throw_expression_token1] = ACTIONS(953), + [aux_sym_while_statement_token1] = ACTIONS(953), + [aux_sym_while_statement_token2] = ACTIONS(953), + [aux_sym_do_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token2] = ACTIONS(953), + [aux_sym_foreach_statement_token1] = ACTIONS(953), + [aux_sym_foreach_statement_token2] = ACTIONS(953), + [aux_sym_if_statement_token1] = ACTIONS(953), + [aux_sym_if_statement_token2] = ACTIONS(953), + [aux_sym_else_if_clause_token1] = ACTIONS(955), + [aux_sym_else_clause_token1] = ACTIONS(958), + [aux_sym_match_expression_token1] = ACTIONS(953), + [aux_sym_match_default_expression_token1] = ACTIONS(953), + [aux_sym_switch_statement_token1] = ACTIONS(953), + [aux_sym_switch_block_token1] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [aux_sym_clone_expression_token1] = ACTIONS(953), + [aux_sym_print_intrinsic_token1] = ACTIONS(953), + [aux_sym_object_creation_expression_token1] = ACTIONS(953), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [aux_sym__list_destructing_token1] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_self] = ACTIONS(953), + [anon_sym_parent] = ACTIONS(953), + [anon_sym_POUND_LBRACK] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [aux_sym_encapsed_string_token1] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [aux_sym_string_token1] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [sym_boolean] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [aux_sym_yield_expression_token1] = ACTIONS(953), + [aux_sym_include_expression_token1] = ACTIONS(953), + [aux_sym_include_once_expression_token1] = ACTIONS(953), + [aux_sym_require_expression_token1] = ACTIONS(953), + [aux_sym_require_once_expression_token1] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + }, + [422] = { + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(508), + [aux_sym_if_statement_repeat1] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(961), + [sym_name] = ACTIONS(963), + [anon_sym_QMARK_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(963), + [aux_sym_global_declaration_token1] = ACTIONS(963), + [aux_sym_namespace_definition_token1] = ACTIONS(963), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(963), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(963), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(963), + [anon_sym_BSLASH] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [aux_sym_trait_declaration_token1] = ACTIONS(963), + [aux_sym_interface_declaration_token1] = ACTIONS(963), + [aux_sym_enum_declaration_token1] = ACTIONS(963), + [aux_sym_enum_case_token1] = ACTIONS(963), + [aux_sym_class_declaration_token1] = ACTIONS(963), + [aux_sym_final_modifier_token1] = ACTIONS(963), + [aux_sym_abstract_modifier_token1] = ACTIONS(963), + [aux_sym_readonly_modifier_token1] = ACTIONS(963), + [aux_sym_visibility_modifier_token1] = ACTIONS(963), + [aux_sym_visibility_modifier_token2] = ACTIONS(963), + [aux_sym_visibility_modifier_token3] = ACTIONS(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(961), + [aux_sym_cast_type_token1] = ACTIONS(963), + [aux_sym_echo_statement_token1] = ACTIONS(963), + [anon_sym_unset] = ACTIONS(963), + [aux_sym_declare_statement_token1] = ACTIONS(963), + [aux_sym_declare_statement_token2] = ACTIONS(963), + [sym_float] = ACTIONS(963), + [aux_sym_try_statement_token1] = ACTIONS(963), + [aux_sym_goto_statement_token1] = ACTIONS(963), + [aux_sym_continue_statement_token1] = ACTIONS(963), + [aux_sym_break_statement_token1] = ACTIONS(963), + [sym_integer] = ACTIONS(963), + [aux_sym_return_statement_token1] = ACTIONS(963), + [aux_sym_throw_expression_token1] = ACTIONS(963), + [aux_sym_while_statement_token1] = ACTIONS(963), + [aux_sym_while_statement_token2] = ACTIONS(963), + [aux_sym_do_statement_token1] = ACTIONS(963), + [aux_sym_for_statement_token1] = ACTIONS(963), + [aux_sym_for_statement_token2] = ACTIONS(963), + [aux_sym_foreach_statement_token1] = ACTIONS(963), + [aux_sym_foreach_statement_token2] = ACTIONS(963), + [aux_sym_if_statement_token1] = ACTIONS(963), + [aux_sym_if_statement_token2] = ACTIONS(963), + [aux_sym_else_if_clause_token1] = ACTIONS(965), + [aux_sym_else_clause_token1] = ACTIONS(968), + [aux_sym_match_expression_token1] = ACTIONS(963), + [aux_sym_match_default_expression_token1] = ACTIONS(963), + [aux_sym_switch_statement_token1] = ACTIONS(963), + [aux_sym_switch_block_token1] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [aux_sym_clone_expression_token1] = ACTIONS(963), + [aux_sym_print_intrinsic_token1] = ACTIONS(963), + [aux_sym_object_creation_expression_token1] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [aux_sym__list_destructing_token1] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_self] = ACTIONS(963), + [anon_sym_parent] = ACTIONS(963), + [anon_sym_POUND_LBRACK] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(961), + [aux_sym_encapsed_string_token1] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [aux_sym_string_token1] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_boolean] = ACTIONS(963), + [sym_null] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [aux_sym_yield_expression_token1] = ACTIONS(963), + [aux_sym_include_expression_token1] = ACTIONS(963), + [aux_sym_include_once_expression_token1] = ACTIONS(963), + [aux_sym_require_expression_token1] = ACTIONS(963), + [aux_sym_require_once_expression_token1] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + }, + [423] = { + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(508), + [aux_sym_if_statement_repeat1] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(961), + [sym_name] = ACTIONS(963), + [anon_sym_QMARK_GT] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(963), + [aux_sym_global_declaration_token1] = ACTIONS(963), + [aux_sym_namespace_definition_token1] = ACTIONS(963), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(963), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(963), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(963), + [anon_sym_BSLASH] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [aux_sym_trait_declaration_token1] = ACTIONS(963), + [aux_sym_interface_declaration_token1] = ACTIONS(963), + [aux_sym_enum_declaration_token1] = ACTIONS(963), + [aux_sym_enum_case_token1] = ACTIONS(963), + [aux_sym_class_declaration_token1] = ACTIONS(963), + [aux_sym_final_modifier_token1] = ACTIONS(963), + [aux_sym_abstract_modifier_token1] = ACTIONS(963), + [aux_sym_readonly_modifier_token1] = ACTIONS(963), + [aux_sym_visibility_modifier_token1] = ACTIONS(963), + [aux_sym_visibility_modifier_token2] = ACTIONS(963), + [aux_sym_visibility_modifier_token3] = ACTIONS(963), + [aux_sym__arrow_function_header_token1] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(961), + [aux_sym_cast_type_token1] = ACTIONS(963), + [aux_sym_echo_statement_token1] = ACTIONS(963), + [anon_sym_unset] = ACTIONS(963), + [aux_sym_declare_statement_token1] = ACTIONS(963), + [aux_sym_declare_statement_token2] = ACTIONS(963), + [sym_float] = ACTIONS(963), + [aux_sym_try_statement_token1] = ACTIONS(963), + [aux_sym_goto_statement_token1] = ACTIONS(963), + [aux_sym_continue_statement_token1] = ACTIONS(963), + [aux_sym_break_statement_token1] = ACTIONS(963), + [sym_integer] = ACTIONS(963), + [aux_sym_return_statement_token1] = ACTIONS(963), + [aux_sym_throw_expression_token1] = ACTIONS(963), + [aux_sym_while_statement_token1] = ACTIONS(963), + [aux_sym_while_statement_token2] = ACTIONS(963), + [aux_sym_do_statement_token1] = ACTIONS(963), + [aux_sym_for_statement_token1] = ACTIONS(963), + [aux_sym_for_statement_token2] = ACTIONS(963), + [aux_sym_foreach_statement_token1] = ACTIONS(963), + [aux_sym_foreach_statement_token2] = ACTIONS(963), + [aux_sym_if_statement_token1] = ACTIONS(963), + [aux_sym_if_statement_token2] = ACTIONS(963), + [aux_sym_else_if_clause_token1] = ACTIONS(971), + [aux_sym_else_clause_token1] = ACTIONS(973), + [aux_sym_match_expression_token1] = ACTIONS(963), + [aux_sym_match_default_expression_token1] = ACTIONS(963), + [aux_sym_switch_statement_token1] = ACTIONS(963), + [aux_sym_switch_block_token1] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [aux_sym_clone_expression_token1] = ACTIONS(963), + [aux_sym_print_intrinsic_token1] = ACTIONS(963), + [aux_sym_object_creation_expression_token1] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [aux_sym__list_destructing_token1] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_self] = ACTIONS(963), + [anon_sym_parent] = ACTIONS(963), + [anon_sym_POUND_LBRACK] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(961), + [aux_sym_encapsed_string_token1] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [aux_sym_string_token1] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_boolean] = ACTIONS(963), + [sym_null] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [aux_sym_yield_expression_token1] = ACTIONS(963), + [aux_sym_include_expression_token1] = ACTIONS(963), + [aux_sym_include_once_expression_token1] = ACTIONS(963), + [aux_sym_require_expression_token1] = ACTIONS(963), + [aux_sym_require_once_expression_token1] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + }, + [424] = { + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(557), + [aux_sym_if_statement_repeat1] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(951), + [sym_name] = ACTIONS(953), + [anon_sym_QMARK_GT] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(951), + [aux_sym_function_static_declaration_token1] = ACTIONS(953), + [aux_sym_global_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_definition_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(953), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(953), + [anon_sym_BSLASH] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [aux_sym_trait_declaration_token1] = ACTIONS(953), + [aux_sym_interface_declaration_token1] = ACTIONS(953), + [aux_sym_enum_declaration_token1] = ACTIONS(953), + [aux_sym_enum_case_token1] = ACTIONS(953), + [aux_sym_class_declaration_token1] = ACTIONS(953), + [aux_sym_final_modifier_token1] = ACTIONS(953), + [aux_sym_abstract_modifier_token1] = ACTIONS(953), + [aux_sym_readonly_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token1] = ACTIONS(953), + [aux_sym_visibility_modifier_token2] = ACTIONS(953), + [aux_sym_visibility_modifier_token3] = ACTIONS(953), + [aux_sym__arrow_function_header_token1] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(953), + [aux_sym_echo_statement_token1] = ACTIONS(953), + [anon_sym_unset] = ACTIONS(953), + [aux_sym_declare_statement_token1] = ACTIONS(953), + [aux_sym_declare_statement_token2] = ACTIONS(953), + [sym_float] = ACTIONS(953), + [aux_sym_try_statement_token1] = ACTIONS(953), + [aux_sym_goto_statement_token1] = ACTIONS(953), + [aux_sym_continue_statement_token1] = ACTIONS(953), + [aux_sym_break_statement_token1] = ACTIONS(953), + [sym_integer] = ACTIONS(953), + [aux_sym_return_statement_token1] = ACTIONS(953), + [aux_sym_throw_expression_token1] = ACTIONS(953), + [aux_sym_while_statement_token1] = ACTIONS(953), + [aux_sym_while_statement_token2] = ACTIONS(953), + [aux_sym_do_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token1] = ACTIONS(953), + [aux_sym_for_statement_token2] = ACTIONS(953), + [aux_sym_foreach_statement_token1] = ACTIONS(953), + [aux_sym_foreach_statement_token2] = ACTIONS(953), + [aux_sym_if_statement_token1] = ACTIONS(953), + [aux_sym_if_statement_token2] = ACTIONS(953), + [aux_sym_else_if_clause_token1] = ACTIONS(971), + [aux_sym_else_clause_token1] = ACTIONS(973), + [aux_sym_match_expression_token1] = ACTIONS(953), + [aux_sym_match_default_expression_token1] = ACTIONS(953), + [aux_sym_switch_statement_token1] = ACTIONS(953), + [aux_sym_switch_block_token1] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [aux_sym_clone_expression_token1] = ACTIONS(953), + [aux_sym_print_intrinsic_token1] = ACTIONS(953), + [aux_sym_object_creation_expression_token1] = ACTIONS(953), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [aux_sym__list_destructing_token1] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_self] = ACTIONS(953), + [anon_sym_parent] = ACTIONS(953), + [anon_sym_POUND_LBRACK] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [aux_sym_encapsed_string_token1] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [aux_sym_string_token1] = ACTIONS(951), + [anon_sym_LT_LT_LT] = ACTIONS(951), + [anon_sym_BQUOTE] = ACTIONS(951), + [sym_boolean] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [aux_sym_yield_expression_token1] = ACTIONS(953), + [aux_sym_include_expression_token1] = ACTIONS(953), + [aux_sym_include_once_expression_token1] = ACTIONS(953), + [aux_sym_require_expression_token1] = ACTIONS(953), + [aux_sym_require_once_expression_token1] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + }, + [425] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1155), + [sym_unary_op_expression] = STATE(1155), + [sym_exponentiation_expression] = STATE(927), + [sym_clone_expression] = STATE(1155), + [sym__primary_expression] = STATE(1155), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(927), + [sym_cast_variable] = STATE(640), + [sym_assignment_expression] = STATE(927), + [sym_augmented_assignment_expression] = STATE(927), + [sym_member_access_expression] = STATE(640), + [sym_nullsafe_member_access_expression] = STATE(640), + [sym_scoped_property_access_expression] = STATE(640), + [sym_list_literal] = STATE(2465), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(621), + [sym_scoped_call_expression] = STATE(621), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(621), + [sym_nullsafe_member_call_expression] = STATE(621), + [sym_subscript_expression] = STATE(621), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(621), + [sym_variable_name] = STATE(621), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(1113), + [sym_unary_op_expression] = STATE(1113), + [sym_exponentiation_expression] = STATE(1111), + [sym_clone_expression] = STATE(1113), + [sym__primary_expression] = STATE(1113), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1111), + [sym_cast_variable] = STATE(633), + [sym_assignment_expression] = STATE(1111), + [sym_augmented_assignment_expression] = STATE(1111), + [sym_member_access_expression] = STATE(633), + [sym_nullsafe_member_access_expression] = STATE(633), + [sym_scoped_property_access_expression] = STATE(633), + [sym_list_literal] = STATE(2425), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(602), + [sym_scoped_call_expression] = STATE(602), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(602), + [sym_nullsafe_member_call_expression] = STATE(602), + [sym_subscript_expression] = STATE(602), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(602), + [sym_variable_name] = STATE(602), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(83), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + }, + [427] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(991), + [sym_unary_op_expression] = STATE(991), + [sym_exponentiation_expression] = STATE(927), + [sym_clone_expression] = STATE(991), + [sym__primary_expression] = STATE(991), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(927), + [sym_cast_variable] = STATE(605), + [sym_assignment_expression] = STATE(927), + [sym_augmented_assignment_expression] = STATE(927), + [sym_member_access_expression] = STATE(605), + [sym_nullsafe_member_access_expression] = STATE(605), + [sym_scoped_property_access_expression] = STATE(605), + [sym_list_literal] = STATE(2530), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(592), + [sym_scoped_call_expression] = STATE(592), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(592), + [sym_nullsafe_member_call_expression] = STATE(592), + [sym_subscript_expression] = STATE(592), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(592), + [sym_variable_name] = STATE(592), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + }, + [428] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(1014), + [sym_unary_op_expression] = STATE(1014), + [sym_exponentiation_expression] = STATE(927), + [sym_clone_expression] = STATE(1014), + [sym__primary_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(927), + [sym_cast_variable] = STATE(622), + [sym_assignment_expression] = STATE(927), + [sym_augmented_assignment_expression] = STATE(927), + [sym_member_access_expression] = STATE(622), + [sym_nullsafe_member_access_expression] = STATE(622), + [sym_scoped_property_access_expression] = STATE(622), + [sym_list_literal] = STATE(2385), + [sym__list_destructing] = STATE(2156), + [sym__array_destructing] = STATE(2156), + [sym_function_call_expression] = STATE(595), + [sym_scoped_call_expression] = STATE(595), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(595), + [sym_nullsafe_member_call_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(595), + [sym_variable_name] = STATE(595), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [aux_sym__list_destructing_token1] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [sym_comment] = ACTIONS(3), + }, + [429] = { + [ts_builtin_sym_end] = ACTIONS(975), + [sym_name] = ACTIONS(977), + [anon_sym_QMARK_GT] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [aux_sym_function_static_declaration_token1] = ACTIONS(977), + [aux_sym_global_declaration_token1] = ACTIONS(977), + [aux_sym_namespace_definition_token1] = ACTIONS(977), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(977), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(977), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(977), + [anon_sym_BSLASH] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [aux_sym_trait_declaration_token1] = ACTIONS(977), + [aux_sym_interface_declaration_token1] = ACTIONS(977), + [aux_sym_enum_declaration_token1] = ACTIONS(977), + [aux_sym_enum_case_token1] = ACTIONS(977), + [aux_sym_class_declaration_token1] = ACTIONS(977), + [aux_sym_final_modifier_token1] = ACTIONS(977), + [aux_sym_abstract_modifier_token1] = ACTIONS(977), + [aux_sym_readonly_modifier_token1] = ACTIONS(977), + [aux_sym_visibility_modifier_token1] = ACTIONS(977), + [aux_sym_visibility_modifier_token2] = ACTIONS(977), + [aux_sym_visibility_modifier_token3] = ACTIONS(977), + [aux_sym__arrow_function_header_token1] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(975), + [aux_sym_cast_type_token1] = ACTIONS(977), + [aux_sym_echo_statement_token1] = ACTIONS(977), + [anon_sym_unset] = ACTIONS(977), + [aux_sym_declare_statement_token1] = ACTIONS(977), + [aux_sym_declare_statement_token2] = ACTIONS(977), + [sym_float] = ACTIONS(977), + [aux_sym_try_statement_token1] = ACTIONS(977), + [aux_sym_catch_clause_token1] = ACTIONS(977), + [aux_sym_finally_clause_token1] = ACTIONS(977), + [aux_sym_goto_statement_token1] = ACTIONS(977), + [aux_sym_continue_statement_token1] = ACTIONS(977), + [aux_sym_break_statement_token1] = ACTIONS(977), + [sym_integer] = ACTIONS(977), + [aux_sym_return_statement_token1] = ACTIONS(977), + [aux_sym_throw_expression_token1] = ACTIONS(977), + [aux_sym_while_statement_token1] = ACTIONS(977), + [aux_sym_while_statement_token2] = ACTIONS(977), + [aux_sym_do_statement_token1] = ACTIONS(977), + [aux_sym_for_statement_token1] = ACTIONS(977), + [aux_sym_for_statement_token2] = ACTIONS(977), + [aux_sym_foreach_statement_token1] = ACTIONS(977), + [aux_sym_foreach_statement_token2] = ACTIONS(977), + [aux_sym_if_statement_token1] = ACTIONS(977), + [aux_sym_if_statement_token2] = ACTIONS(977), + [aux_sym_else_if_clause_token1] = ACTIONS(977), + [aux_sym_else_clause_token1] = ACTIONS(977), + [aux_sym_match_expression_token1] = ACTIONS(977), + [aux_sym_match_default_expression_token1] = ACTIONS(977), + [aux_sym_switch_statement_token1] = ACTIONS(977), + [aux_sym_switch_block_token1] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [aux_sym_clone_expression_token1] = ACTIONS(977), + [aux_sym_print_intrinsic_token1] = ACTIONS(977), + [aux_sym_object_creation_expression_token1] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(975), + [aux_sym__list_destructing_token1] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_self] = ACTIONS(977), + [anon_sym_parent] = ACTIONS(977), + [anon_sym_POUND_LBRACK] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(975), + [aux_sym_encapsed_string_token1] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [aux_sym_string_token1] = ACTIONS(975), + [anon_sym_LT_LT_LT] = ACTIONS(975), + [anon_sym_BQUOTE] = ACTIONS(975), + [sym_boolean] = ACTIONS(977), + [sym_null] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [aux_sym_yield_expression_token1] = ACTIONS(977), + [aux_sym_include_expression_token1] = ACTIONS(977), + [aux_sym_include_once_expression_token1] = ACTIONS(977), + [aux_sym_require_expression_token1] = ACTIONS(977), + [aux_sym_require_once_expression_token1] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(979), + [sym_name] = ACTIONS(981), + [anon_sym_QMARK_GT] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(979), + [aux_sym_function_static_declaration_token1] = ACTIONS(981), + [aux_sym_global_declaration_token1] = ACTIONS(981), + [aux_sym_namespace_definition_token1] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(981), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(981), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [aux_sym_trait_declaration_token1] = ACTIONS(981), + [aux_sym_interface_declaration_token1] = ACTIONS(981), + [aux_sym_enum_declaration_token1] = ACTIONS(981), + [aux_sym_enum_case_token1] = ACTIONS(981), + [aux_sym_class_declaration_token1] = ACTIONS(981), + [aux_sym_final_modifier_token1] = ACTIONS(981), + [aux_sym_abstract_modifier_token1] = ACTIONS(981), + [aux_sym_readonly_modifier_token1] = ACTIONS(981), + [aux_sym_visibility_modifier_token1] = ACTIONS(981), + [aux_sym_visibility_modifier_token2] = ACTIONS(981), + [aux_sym_visibility_modifier_token3] = ACTIONS(981), + [aux_sym__arrow_function_header_token1] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [aux_sym_cast_type_token1] = ACTIONS(981), + [aux_sym_echo_statement_token1] = ACTIONS(981), + [anon_sym_unset] = ACTIONS(981), + [aux_sym_declare_statement_token1] = ACTIONS(981), + [aux_sym_declare_statement_token2] = ACTIONS(981), + [sym_float] = ACTIONS(981), + [aux_sym_try_statement_token1] = ACTIONS(981), + [aux_sym_catch_clause_token1] = ACTIONS(981), + [aux_sym_finally_clause_token1] = ACTIONS(981), + [aux_sym_goto_statement_token1] = ACTIONS(981), + [aux_sym_continue_statement_token1] = ACTIONS(981), + [aux_sym_break_statement_token1] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [aux_sym_return_statement_token1] = ACTIONS(981), + [aux_sym_throw_expression_token1] = ACTIONS(981), + [aux_sym_while_statement_token1] = ACTIONS(981), + [aux_sym_while_statement_token2] = ACTIONS(981), + [aux_sym_do_statement_token1] = ACTIONS(981), + [aux_sym_for_statement_token1] = ACTIONS(981), + [aux_sym_for_statement_token2] = ACTIONS(981), + [aux_sym_foreach_statement_token1] = ACTIONS(981), + [aux_sym_foreach_statement_token2] = ACTIONS(981), + [aux_sym_if_statement_token1] = ACTIONS(981), + [aux_sym_if_statement_token2] = ACTIONS(981), + [aux_sym_else_if_clause_token1] = ACTIONS(981), + [aux_sym_else_clause_token1] = ACTIONS(981), + [aux_sym_match_expression_token1] = ACTIONS(981), + [aux_sym_match_default_expression_token1] = ACTIONS(981), + [aux_sym_switch_statement_token1] = ACTIONS(981), + [aux_sym_switch_block_token1] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [aux_sym_clone_expression_token1] = ACTIONS(981), + [aux_sym_print_intrinsic_token1] = ACTIONS(981), + [aux_sym_object_creation_expression_token1] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(979), + [aux_sym__list_destructing_token1] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_self] = ACTIONS(981), + [anon_sym_parent] = ACTIONS(981), + [anon_sym_POUND_LBRACK] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [aux_sym_encapsed_string_token1] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [aux_sym_string_token1] = ACTIONS(979), + [anon_sym_LT_LT_LT] = ACTIONS(979), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_boolean] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [aux_sym_yield_expression_token1] = ACTIONS(981), + [aux_sym_include_expression_token1] = ACTIONS(981), + [aux_sym_include_once_expression_token1] = ACTIONS(981), + [aux_sym_require_expression_token1] = ACTIONS(981), + [aux_sym_require_once_expression_token1] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_name] = ACTIONS(985), + [anon_sym_QMARK_GT] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(983), + [aux_sym_function_static_declaration_token1] = ACTIONS(985), + [aux_sym_global_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_definition_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(985), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(985), + [anon_sym_BSLASH] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [aux_sym_trait_declaration_token1] = ACTIONS(985), + [aux_sym_interface_declaration_token1] = ACTIONS(985), + [aux_sym_enum_declaration_token1] = ACTIONS(985), + [aux_sym_enum_case_token1] = ACTIONS(985), + [aux_sym_class_declaration_token1] = ACTIONS(985), + [aux_sym_final_modifier_token1] = ACTIONS(985), + [aux_sym_abstract_modifier_token1] = ACTIONS(985), + [aux_sym_readonly_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token1] = ACTIONS(985), + [aux_sym_visibility_modifier_token2] = ACTIONS(985), + [aux_sym_visibility_modifier_token3] = ACTIONS(985), + [aux_sym__arrow_function_header_token1] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [aux_sym_cast_type_token1] = ACTIONS(985), + [aux_sym_echo_statement_token1] = ACTIONS(985), + [anon_sym_unset] = ACTIONS(985), + [aux_sym_declare_statement_token1] = ACTIONS(985), + [aux_sym_declare_statement_token2] = ACTIONS(985), + [sym_float] = ACTIONS(985), + [aux_sym_try_statement_token1] = ACTIONS(985), + [aux_sym_catch_clause_token1] = ACTIONS(985), + [aux_sym_finally_clause_token1] = ACTIONS(985), + [aux_sym_goto_statement_token1] = ACTIONS(985), + [aux_sym_continue_statement_token1] = ACTIONS(985), + [aux_sym_break_statement_token1] = ACTIONS(985), + [sym_integer] = ACTIONS(985), + [aux_sym_return_statement_token1] = ACTIONS(985), + [aux_sym_throw_expression_token1] = ACTIONS(985), + [aux_sym_while_statement_token1] = ACTIONS(985), + [aux_sym_while_statement_token2] = ACTIONS(985), + [aux_sym_do_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token1] = ACTIONS(985), + [aux_sym_for_statement_token2] = ACTIONS(985), + [aux_sym_foreach_statement_token1] = ACTIONS(985), + [aux_sym_foreach_statement_token2] = ACTIONS(985), + [aux_sym_if_statement_token1] = ACTIONS(985), + [aux_sym_if_statement_token2] = ACTIONS(985), + [aux_sym_else_if_clause_token1] = ACTIONS(985), + [aux_sym_else_clause_token1] = ACTIONS(985), + [aux_sym_match_expression_token1] = ACTIONS(985), + [aux_sym_match_default_expression_token1] = ACTIONS(985), + [aux_sym_switch_statement_token1] = ACTIONS(985), + [aux_sym_switch_block_token1] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(983), + [aux_sym_clone_expression_token1] = ACTIONS(985), + [aux_sym_print_intrinsic_token1] = ACTIONS(985), + [aux_sym_object_creation_expression_token1] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym__list_destructing_token1] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_self] = ACTIONS(985), + [anon_sym_parent] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [aux_sym_encapsed_string_token1] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [aux_sym_string_token1] = ACTIONS(983), + [anon_sym_LT_LT_LT] = ACTIONS(983), + [anon_sym_BQUOTE] = ACTIONS(983), + [sym_boolean] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(983), + [aux_sym_yield_expression_token1] = ACTIONS(985), + [aux_sym_include_expression_token1] = ACTIONS(985), + [aux_sym_include_once_expression_token1] = ACTIONS(985), + [aux_sym_require_expression_token1] = ACTIONS(985), + [aux_sym_require_once_expression_token1] = ACTIONS(985), + [sym_comment] = ACTIONS(3), + }, + [432] = { + [sym_else_if_clause] = STATE(510), + [aux_sym_if_statement_repeat1] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(987), + [sym_name] = ACTIONS(989), + [anon_sym_QMARK_GT] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(987), + [aux_sym_function_static_declaration_token1] = ACTIONS(989), + [aux_sym_global_declaration_token1] = ACTIONS(989), + [aux_sym_namespace_definition_token1] = ACTIONS(989), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(989), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(989), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(989), + [anon_sym_BSLASH] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [aux_sym_trait_declaration_token1] = ACTIONS(989), + [aux_sym_interface_declaration_token1] = ACTIONS(989), + [aux_sym_enum_declaration_token1] = ACTIONS(989), + [aux_sym_enum_case_token1] = ACTIONS(989), + [aux_sym_class_declaration_token1] = ACTIONS(989), + [aux_sym_final_modifier_token1] = ACTIONS(989), + [aux_sym_abstract_modifier_token1] = ACTIONS(989), + [aux_sym_readonly_modifier_token1] = ACTIONS(989), + [aux_sym_visibility_modifier_token1] = ACTIONS(989), + [aux_sym_visibility_modifier_token2] = ACTIONS(989), + [aux_sym_visibility_modifier_token3] = ACTIONS(989), + [aux_sym__arrow_function_header_token1] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(987), + [aux_sym_cast_type_token1] = ACTIONS(989), + [aux_sym_echo_statement_token1] = ACTIONS(989), + [anon_sym_unset] = ACTIONS(989), + [aux_sym_declare_statement_token1] = ACTIONS(989), + [aux_sym_declare_statement_token2] = ACTIONS(989), + [sym_float] = ACTIONS(989), + [aux_sym_try_statement_token1] = ACTIONS(989), + [aux_sym_goto_statement_token1] = ACTIONS(989), + [aux_sym_continue_statement_token1] = ACTIONS(989), + [aux_sym_break_statement_token1] = ACTIONS(989), + [sym_integer] = ACTIONS(989), + [aux_sym_return_statement_token1] = ACTIONS(989), + [aux_sym_throw_expression_token1] = ACTIONS(989), + [aux_sym_while_statement_token1] = ACTIONS(989), + [aux_sym_while_statement_token2] = ACTIONS(989), + [aux_sym_do_statement_token1] = ACTIONS(989), + [aux_sym_for_statement_token1] = ACTIONS(989), + [aux_sym_for_statement_token2] = ACTIONS(989), + [aux_sym_foreach_statement_token1] = ACTIONS(989), + [aux_sym_foreach_statement_token2] = ACTIONS(989), + [aux_sym_if_statement_token1] = ACTIONS(989), + [aux_sym_if_statement_token2] = ACTIONS(989), + [aux_sym_else_if_clause_token1] = ACTIONS(991), + [aux_sym_else_clause_token1] = ACTIONS(989), + [aux_sym_match_expression_token1] = ACTIONS(989), + [aux_sym_match_default_expression_token1] = ACTIONS(989), + [aux_sym_switch_statement_token1] = ACTIONS(989), + [aux_sym_switch_block_token1] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [aux_sym_clone_expression_token1] = ACTIONS(989), + [aux_sym_print_intrinsic_token1] = ACTIONS(989), + [aux_sym_object_creation_expression_token1] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [aux_sym__list_destructing_token1] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_self] = ACTIONS(989), + [anon_sym_parent] = ACTIONS(989), + [anon_sym_POUND_LBRACK] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [aux_sym_encapsed_string_token1] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [aux_sym_string_token1] = ACTIONS(987), + [anon_sym_LT_LT_LT] = ACTIONS(987), + [anon_sym_BQUOTE] = ACTIONS(987), + [sym_boolean] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(987), + [aux_sym_yield_expression_token1] = ACTIONS(989), + [aux_sym_include_expression_token1] = ACTIONS(989), + [aux_sym_include_once_expression_token1] = ACTIONS(989), + [aux_sym_require_expression_token1] = ACTIONS(989), + [aux_sym_require_once_expression_token1] = ACTIONS(989), + [sym_comment] = ACTIONS(3), + }, + [433] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_name] = ACTIONS(996), + [anon_sym_QMARK_GT] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [aux_sym_function_static_declaration_token1] = ACTIONS(996), + [aux_sym_global_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_definition_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(996), + [anon_sym_BSLASH] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [aux_sym_trait_declaration_token1] = ACTIONS(996), + [aux_sym_interface_declaration_token1] = ACTIONS(996), + [aux_sym_enum_declaration_token1] = ACTIONS(996), + [aux_sym_enum_case_token1] = ACTIONS(996), + [aux_sym_class_declaration_token1] = ACTIONS(996), + [aux_sym_final_modifier_token1] = ACTIONS(996), + [aux_sym_abstract_modifier_token1] = ACTIONS(996), + [aux_sym_readonly_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token2] = ACTIONS(996), + [aux_sym_visibility_modifier_token3] = ACTIONS(996), + [aux_sym__arrow_function_header_token1] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [aux_sym_cast_type_token1] = ACTIONS(996), + [aux_sym_echo_statement_token1] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(996), + [aux_sym_declare_statement_token1] = ACTIONS(996), + [aux_sym_declare_statement_token2] = ACTIONS(996), + [sym_float] = ACTIONS(996), + [aux_sym_try_statement_token1] = ACTIONS(996), + [aux_sym_catch_clause_token1] = ACTIONS(996), + [aux_sym_finally_clause_token1] = ACTIONS(996), + [aux_sym_goto_statement_token1] = ACTIONS(996), + [aux_sym_continue_statement_token1] = ACTIONS(996), + [aux_sym_break_statement_token1] = ACTIONS(996), + [sym_integer] = ACTIONS(996), + [aux_sym_return_statement_token1] = ACTIONS(996), + [aux_sym_throw_expression_token1] = ACTIONS(996), + [aux_sym_while_statement_token1] = ACTIONS(996), + [aux_sym_while_statement_token2] = ACTIONS(996), + [aux_sym_do_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token2] = ACTIONS(996), + [aux_sym_foreach_statement_token1] = ACTIONS(996), + [aux_sym_foreach_statement_token2] = ACTIONS(996), + [aux_sym_if_statement_token1] = ACTIONS(996), + [aux_sym_if_statement_token2] = ACTIONS(996), + [aux_sym_else_if_clause_token1] = ACTIONS(996), + [aux_sym_else_clause_token1] = ACTIONS(996), + [aux_sym_match_expression_token1] = ACTIONS(996), + [aux_sym_match_default_expression_token1] = ACTIONS(996), + [aux_sym_switch_statement_token1] = ACTIONS(996), + [aux_sym_switch_block_token1] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [aux_sym_clone_expression_token1] = ACTIONS(996), + [aux_sym_print_intrinsic_token1] = ACTIONS(996), + [aux_sym_object_creation_expression_token1] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [aux_sym__list_destructing_token1] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_self] = ACTIONS(996), + [anon_sym_parent] = ACTIONS(996), + [anon_sym_POUND_LBRACK] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [aux_sym_encapsed_string_token1] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [aux_sym_string_token1] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(994), + [sym_boolean] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [aux_sym_yield_expression_token1] = ACTIONS(996), + [aux_sym_include_expression_token1] = ACTIONS(996), + [aux_sym_include_once_expression_token1] = ACTIONS(996), + [aux_sym_require_expression_token1] = ACTIONS(996), + [aux_sym_require_once_expression_token1] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [434] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_name] = ACTIONS(1000), + [anon_sym_QMARK_GT] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [aux_sym_function_static_declaration_token1] = ACTIONS(1000), + [aux_sym_global_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_definition_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1000), + [anon_sym_BSLASH] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [aux_sym_trait_declaration_token1] = ACTIONS(1000), + [aux_sym_interface_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_case_token1] = ACTIONS(1000), + [aux_sym_class_declaration_token1] = ACTIONS(1000), + [aux_sym_final_modifier_token1] = ACTIONS(1000), + [aux_sym_abstract_modifier_token1] = ACTIONS(1000), + [aux_sym_readonly_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token2] = ACTIONS(1000), + [aux_sym_visibility_modifier_token3] = ACTIONS(1000), + [aux_sym__arrow_function_header_token1] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [aux_sym_cast_type_token1] = ACTIONS(1000), + [aux_sym_echo_statement_token1] = ACTIONS(1000), + [anon_sym_unset] = ACTIONS(1000), + [aux_sym_declare_statement_token1] = ACTIONS(1000), + [aux_sym_declare_statement_token2] = ACTIONS(1000), + [sym_float] = ACTIONS(1000), + [aux_sym_try_statement_token1] = ACTIONS(1000), + [aux_sym_catch_clause_token1] = ACTIONS(1000), + [aux_sym_finally_clause_token1] = ACTIONS(1000), + [aux_sym_goto_statement_token1] = ACTIONS(1000), + [aux_sym_continue_statement_token1] = ACTIONS(1000), + [aux_sym_break_statement_token1] = ACTIONS(1000), + [sym_integer] = ACTIONS(1000), + [aux_sym_return_statement_token1] = ACTIONS(1000), + [aux_sym_throw_expression_token1] = ACTIONS(1000), + [aux_sym_while_statement_token1] = ACTIONS(1000), + [aux_sym_while_statement_token2] = ACTIONS(1000), + [aux_sym_do_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token2] = ACTIONS(1000), + [aux_sym_foreach_statement_token1] = ACTIONS(1000), + [aux_sym_foreach_statement_token2] = ACTIONS(1000), + [aux_sym_if_statement_token1] = ACTIONS(1000), + [aux_sym_if_statement_token2] = ACTIONS(1000), + [aux_sym_else_if_clause_token1] = ACTIONS(1000), + [aux_sym_else_clause_token1] = ACTIONS(1000), + [aux_sym_match_expression_token1] = ACTIONS(1000), + [aux_sym_match_default_expression_token1] = ACTIONS(1000), + [aux_sym_switch_statement_token1] = ACTIONS(1000), + [aux_sym_switch_block_token1] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [aux_sym_clone_expression_token1] = ACTIONS(1000), + [aux_sym_print_intrinsic_token1] = ACTIONS(1000), + [aux_sym_object_creation_expression_token1] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [aux_sym__list_destructing_token1] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_self] = ACTIONS(1000), + [anon_sym_parent] = ACTIONS(1000), + [anon_sym_POUND_LBRACK] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [aux_sym_encapsed_string_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [aux_sym_string_token1] = ACTIONS(998), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [sym_boolean] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [aux_sym_yield_expression_token1] = ACTIONS(1000), + [aux_sym_include_expression_token1] = ACTIONS(1000), + [aux_sym_include_once_expression_token1] = ACTIONS(1000), + [aux_sym_require_expression_token1] = ACTIONS(1000), + [aux_sym_require_once_expression_token1] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_name] = ACTIONS(1004), + [anon_sym_QMARK_GT] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1006), + [aux_sym_function_static_declaration_token1] = ACTIONS(1004), + [aux_sym_global_declaration_token1] = ACTIONS(1004), + [aux_sym_namespace_definition_token1] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1004), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1004), + [anon_sym_BSLASH] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [aux_sym_trait_declaration_token1] = ACTIONS(1004), + [aux_sym_interface_declaration_token1] = ACTIONS(1004), + [aux_sym_enum_declaration_token1] = ACTIONS(1004), + [aux_sym_enum_case_token1] = ACTIONS(1004), + [aux_sym_class_declaration_token1] = ACTIONS(1004), + [aux_sym_final_modifier_token1] = ACTIONS(1004), + [aux_sym_abstract_modifier_token1] = ACTIONS(1004), + [aux_sym_readonly_modifier_token1] = ACTIONS(1004), + [aux_sym_visibility_modifier_token1] = ACTIONS(1004), + [aux_sym_visibility_modifier_token2] = ACTIONS(1004), + [aux_sym_visibility_modifier_token3] = ACTIONS(1004), + [aux_sym__arrow_function_header_token1] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [aux_sym_cast_type_token1] = ACTIONS(1004), + [aux_sym_echo_statement_token1] = ACTIONS(1004), + [anon_sym_unset] = ACTIONS(1004), + [aux_sym_declare_statement_token1] = ACTIONS(1004), + [aux_sym_declare_statement_token2] = ACTIONS(1004), + [sym_float] = ACTIONS(1004), + [aux_sym_try_statement_token1] = ACTIONS(1004), + [aux_sym_goto_statement_token1] = ACTIONS(1004), + [aux_sym_continue_statement_token1] = ACTIONS(1004), + [aux_sym_break_statement_token1] = ACTIONS(1004), + [sym_integer] = ACTIONS(1004), + [aux_sym_return_statement_token1] = ACTIONS(1004), + [aux_sym_throw_expression_token1] = ACTIONS(1004), + [aux_sym_while_statement_token1] = ACTIONS(1004), + [aux_sym_while_statement_token2] = ACTIONS(1004), + [aux_sym_do_statement_token1] = ACTIONS(1004), + [aux_sym_for_statement_token1] = ACTIONS(1004), + [aux_sym_for_statement_token2] = ACTIONS(1004), + [aux_sym_foreach_statement_token1] = ACTIONS(1004), + [aux_sym_foreach_statement_token2] = ACTIONS(1004), + [aux_sym_if_statement_token1] = ACTIONS(1004), + [aux_sym_if_statement_token2] = ACTIONS(1004), + [aux_sym_else_if_clause_token1] = ACTIONS(1004), + [aux_sym_else_clause_token1] = ACTIONS(1004), + [aux_sym_match_expression_token1] = ACTIONS(1004), + [aux_sym_match_default_expression_token1] = ACTIONS(1004), + [aux_sym_switch_statement_token1] = ACTIONS(1004), + [aux_sym_switch_block_token1] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [aux_sym_clone_expression_token1] = ACTIONS(1004), + [aux_sym_print_intrinsic_token1] = ACTIONS(1004), + [aux_sym_object_creation_expression_token1] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [aux_sym__list_destructing_token1] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_self] = ACTIONS(1004), + [anon_sym_parent] = ACTIONS(1004), + [anon_sym_POUND_LBRACK] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [aux_sym_encapsed_string_token1] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [aux_sym_string_token1] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_BQUOTE] = ACTIONS(1002), + [sym_boolean] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [aux_sym_yield_expression_token1] = ACTIONS(1004), + [aux_sym_include_expression_token1] = ACTIONS(1004), + [aux_sym_include_once_expression_token1] = ACTIONS(1004), + [aux_sym_require_expression_token1] = ACTIONS(1004), + [aux_sym_require_once_expression_token1] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1006), + }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(1008), + [sym_name] = ACTIONS(1010), + [anon_sym_QMARK_GT] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1012), + [aux_sym_function_static_declaration_token1] = ACTIONS(1010), + [aux_sym_global_declaration_token1] = ACTIONS(1010), [aux_sym_namespace_definition_token1] = ACTIONS(1010), [aux_sym_namespace_use_declaration_token1] = ACTIONS(1010), [aux_sym_namespace_use_declaration_token2] = ACTIONS(1010), @@ -65382,8 +63926,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declare_statement_token2] = ACTIONS(1010), [sym_float] = ACTIONS(1010), [aux_sym_try_statement_token1] = ACTIONS(1010), - [aux_sym_catch_clause_token1] = ACTIONS(1010), - [aux_sym_finally_clause_token1] = ACTIONS(1010), [aux_sym_goto_statement_token1] = ACTIONS(1010), [aux_sym_continue_statement_token1] = ACTIONS(1010), [aux_sym_break_statement_token1] = ACTIONS(1010), @@ -65434,1245 +63976,1318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1010), [aux_sym_require_expression_token1] = ACTIONS(1010), [aux_sym_require_once_expression_token1] = ACTIONS(1010), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1012), + }, + [437] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_name] = ACTIONS(1016), + [anon_sym_QMARK_GT] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1018), + [aux_sym_function_static_declaration_token1] = ACTIONS(1016), + [aux_sym_global_declaration_token1] = ACTIONS(1016), + [aux_sym_namespace_definition_token1] = ACTIONS(1016), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1016), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1016), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1016), + [anon_sym_BSLASH] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [aux_sym_trait_declaration_token1] = ACTIONS(1016), + [aux_sym_interface_declaration_token1] = ACTIONS(1016), + [aux_sym_enum_declaration_token1] = ACTIONS(1016), + [aux_sym_enum_case_token1] = ACTIONS(1016), + [aux_sym_class_declaration_token1] = ACTIONS(1016), + [aux_sym_final_modifier_token1] = ACTIONS(1016), + [aux_sym_abstract_modifier_token1] = ACTIONS(1016), + [aux_sym_readonly_modifier_token1] = ACTIONS(1016), + [aux_sym_visibility_modifier_token1] = ACTIONS(1016), + [aux_sym_visibility_modifier_token2] = ACTIONS(1016), + [aux_sym_visibility_modifier_token3] = ACTIONS(1016), + [aux_sym__arrow_function_header_token1] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [aux_sym_cast_type_token1] = ACTIONS(1016), + [aux_sym_echo_statement_token1] = ACTIONS(1016), + [anon_sym_unset] = ACTIONS(1016), + [aux_sym_declare_statement_token1] = ACTIONS(1016), + [aux_sym_declare_statement_token2] = ACTIONS(1016), + [sym_float] = ACTIONS(1016), + [aux_sym_try_statement_token1] = ACTIONS(1016), + [aux_sym_goto_statement_token1] = ACTIONS(1016), + [aux_sym_continue_statement_token1] = ACTIONS(1016), + [aux_sym_break_statement_token1] = ACTIONS(1016), + [sym_integer] = ACTIONS(1016), + [aux_sym_return_statement_token1] = ACTIONS(1016), + [aux_sym_throw_expression_token1] = ACTIONS(1016), + [aux_sym_while_statement_token1] = ACTIONS(1016), + [aux_sym_while_statement_token2] = ACTIONS(1016), + [aux_sym_do_statement_token1] = ACTIONS(1016), + [aux_sym_for_statement_token1] = ACTIONS(1016), + [aux_sym_for_statement_token2] = ACTIONS(1016), + [aux_sym_foreach_statement_token1] = ACTIONS(1016), + [aux_sym_foreach_statement_token2] = ACTIONS(1016), + [aux_sym_if_statement_token1] = ACTIONS(1016), + [aux_sym_if_statement_token2] = ACTIONS(1016), + [aux_sym_else_if_clause_token1] = ACTIONS(1016), + [aux_sym_else_clause_token1] = ACTIONS(1016), + [aux_sym_match_expression_token1] = ACTIONS(1016), + [aux_sym_match_default_expression_token1] = ACTIONS(1016), + [aux_sym_switch_statement_token1] = ACTIONS(1016), + [aux_sym_switch_block_token1] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [aux_sym_clone_expression_token1] = ACTIONS(1016), + [aux_sym_print_intrinsic_token1] = ACTIONS(1016), + [aux_sym_object_creation_expression_token1] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [aux_sym__list_destructing_token1] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_self] = ACTIONS(1016), + [anon_sym_parent] = ACTIONS(1016), + [anon_sym_POUND_LBRACK] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [aux_sym_encapsed_string_token1] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [aux_sym_string_token1] = ACTIONS(1014), + [anon_sym_LT_LT_LT] = ACTIONS(1014), + [anon_sym_BQUOTE] = ACTIONS(1014), + [sym_boolean] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [aux_sym_yield_expression_token1] = ACTIONS(1016), + [aux_sym_include_expression_token1] = ACTIONS(1016), + [aux_sym_include_once_expression_token1] = ACTIONS(1016), + [aux_sym_require_expression_token1] = ACTIONS(1016), + [aux_sym_require_once_expression_token1] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1018), + }, + [438] = { + [ts_builtin_sym_end] = ACTIONS(1020), + [sym_name] = ACTIONS(1022), + [anon_sym_QMARK_GT] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1024), + [aux_sym_function_static_declaration_token1] = ACTIONS(1022), + [aux_sym_global_declaration_token1] = ACTIONS(1022), + [aux_sym_namespace_definition_token1] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1022), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1022), + [anon_sym_BSLASH] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [aux_sym_trait_declaration_token1] = ACTIONS(1022), + [aux_sym_interface_declaration_token1] = ACTIONS(1022), + [aux_sym_enum_declaration_token1] = ACTIONS(1022), + [aux_sym_enum_case_token1] = ACTIONS(1022), + [aux_sym_class_declaration_token1] = ACTIONS(1022), + [aux_sym_final_modifier_token1] = ACTIONS(1022), + [aux_sym_abstract_modifier_token1] = ACTIONS(1022), + [aux_sym_readonly_modifier_token1] = ACTIONS(1022), + [aux_sym_visibility_modifier_token1] = ACTIONS(1022), + [aux_sym_visibility_modifier_token2] = ACTIONS(1022), + [aux_sym_visibility_modifier_token3] = ACTIONS(1022), + [aux_sym__arrow_function_header_token1] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1020), + [aux_sym_cast_type_token1] = ACTIONS(1022), + [aux_sym_echo_statement_token1] = ACTIONS(1022), + [anon_sym_unset] = ACTIONS(1022), + [aux_sym_declare_statement_token1] = ACTIONS(1022), + [aux_sym_declare_statement_token2] = ACTIONS(1022), + [sym_float] = ACTIONS(1022), + [aux_sym_try_statement_token1] = ACTIONS(1022), + [aux_sym_goto_statement_token1] = ACTIONS(1022), + [aux_sym_continue_statement_token1] = ACTIONS(1022), + [aux_sym_break_statement_token1] = ACTIONS(1022), + [sym_integer] = ACTIONS(1022), + [aux_sym_return_statement_token1] = ACTIONS(1022), + [aux_sym_throw_expression_token1] = ACTIONS(1022), + [aux_sym_while_statement_token1] = ACTIONS(1022), + [aux_sym_while_statement_token2] = ACTIONS(1022), + [aux_sym_do_statement_token1] = ACTIONS(1022), + [aux_sym_for_statement_token1] = ACTIONS(1022), + [aux_sym_for_statement_token2] = ACTIONS(1022), + [aux_sym_foreach_statement_token1] = ACTIONS(1022), + [aux_sym_foreach_statement_token2] = ACTIONS(1022), + [aux_sym_if_statement_token1] = ACTIONS(1022), + [aux_sym_if_statement_token2] = ACTIONS(1022), + [aux_sym_else_if_clause_token1] = ACTIONS(1022), + [aux_sym_else_clause_token1] = ACTIONS(1022), + [aux_sym_match_expression_token1] = ACTIONS(1022), + [aux_sym_match_default_expression_token1] = ACTIONS(1022), + [aux_sym_switch_statement_token1] = ACTIONS(1022), + [aux_sym_switch_block_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [aux_sym_clone_expression_token1] = ACTIONS(1022), + [aux_sym_print_intrinsic_token1] = ACTIONS(1022), + [aux_sym_object_creation_expression_token1] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [aux_sym__list_destructing_token1] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_self] = ACTIONS(1022), + [anon_sym_parent] = ACTIONS(1022), + [anon_sym_POUND_LBRACK] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1020), + [aux_sym_encapsed_string_token1] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [aux_sym_string_token1] = ACTIONS(1020), + [anon_sym_LT_LT_LT] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1020), + [sym_boolean] = ACTIONS(1022), + [sym_null] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), + [aux_sym_yield_expression_token1] = ACTIONS(1022), + [aux_sym_include_expression_token1] = ACTIONS(1022), + [aux_sym_include_once_expression_token1] = ACTIONS(1022), + [aux_sym_require_expression_token1] = ACTIONS(1022), + [aux_sym_require_once_expression_token1] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1024), + }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_name] = ACTIONS(1028), + [anon_sym_QMARK_GT] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1030), + [aux_sym_function_static_declaration_token1] = ACTIONS(1028), + [aux_sym_global_declaration_token1] = ACTIONS(1028), + [aux_sym_namespace_definition_token1] = ACTIONS(1028), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1028), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1028), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1028), + [anon_sym_BSLASH] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [aux_sym_trait_declaration_token1] = ACTIONS(1028), + [aux_sym_interface_declaration_token1] = ACTIONS(1028), + [aux_sym_enum_declaration_token1] = ACTIONS(1028), + [aux_sym_enum_case_token1] = ACTIONS(1028), + [aux_sym_class_declaration_token1] = ACTIONS(1028), + [aux_sym_final_modifier_token1] = ACTIONS(1028), + [aux_sym_abstract_modifier_token1] = ACTIONS(1028), + [aux_sym_readonly_modifier_token1] = ACTIONS(1028), + [aux_sym_visibility_modifier_token1] = ACTIONS(1028), + [aux_sym_visibility_modifier_token2] = ACTIONS(1028), + [aux_sym_visibility_modifier_token3] = ACTIONS(1028), + [aux_sym__arrow_function_header_token1] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [aux_sym_cast_type_token1] = ACTIONS(1028), + [aux_sym_echo_statement_token1] = ACTIONS(1028), + [anon_sym_unset] = ACTIONS(1028), + [aux_sym_declare_statement_token1] = ACTIONS(1028), + [aux_sym_declare_statement_token2] = ACTIONS(1028), + [sym_float] = ACTIONS(1028), + [aux_sym_try_statement_token1] = ACTIONS(1028), + [aux_sym_goto_statement_token1] = ACTIONS(1028), + [aux_sym_continue_statement_token1] = ACTIONS(1028), + [aux_sym_break_statement_token1] = ACTIONS(1028), + [sym_integer] = ACTIONS(1028), + [aux_sym_return_statement_token1] = ACTIONS(1028), + [aux_sym_throw_expression_token1] = ACTIONS(1028), + [aux_sym_while_statement_token1] = ACTIONS(1028), + [aux_sym_while_statement_token2] = ACTIONS(1028), + [aux_sym_do_statement_token1] = ACTIONS(1028), + [aux_sym_for_statement_token1] = ACTIONS(1028), + [aux_sym_for_statement_token2] = ACTIONS(1028), + [aux_sym_foreach_statement_token1] = ACTIONS(1028), + [aux_sym_foreach_statement_token2] = ACTIONS(1028), + [aux_sym_if_statement_token1] = ACTIONS(1028), + [aux_sym_if_statement_token2] = ACTIONS(1028), + [aux_sym_else_if_clause_token1] = ACTIONS(1028), + [aux_sym_else_clause_token1] = ACTIONS(1028), + [aux_sym_match_expression_token1] = ACTIONS(1028), + [aux_sym_match_default_expression_token1] = ACTIONS(1028), + [aux_sym_switch_statement_token1] = ACTIONS(1028), + [aux_sym_switch_block_token1] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [aux_sym_clone_expression_token1] = ACTIONS(1028), + [aux_sym_print_intrinsic_token1] = ACTIONS(1028), + [aux_sym_object_creation_expression_token1] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [aux_sym__list_destructing_token1] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_self] = ACTIONS(1028), + [anon_sym_parent] = ACTIONS(1028), + [anon_sym_POUND_LBRACK] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [aux_sym_encapsed_string_token1] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [aux_sym_string_token1] = ACTIONS(1026), + [anon_sym_LT_LT_LT] = ACTIONS(1026), + [anon_sym_BQUOTE] = ACTIONS(1026), + [sym_boolean] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), + [aux_sym_yield_expression_token1] = ACTIONS(1028), + [aux_sym_include_expression_token1] = ACTIONS(1028), + [aux_sym_include_once_expression_token1] = ACTIONS(1028), + [aux_sym_require_expression_token1] = ACTIONS(1028), + [aux_sym_require_once_expression_token1] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1030), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1032), + [sym_name] = ACTIONS(1034), + [anon_sym_QMARK_GT] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1036), + [aux_sym_function_static_declaration_token1] = ACTIONS(1034), + [aux_sym_global_declaration_token1] = ACTIONS(1034), + [aux_sym_namespace_definition_token1] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1034), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1034), + [anon_sym_BSLASH] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [aux_sym_trait_declaration_token1] = ACTIONS(1034), + [aux_sym_interface_declaration_token1] = ACTIONS(1034), + [aux_sym_enum_declaration_token1] = ACTIONS(1034), + [aux_sym_enum_case_token1] = ACTIONS(1034), + [aux_sym_class_declaration_token1] = ACTIONS(1034), + [aux_sym_final_modifier_token1] = ACTIONS(1034), + [aux_sym_abstract_modifier_token1] = ACTIONS(1034), + [aux_sym_readonly_modifier_token1] = ACTIONS(1034), + [aux_sym_visibility_modifier_token1] = ACTIONS(1034), + [aux_sym_visibility_modifier_token2] = ACTIONS(1034), + [aux_sym_visibility_modifier_token3] = ACTIONS(1034), + [aux_sym__arrow_function_header_token1] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1032), + [aux_sym_cast_type_token1] = ACTIONS(1034), + [aux_sym_echo_statement_token1] = ACTIONS(1034), + [anon_sym_unset] = ACTIONS(1034), + [aux_sym_declare_statement_token1] = ACTIONS(1034), + [aux_sym_declare_statement_token2] = ACTIONS(1034), + [sym_float] = ACTIONS(1034), + [aux_sym_try_statement_token1] = ACTIONS(1034), + [aux_sym_goto_statement_token1] = ACTIONS(1034), + [aux_sym_continue_statement_token1] = ACTIONS(1034), + [aux_sym_break_statement_token1] = ACTIONS(1034), + [sym_integer] = ACTIONS(1034), + [aux_sym_return_statement_token1] = ACTIONS(1034), + [aux_sym_throw_expression_token1] = ACTIONS(1034), + [aux_sym_while_statement_token1] = ACTIONS(1034), + [aux_sym_while_statement_token2] = ACTIONS(1034), + [aux_sym_do_statement_token1] = ACTIONS(1034), + [aux_sym_for_statement_token1] = ACTIONS(1034), + [aux_sym_for_statement_token2] = ACTIONS(1034), + [aux_sym_foreach_statement_token1] = ACTIONS(1034), + [aux_sym_foreach_statement_token2] = ACTIONS(1034), + [aux_sym_if_statement_token1] = ACTIONS(1034), + [aux_sym_if_statement_token2] = ACTIONS(1034), + [aux_sym_else_if_clause_token1] = ACTIONS(1034), + [aux_sym_else_clause_token1] = ACTIONS(1034), + [aux_sym_match_expression_token1] = ACTIONS(1034), + [aux_sym_match_default_expression_token1] = ACTIONS(1034), + [aux_sym_switch_statement_token1] = ACTIONS(1034), + [aux_sym_switch_block_token1] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [aux_sym_clone_expression_token1] = ACTIONS(1034), + [aux_sym_print_intrinsic_token1] = ACTIONS(1034), + [aux_sym_object_creation_expression_token1] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [aux_sym__list_destructing_token1] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_self] = ACTIONS(1034), + [anon_sym_parent] = ACTIONS(1034), + [anon_sym_POUND_LBRACK] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [aux_sym_encapsed_string_token1] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [aux_sym_string_token1] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [sym_boolean] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), + [aux_sym_yield_expression_token1] = ACTIONS(1034), + [aux_sym_include_expression_token1] = ACTIONS(1034), + [aux_sym_include_once_expression_token1] = ACTIONS(1034), + [aux_sym_require_expression_token1] = ACTIONS(1034), + [aux_sym_require_once_expression_token1] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1036), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_name] = ACTIONS(1040), + [anon_sym_QMARK_GT] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1042), + [aux_sym_function_static_declaration_token1] = ACTIONS(1040), + [aux_sym_global_declaration_token1] = ACTIONS(1040), + [aux_sym_namespace_definition_token1] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1040), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1040), + [anon_sym_BSLASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [aux_sym_trait_declaration_token1] = ACTIONS(1040), + [aux_sym_interface_declaration_token1] = ACTIONS(1040), + [aux_sym_enum_declaration_token1] = ACTIONS(1040), + [aux_sym_enum_case_token1] = ACTIONS(1040), + [aux_sym_class_declaration_token1] = ACTIONS(1040), + [aux_sym_final_modifier_token1] = ACTIONS(1040), + [aux_sym_abstract_modifier_token1] = ACTIONS(1040), + [aux_sym_readonly_modifier_token1] = ACTIONS(1040), + [aux_sym_visibility_modifier_token1] = ACTIONS(1040), + [aux_sym_visibility_modifier_token2] = ACTIONS(1040), + [aux_sym_visibility_modifier_token3] = ACTIONS(1040), + [aux_sym__arrow_function_header_token1] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [aux_sym_cast_type_token1] = ACTIONS(1040), + [aux_sym_echo_statement_token1] = ACTIONS(1040), + [anon_sym_unset] = ACTIONS(1040), + [aux_sym_declare_statement_token1] = ACTIONS(1040), + [aux_sym_declare_statement_token2] = ACTIONS(1040), + [sym_float] = ACTIONS(1040), + [aux_sym_try_statement_token1] = ACTIONS(1040), + [aux_sym_goto_statement_token1] = ACTIONS(1040), + [aux_sym_continue_statement_token1] = ACTIONS(1040), + [aux_sym_break_statement_token1] = ACTIONS(1040), + [sym_integer] = ACTIONS(1040), + [aux_sym_return_statement_token1] = ACTIONS(1040), + [aux_sym_throw_expression_token1] = ACTIONS(1040), + [aux_sym_while_statement_token1] = ACTIONS(1040), + [aux_sym_while_statement_token2] = ACTIONS(1040), + [aux_sym_do_statement_token1] = ACTIONS(1040), + [aux_sym_for_statement_token1] = ACTIONS(1040), + [aux_sym_for_statement_token2] = ACTIONS(1040), + [aux_sym_foreach_statement_token1] = ACTIONS(1040), + [aux_sym_foreach_statement_token2] = ACTIONS(1040), + [aux_sym_if_statement_token1] = ACTIONS(1040), + [aux_sym_if_statement_token2] = ACTIONS(1040), + [aux_sym_else_if_clause_token1] = ACTIONS(1040), + [aux_sym_else_clause_token1] = ACTIONS(1040), + [aux_sym_match_expression_token1] = ACTIONS(1040), + [aux_sym_match_default_expression_token1] = ACTIONS(1040), + [aux_sym_switch_statement_token1] = ACTIONS(1040), + [aux_sym_switch_block_token1] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [aux_sym_clone_expression_token1] = ACTIONS(1040), + [aux_sym_print_intrinsic_token1] = ACTIONS(1040), + [aux_sym_object_creation_expression_token1] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [aux_sym__list_destructing_token1] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1038), + [anon_sym_self] = ACTIONS(1040), + [anon_sym_parent] = ACTIONS(1040), + [anon_sym_POUND_LBRACK] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [aux_sym_encapsed_string_token1] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [aux_sym_string_token1] = ACTIONS(1038), + [anon_sym_LT_LT_LT] = ACTIONS(1038), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_boolean] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [aux_sym_yield_expression_token1] = ACTIONS(1040), + [aux_sym_include_expression_token1] = ACTIONS(1040), + [aux_sym_include_once_expression_token1] = ACTIONS(1040), + [aux_sym_require_expression_token1] = ACTIONS(1040), + [aux_sym_require_once_expression_token1] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1042), }, [442] = { - [sym_text_interpolation] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym_name] = ACTIONS(1014), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1016), - [aux_sym_function_static_declaration_token1] = ACTIONS(1014), - [aux_sym_global_declaration_token1] = ACTIONS(1014), - [aux_sym_namespace_definition_token1] = ACTIONS(1014), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1014), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1014), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1014), - [anon_sym_BSLASH] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [aux_sym_trait_declaration_token1] = ACTIONS(1014), - [aux_sym_interface_declaration_token1] = ACTIONS(1014), - [aux_sym_enum_declaration_token1] = ACTIONS(1014), - [aux_sym_enum_case_token1] = ACTIONS(1014), - [aux_sym_class_declaration_token1] = ACTIONS(1014), - [aux_sym_final_modifier_token1] = ACTIONS(1014), - [aux_sym_abstract_modifier_token1] = ACTIONS(1014), - [aux_sym_readonly_modifier_token1] = ACTIONS(1014), - [aux_sym_visibility_modifier_token1] = ACTIONS(1014), - [aux_sym_visibility_modifier_token2] = ACTIONS(1014), - [aux_sym_visibility_modifier_token3] = ACTIONS(1014), - [aux_sym__arrow_function_header_token1] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1012), - [aux_sym_cast_type_token1] = ACTIONS(1014), - [aux_sym_echo_statement_token1] = ACTIONS(1014), - [anon_sym_unset] = ACTIONS(1014), - [aux_sym_declare_statement_token1] = ACTIONS(1014), - [aux_sym_declare_statement_token2] = ACTIONS(1014), - [sym_float] = ACTIONS(1014), - [aux_sym_try_statement_token1] = ACTIONS(1014), - [aux_sym_goto_statement_token1] = ACTIONS(1014), - [aux_sym_continue_statement_token1] = ACTIONS(1014), - [aux_sym_break_statement_token1] = ACTIONS(1014), - [sym_integer] = ACTIONS(1014), - [aux_sym_return_statement_token1] = ACTIONS(1014), - [aux_sym_throw_expression_token1] = ACTIONS(1014), - [aux_sym_while_statement_token1] = ACTIONS(1014), - [aux_sym_while_statement_token2] = ACTIONS(1014), - [aux_sym_do_statement_token1] = ACTIONS(1014), - [aux_sym_for_statement_token1] = ACTIONS(1014), - [aux_sym_for_statement_token2] = ACTIONS(1014), - [aux_sym_foreach_statement_token1] = ACTIONS(1014), - [aux_sym_foreach_statement_token2] = ACTIONS(1014), - [aux_sym_if_statement_token1] = ACTIONS(1014), - [aux_sym_if_statement_token2] = ACTIONS(1014), - [aux_sym_else_if_clause_token1] = ACTIONS(1014), - [aux_sym_else_clause_token1] = ACTIONS(1014), - [aux_sym_match_expression_token1] = ACTIONS(1014), - [aux_sym_match_default_expression_token1] = ACTIONS(1014), - [aux_sym_switch_statement_token1] = ACTIONS(1014), - [aux_sym_switch_block_token1] = ACTIONS(1014), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [aux_sym_clone_expression_token1] = ACTIONS(1014), - [aux_sym_print_intrinsic_token1] = ACTIONS(1014), - [aux_sym_object_creation_expression_token1] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [aux_sym__list_destructing_token1] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_self] = ACTIONS(1014), - [anon_sym_parent] = ACTIONS(1014), - [anon_sym_POUND_LBRACK] = ACTIONS(1012), - [anon_sym_SQUOTE] = ACTIONS(1012), - [aux_sym_encapsed_string_token1] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [aux_sym_string_token1] = ACTIONS(1012), - [anon_sym_LT_LT_LT] = ACTIONS(1012), - [anon_sym_BQUOTE] = ACTIONS(1012), - [sym_boolean] = ACTIONS(1014), - [sym_null] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1012), - [aux_sym_yield_expression_token1] = ACTIONS(1014), - [aux_sym_include_expression_token1] = ACTIONS(1014), - [aux_sym_include_once_expression_token1] = ACTIONS(1014), - [aux_sym_require_expression_token1] = ACTIONS(1014), - [aux_sym_require_once_expression_token1] = ACTIONS(1014), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1016), + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(2401), + [sym__unary_expression] = STATE(957), + [sym_unary_op_expression] = STATE(1008), + [sym_exponentiation_expression] = STATE(957), + [sym_clone_expression] = STATE(1008), + [sym__primary_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(957), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(573), + [sym_scoped_call_expression] = STATE(573), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(573), + [sym_nullsafe_member_call_expression] = STATE(573), + [sym_subscript_expression] = STATE(573), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(573), + [sym_variable_name] = STATE(573), + [sym_include_expression] = STATE(957), + [sym_include_once_expression] = STATE(957), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(609), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(631), + [aux_sym_include_once_expression_token1] = ACTIONS(633), + [sym_comment] = ACTIONS(3), }, [443] = { - [sym_text_interpolation] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_name] = ACTIONS(1020), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1022), - [aux_sym_function_static_declaration_token1] = ACTIONS(1020), - [aux_sym_global_declaration_token1] = ACTIONS(1020), - [aux_sym_namespace_definition_token1] = ACTIONS(1020), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1020), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1020), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1020), - [anon_sym_BSLASH] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [aux_sym_trait_declaration_token1] = ACTIONS(1020), - [aux_sym_interface_declaration_token1] = ACTIONS(1020), - [aux_sym_enum_declaration_token1] = ACTIONS(1020), - [aux_sym_enum_case_token1] = ACTIONS(1020), - [aux_sym_class_declaration_token1] = ACTIONS(1020), - [aux_sym_final_modifier_token1] = ACTIONS(1020), - [aux_sym_abstract_modifier_token1] = ACTIONS(1020), - [aux_sym_readonly_modifier_token1] = ACTIONS(1020), - [aux_sym_visibility_modifier_token1] = ACTIONS(1020), - [aux_sym_visibility_modifier_token2] = ACTIONS(1020), - [aux_sym_visibility_modifier_token3] = ACTIONS(1020), - [aux_sym__arrow_function_header_token1] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1018), - [aux_sym_cast_type_token1] = ACTIONS(1020), - [aux_sym_echo_statement_token1] = ACTIONS(1020), - [anon_sym_unset] = ACTIONS(1020), - [aux_sym_declare_statement_token1] = ACTIONS(1020), - [aux_sym_declare_statement_token2] = ACTIONS(1020), - [sym_float] = ACTIONS(1020), - [aux_sym_try_statement_token1] = ACTIONS(1020), - [aux_sym_goto_statement_token1] = ACTIONS(1020), - [aux_sym_continue_statement_token1] = ACTIONS(1020), - [aux_sym_break_statement_token1] = ACTIONS(1020), - [sym_integer] = ACTIONS(1020), - [aux_sym_return_statement_token1] = ACTIONS(1020), - [aux_sym_throw_expression_token1] = ACTIONS(1020), - [aux_sym_while_statement_token1] = ACTIONS(1020), - [aux_sym_while_statement_token2] = ACTIONS(1020), - [aux_sym_do_statement_token1] = ACTIONS(1020), - [aux_sym_for_statement_token1] = ACTIONS(1020), - [aux_sym_for_statement_token2] = ACTIONS(1020), - [aux_sym_foreach_statement_token1] = ACTIONS(1020), - [aux_sym_foreach_statement_token2] = ACTIONS(1020), - [aux_sym_if_statement_token1] = ACTIONS(1020), - [aux_sym_if_statement_token2] = ACTIONS(1020), - [aux_sym_else_if_clause_token1] = ACTIONS(1020), - [aux_sym_else_clause_token1] = ACTIONS(1020), - [aux_sym_match_expression_token1] = ACTIONS(1020), - [aux_sym_match_default_expression_token1] = ACTIONS(1020), - [aux_sym_switch_statement_token1] = ACTIONS(1020), - [aux_sym_switch_block_token1] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [aux_sym_clone_expression_token1] = ACTIONS(1020), - [aux_sym_print_intrinsic_token1] = ACTIONS(1020), - [aux_sym_object_creation_expression_token1] = ACTIONS(1020), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [aux_sym__list_destructing_token1] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_self] = ACTIONS(1020), - [anon_sym_parent] = ACTIONS(1020), - [anon_sym_POUND_LBRACK] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [aux_sym_encapsed_string_token1] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [aux_sym_string_token1] = ACTIONS(1018), - [anon_sym_LT_LT_LT] = ACTIONS(1018), - [anon_sym_BQUOTE] = ACTIONS(1018), - [sym_boolean] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1018), - [aux_sym_yield_expression_token1] = ACTIONS(1020), - [aux_sym_include_expression_token1] = ACTIONS(1020), - [aux_sym_include_once_expression_token1] = ACTIONS(1020), - [aux_sym_require_expression_token1] = ACTIONS(1020), - [aux_sym_require_once_expression_token1] = ACTIONS(1020), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1022), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_name] = ACTIONS(1048), + [anon_sym_QMARK_GT] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1050), + [aux_sym_function_static_declaration_token1] = ACTIONS(1048), + [aux_sym_global_declaration_token1] = ACTIONS(1048), + [aux_sym_namespace_definition_token1] = ACTIONS(1048), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1048), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1048), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1048), + [anon_sym_BSLASH] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [aux_sym_trait_declaration_token1] = ACTIONS(1048), + [aux_sym_interface_declaration_token1] = ACTIONS(1048), + [aux_sym_enum_declaration_token1] = ACTIONS(1048), + [aux_sym_enum_case_token1] = ACTIONS(1048), + [aux_sym_class_declaration_token1] = ACTIONS(1048), + [aux_sym_final_modifier_token1] = ACTIONS(1048), + [aux_sym_abstract_modifier_token1] = ACTIONS(1048), + [aux_sym_readonly_modifier_token1] = ACTIONS(1048), + [aux_sym_visibility_modifier_token1] = ACTIONS(1048), + [aux_sym_visibility_modifier_token2] = ACTIONS(1048), + [aux_sym_visibility_modifier_token3] = ACTIONS(1048), + [aux_sym__arrow_function_header_token1] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [aux_sym_cast_type_token1] = ACTIONS(1048), + [aux_sym_echo_statement_token1] = ACTIONS(1048), + [anon_sym_unset] = ACTIONS(1048), + [aux_sym_declare_statement_token1] = ACTIONS(1048), + [aux_sym_declare_statement_token2] = ACTIONS(1048), + [sym_float] = ACTIONS(1048), + [aux_sym_try_statement_token1] = ACTIONS(1048), + [aux_sym_goto_statement_token1] = ACTIONS(1048), + [aux_sym_continue_statement_token1] = ACTIONS(1048), + [aux_sym_break_statement_token1] = ACTIONS(1048), + [sym_integer] = ACTIONS(1048), + [aux_sym_return_statement_token1] = ACTIONS(1048), + [aux_sym_throw_expression_token1] = ACTIONS(1048), + [aux_sym_while_statement_token1] = ACTIONS(1048), + [aux_sym_while_statement_token2] = ACTIONS(1048), + [aux_sym_do_statement_token1] = ACTIONS(1048), + [aux_sym_for_statement_token1] = ACTIONS(1048), + [aux_sym_for_statement_token2] = ACTIONS(1048), + [aux_sym_foreach_statement_token1] = ACTIONS(1048), + [aux_sym_foreach_statement_token2] = ACTIONS(1048), + [aux_sym_if_statement_token1] = ACTIONS(1048), + [aux_sym_if_statement_token2] = ACTIONS(1048), + [aux_sym_else_if_clause_token1] = ACTIONS(1048), + [aux_sym_else_clause_token1] = ACTIONS(1048), + [aux_sym_match_expression_token1] = ACTIONS(1048), + [aux_sym_match_default_expression_token1] = ACTIONS(1048), + [aux_sym_switch_statement_token1] = ACTIONS(1048), + [aux_sym_switch_block_token1] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [aux_sym_clone_expression_token1] = ACTIONS(1048), + [aux_sym_print_intrinsic_token1] = ACTIONS(1048), + [aux_sym_object_creation_expression_token1] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [aux_sym__list_destructing_token1] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_self] = ACTIONS(1048), + [anon_sym_parent] = ACTIONS(1048), + [anon_sym_POUND_LBRACK] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [aux_sym_encapsed_string_token1] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [aux_sym_string_token1] = ACTIONS(1046), + [anon_sym_LT_LT_LT] = ACTIONS(1046), + [anon_sym_BQUOTE] = ACTIONS(1046), + [sym_boolean] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1046), + [aux_sym_yield_expression_token1] = ACTIONS(1048), + [aux_sym_include_expression_token1] = ACTIONS(1048), + [aux_sym_include_once_expression_token1] = ACTIONS(1048), + [aux_sym_require_expression_token1] = ACTIONS(1048), + [aux_sym_require_once_expression_token1] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1050), }, [444] = { - [sym_text_interpolation] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym_name] = ACTIONS(1026), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1028), - [aux_sym_function_static_declaration_token1] = ACTIONS(1026), - [aux_sym_global_declaration_token1] = ACTIONS(1026), - [aux_sym_namespace_definition_token1] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1026), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1026), - [anon_sym_BSLASH] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [aux_sym_trait_declaration_token1] = ACTIONS(1026), - [aux_sym_interface_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_declaration_token1] = ACTIONS(1026), - [aux_sym_enum_case_token1] = ACTIONS(1026), - [aux_sym_class_declaration_token1] = ACTIONS(1026), - [aux_sym_final_modifier_token1] = ACTIONS(1026), - [aux_sym_abstract_modifier_token1] = ACTIONS(1026), - [aux_sym_readonly_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token1] = ACTIONS(1026), - [aux_sym_visibility_modifier_token2] = ACTIONS(1026), - [aux_sym_visibility_modifier_token3] = ACTIONS(1026), - [aux_sym__arrow_function_header_token1] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1024), - [aux_sym_cast_type_token1] = ACTIONS(1026), - [aux_sym_echo_statement_token1] = ACTIONS(1026), - [anon_sym_unset] = ACTIONS(1026), - [aux_sym_declare_statement_token1] = ACTIONS(1026), - [aux_sym_declare_statement_token2] = ACTIONS(1026), - [sym_float] = ACTIONS(1026), - [aux_sym_try_statement_token1] = ACTIONS(1026), - [aux_sym_goto_statement_token1] = ACTIONS(1026), - [aux_sym_continue_statement_token1] = ACTIONS(1026), - [aux_sym_break_statement_token1] = ACTIONS(1026), - [sym_integer] = ACTIONS(1026), - [aux_sym_return_statement_token1] = ACTIONS(1026), - [aux_sym_throw_expression_token1] = ACTIONS(1026), - [aux_sym_while_statement_token1] = ACTIONS(1026), - [aux_sym_while_statement_token2] = ACTIONS(1026), - [aux_sym_do_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token1] = ACTIONS(1026), - [aux_sym_for_statement_token2] = ACTIONS(1026), - [aux_sym_foreach_statement_token1] = ACTIONS(1026), - [aux_sym_foreach_statement_token2] = ACTIONS(1026), - [aux_sym_if_statement_token1] = ACTIONS(1026), - [aux_sym_if_statement_token2] = ACTIONS(1026), - [aux_sym_else_if_clause_token1] = ACTIONS(1026), - [aux_sym_else_clause_token1] = ACTIONS(1026), - [aux_sym_match_expression_token1] = ACTIONS(1026), - [aux_sym_match_default_expression_token1] = ACTIONS(1026), - [aux_sym_switch_statement_token1] = ACTIONS(1026), - [aux_sym_switch_block_token1] = ACTIONS(1026), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [aux_sym_clone_expression_token1] = ACTIONS(1026), - [aux_sym_print_intrinsic_token1] = ACTIONS(1026), - [aux_sym_object_creation_expression_token1] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [aux_sym__list_destructing_token1] = ACTIONS(1026), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_self] = ACTIONS(1026), - [anon_sym_parent] = ACTIONS(1026), - [anon_sym_POUND_LBRACK] = ACTIONS(1024), - [anon_sym_SQUOTE] = ACTIONS(1024), - [aux_sym_encapsed_string_token1] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [aux_sym_string_token1] = ACTIONS(1024), - [anon_sym_LT_LT_LT] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [sym_boolean] = ACTIONS(1026), - [sym_null] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1024), - [aux_sym_yield_expression_token1] = ACTIONS(1026), - [aux_sym_include_expression_token1] = ACTIONS(1026), - [aux_sym_include_once_expression_token1] = ACTIONS(1026), - [aux_sym_require_expression_token1] = ACTIONS(1026), - [aux_sym_require_once_expression_token1] = ACTIONS(1026), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [aux_sym_function_static_declaration_token1] = ACTIONS(1054), + [aux_sym_global_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_definition_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1054), + [anon_sym_BSLASH] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_trait_declaration_token1] = ACTIONS(1054), + [aux_sym_interface_declaration_token1] = ACTIONS(1054), + [aux_sym_enum_declaration_token1] = ACTIONS(1054), + [aux_sym_enum_case_token1] = ACTIONS(1054), + [aux_sym_class_declaration_token1] = ACTIONS(1054), + [aux_sym_final_modifier_token1] = ACTIONS(1054), + [aux_sym_abstract_modifier_token1] = ACTIONS(1054), + [aux_sym_readonly_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token2] = ACTIONS(1054), + [aux_sym_visibility_modifier_token3] = ACTIONS(1054), + [aux_sym__arrow_function_header_token1] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1052), + [aux_sym_cast_type_token1] = ACTIONS(1054), + [aux_sym_echo_statement_token1] = ACTIONS(1054), + [anon_sym_unset] = ACTIONS(1054), + [aux_sym_declare_statement_token1] = ACTIONS(1054), + [aux_sym_declare_statement_token2] = ACTIONS(1054), + [sym_float] = ACTIONS(1054), + [aux_sym_try_statement_token1] = ACTIONS(1054), + [aux_sym_goto_statement_token1] = ACTIONS(1054), + [aux_sym_continue_statement_token1] = ACTIONS(1054), + [aux_sym_break_statement_token1] = ACTIONS(1054), + [sym_integer] = ACTIONS(1054), + [aux_sym_return_statement_token1] = ACTIONS(1054), + [aux_sym_throw_expression_token1] = ACTIONS(1054), + [aux_sym_while_statement_token1] = ACTIONS(1054), + [aux_sym_while_statement_token2] = ACTIONS(1054), + [aux_sym_do_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token2] = ACTIONS(1054), + [aux_sym_foreach_statement_token1] = ACTIONS(1054), + [aux_sym_foreach_statement_token2] = ACTIONS(1054), + [aux_sym_if_statement_token1] = ACTIONS(1054), + [aux_sym_if_statement_token2] = ACTIONS(1054), + [aux_sym_else_if_clause_token1] = ACTIONS(1054), + [aux_sym_else_clause_token1] = ACTIONS(1054), + [aux_sym_match_expression_token1] = ACTIONS(1054), + [aux_sym_match_default_expression_token1] = ACTIONS(1054), + [aux_sym_switch_statement_token1] = ACTIONS(1054), + [aux_sym_switch_block_token1] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [aux_sym_clone_expression_token1] = ACTIONS(1054), + [aux_sym_print_intrinsic_token1] = ACTIONS(1054), + [aux_sym_object_creation_expression_token1] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [aux_sym__list_destructing_token1] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_self] = ACTIONS(1054), + [anon_sym_parent] = ACTIONS(1054), + [anon_sym_POUND_LBRACK] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [aux_sym_encapsed_string_token1] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [aux_sym_string_token1] = ACTIONS(1052), + [anon_sym_LT_LT_LT] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [sym_boolean] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [aux_sym_yield_expression_token1] = ACTIONS(1054), + [aux_sym_include_expression_token1] = ACTIONS(1054), + [aux_sym_include_once_expression_token1] = ACTIONS(1054), + [aux_sym_require_expression_token1] = ACTIONS(1054), + [aux_sym_require_once_expression_token1] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1052), }, [445] = { - [sym_text_interpolation] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_name] = ACTIONS(1032), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1034), - [aux_sym_function_static_declaration_token1] = ACTIONS(1032), - [aux_sym_global_declaration_token1] = ACTIONS(1032), - [aux_sym_namespace_definition_token1] = ACTIONS(1032), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1032), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1032), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1032), - [anon_sym_BSLASH] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [aux_sym_trait_declaration_token1] = ACTIONS(1032), - [aux_sym_interface_declaration_token1] = ACTIONS(1032), - [aux_sym_enum_declaration_token1] = ACTIONS(1032), - [aux_sym_enum_case_token1] = ACTIONS(1032), - [aux_sym_class_declaration_token1] = ACTIONS(1032), - [aux_sym_final_modifier_token1] = ACTIONS(1032), - [aux_sym_abstract_modifier_token1] = ACTIONS(1032), - [aux_sym_readonly_modifier_token1] = ACTIONS(1032), - [aux_sym_visibility_modifier_token1] = ACTIONS(1032), - [aux_sym_visibility_modifier_token2] = ACTIONS(1032), - [aux_sym_visibility_modifier_token3] = ACTIONS(1032), - [aux_sym__arrow_function_header_token1] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1030), - [aux_sym_cast_type_token1] = ACTIONS(1032), - [aux_sym_echo_statement_token1] = ACTIONS(1032), - [anon_sym_unset] = ACTIONS(1032), - [aux_sym_declare_statement_token1] = ACTIONS(1032), - [aux_sym_declare_statement_token2] = ACTIONS(1032), - [sym_float] = ACTIONS(1032), - [aux_sym_try_statement_token1] = ACTIONS(1032), - [aux_sym_goto_statement_token1] = ACTIONS(1032), - [aux_sym_continue_statement_token1] = ACTIONS(1032), - [aux_sym_break_statement_token1] = ACTIONS(1032), - [sym_integer] = ACTIONS(1032), - [aux_sym_return_statement_token1] = ACTIONS(1032), - [aux_sym_throw_expression_token1] = ACTIONS(1032), - [aux_sym_while_statement_token1] = ACTIONS(1032), - [aux_sym_while_statement_token2] = ACTIONS(1032), - [aux_sym_do_statement_token1] = ACTIONS(1032), - [aux_sym_for_statement_token1] = ACTIONS(1032), - [aux_sym_for_statement_token2] = ACTIONS(1032), - [aux_sym_foreach_statement_token1] = ACTIONS(1032), - [aux_sym_foreach_statement_token2] = ACTIONS(1032), - [aux_sym_if_statement_token1] = ACTIONS(1032), - [aux_sym_if_statement_token2] = ACTIONS(1032), - [aux_sym_else_if_clause_token1] = ACTIONS(1032), - [aux_sym_else_clause_token1] = ACTIONS(1032), - [aux_sym_match_expression_token1] = ACTIONS(1032), - [aux_sym_match_default_expression_token1] = ACTIONS(1032), - [aux_sym_switch_statement_token1] = ACTIONS(1032), - [aux_sym_switch_block_token1] = ACTIONS(1032), - [anon_sym_AT] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [aux_sym_clone_expression_token1] = ACTIONS(1032), - [aux_sym_print_intrinsic_token1] = ACTIONS(1032), - [aux_sym_object_creation_expression_token1] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [aux_sym__list_destructing_token1] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_self] = ACTIONS(1032), - [anon_sym_parent] = ACTIONS(1032), - [anon_sym_POUND_LBRACK] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [aux_sym_encapsed_string_token1] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [aux_sym_string_token1] = ACTIONS(1030), - [anon_sym_LT_LT_LT] = ACTIONS(1030), - [anon_sym_BQUOTE] = ACTIONS(1030), - [sym_boolean] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1030), - [aux_sym_yield_expression_token1] = ACTIONS(1032), - [aux_sym_include_expression_token1] = ACTIONS(1032), - [aux_sym_include_once_expression_token1] = ACTIONS(1032), - [aux_sym_require_expression_token1] = ACTIONS(1032), - [aux_sym_require_once_expression_token1] = ACTIONS(1032), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1034), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_name] = ACTIONS(1058), + [anon_sym_QMARK_GT] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1060), + [aux_sym_function_static_declaration_token1] = ACTIONS(1058), + [aux_sym_global_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_definition_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1058), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [aux_sym_trait_declaration_token1] = ACTIONS(1058), + [aux_sym_interface_declaration_token1] = ACTIONS(1058), + [aux_sym_enum_declaration_token1] = ACTIONS(1058), + [aux_sym_enum_case_token1] = ACTIONS(1058), + [aux_sym_class_declaration_token1] = ACTIONS(1058), + [aux_sym_final_modifier_token1] = ACTIONS(1058), + [aux_sym_abstract_modifier_token1] = ACTIONS(1058), + [aux_sym_readonly_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token1] = ACTIONS(1058), + [aux_sym_visibility_modifier_token2] = ACTIONS(1058), + [aux_sym_visibility_modifier_token3] = ACTIONS(1058), + [aux_sym__arrow_function_header_token1] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1056), + [aux_sym_cast_type_token1] = ACTIONS(1058), + [aux_sym_echo_statement_token1] = ACTIONS(1058), + [anon_sym_unset] = ACTIONS(1058), + [aux_sym_declare_statement_token1] = ACTIONS(1058), + [aux_sym_declare_statement_token2] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [aux_sym_try_statement_token1] = ACTIONS(1058), + [aux_sym_goto_statement_token1] = ACTIONS(1058), + [aux_sym_continue_statement_token1] = ACTIONS(1058), + [aux_sym_break_statement_token1] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [aux_sym_return_statement_token1] = ACTIONS(1058), + [aux_sym_throw_expression_token1] = ACTIONS(1058), + [aux_sym_while_statement_token1] = ACTIONS(1058), + [aux_sym_while_statement_token2] = ACTIONS(1058), + [aux_sym_do_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token1] = ACTIONS(1058), + [aux_sym_for_statement_token2] = ACTIONS(1058), + [aux_sym_foreach_statement_token1] = ACTIONS(1058), + [aux_sym_foreach_statement_token2] = ACTIONS(1058), + [aux_sym_if_statement_token1] = ACTIONS(1058), + [aux_sym_if_statement_token2] = ACTIONS(1058), + [aux_sym_else_if_clause_token1] = ACTIONS(1058), + [aux_sym_else_clause_token1] = ACTIONS(1058), + [aux_sym_match_expression_token1] = ACTIONS(1058), + [aux_sym_match_default_expression_token1] = ACTIONS(1058), + [aux_sym_switch_statement_token1] = ACTIONS(1058), + [aux_sym_switch_block_token1] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1056), + [aux_sym_clone_expression_token1] = ACTIONS(1058), + [aux_sym_print_intrinsic_token1] = ACTIONS(1058), + [aux_sym_object_creation_expression_token1] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [aux_sym__list_destructing_token1] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_self] = ACTIONS(1058), + [anon_sym_parent] = ACTIONS(1058), + [anon_sym_POUND_LBRACK] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1056), + [aux_sym_encapsed_string_token1] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [aux_sym_string_token1] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_BQUOTE] = ACTIONS(1056), + [sym_boolean] = ACTIONS(1058), + [sym_null] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1056), + [aux_sym_yield_expression_token1] = ACTIONS(1058), + [aux_sym_include_expression_token1] = ACTIONS(1058), + [aux_sym_include_once_expression_token1] = ACTIONS(1058), + [aux_sym_require_expression_token1] = ACTIONS(1058), + [aux_sym_require_once_expression_token1] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1060), }, [446] = { - [sym_text_interpolation] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1036), - [sym_name] = ACTIONS(1038), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1040), - [aux_sym_function_static_declaration_token1] = ACTIONS(1038), - [aux_sym_global_declaration_token1] = ACTIONS(1038), - [aux_sym_namespace_definition_token1] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1038), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1038), - [anon_sym_BSLASH] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [aux_sym_trait_declaration_token1] = ACTIONS(1038), - [aux_sym_interface_declaration_token1] = ACTIONS(1038), - [aux_sym_enum_declaration_token1] = ACTIONS(1038), - [aux_sym_enum_case_token1] = ACTIONS(1038), - [aux_sym_class_declaration_token1] = ACTIONS(1038), - [aux_sym_final_modifier_token1] = ACTIONS(1038), - [aux_sym_abstract_modifier_token1] = ACTIONS(1038), - [aux_sym_readonly_modifier_token1] = ACTIONS(1038), - [aux_sym_visibility_modifier_token1] = ACTIONS(1038), - [aux_sym_visibility_modifier_token2] = ACTIONS(1038), - [aux_sym_visibility_modifier_token3] = ACTIONS(1038), - [aux_sym__arrow_function_header_token1] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1036), - [aux_sym_cast_type_token1] = ACTIONS(1038), - [aux_sym_echo_statement_token1] = ACTIONS(1038), - [anon_sym_unset] = ACTIONS(1038), - [aux_sym_declare_statement_token1] = ACTIONS(1038), - [aux_sym_declare_statement_token2] = ACTIONS(1038), - [sym_float] = ACTIONS(1038), - [aux_sym_try_statement_token1] = ACTIONS(1038), - [aux_sym_goto_statement_token1] = ACTIONS(1038), - [aux_sym_continue_statement_token1] = ACTIONS(1038), - [aux_sym_break_statement_token1] = ACTIONS(1038), - [sym_integer] = ACTIONS(1038), - [aux_sym_return_statement_token1] = ACTIONS(1038), - [aux_sym_throw_expression_token1] = ACTIONS(1038), - [aux_sym_while_statement_token1] = ACTIONS(1038), - [aux_sym_while_statement_token2] = ACTIONS(1038), - [aux_sym_do_statement_token1] = ACTIONS(1038), - [aux_sym_for_statement_token1] = ACTIONS(1038), - [aux_sym_for_statement_token2] = ACTIONS(1038), - [aux_sym_foreach_statement_token1] = ACTIONS(1038), - [aux_sym_foreach_statement_token2] = ACTIONS(1038), - [aux_sym_if_statement_token1] = ACTIONS(1038), - [aux_sym_if_statement_token2] = ACTIONS(1038), - [aux_sym_else_if_clause_token1] = ACTIONS(1038), - [aux_sym_else_clause_token1] = ACTIONS(1038), - [aux_sym_match_expression_token1] = ACTIONS(1038), - [aux_sym_match_default_expression_token1] = ACTIONS(1038), - [aux_sym_switch_statement_token1] = ACTIONS(1038), - [aux_sym_switch_block_token1] = ACTIONS(1038), - [anon_sym_AT] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [aux_sym_clone_expression_token1] = ACTIONS(1038), - [aux_sym_print_intrinsic_token1] = ACTIONS(1038), - [aux_sym_object_creation_expression_token1] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [aux_sym__list_destructing_token1] = ACTIONS(1038), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_self] = ACTIONS(1038), - [anon_sym_parent] = ACTIONS(1038), - [anon_sym_POUND_LBRACK] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1036), - [aux_sym_encapsed_string_token1] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [aux_sym_string_token1] = ACTIONS(1036), - [anon_sym_LT_LT_LT] = ACTIONS(1036), - [anon_sym_BQUOTE] = ACTIONS(1036), - [sym_boolean] = ACTIONS(1038), - [sym_null] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1036), - [aux_sym_yield_expression_token1] = ACTIONS(1038), - [aux_sym_include_expression_token1] = ACTIONS(1038), - [aux_sym_include_once_expression_token1] = ACTIONS(1038), - [aux_sym_require_expression_token1] = ACTIONS(1038), - [aux_sym_require_once_expression_token1] = ACTIONS(1038), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1040), + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_name] = ACTIONS(1064), + [anon_sym_QMARK_GT] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1066), + [aux_sym_function_static_declaration_token1] = ACTIONS(1064), + [aux_sym_global_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_definition_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1064), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1064), + [anon_sym_BSLASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [aux_sym_trait_declaration_token1] = ACTIONS(1064), + [aux_sym_interface_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_declaration_token1] = ACTIONS(1064), + [aux_sym_enum_case_token1] = ACTIONS(1064), + [aux_sym_class_declaration_token1] = ACTIONS(1064), + [aux_sym_final_modifier_token1] = ACTIONS(1064), + [aux_sym_abstract_modifier_token1] = ACTIONS(1064), + [aux_sym_readonly_modifier_token1] = ACTIONS(1064), + [aux_sym_visibility_modifier_token1] = ACTIONS(1064), + [aux_sym_visibility_modifier_token2] = ACTIONS(1064), + [aux_sym_visibility_modifier_token3] = ACTIONS(1064), + [aux_sym__arrow_function_header_token1] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1062), + [aux_sym_cast_type_token1] = ACTIONS(1064), + [aux_sym_echo_statement_token1] = ACTIONS(1064), + [anon_sym_unset] = ACTIONS(1064), + [aux_sym_declare_statement_token1] = ACTIONS(1064), + [aux_sym_declare_statement_token2] = ACTIONS(1064), + [sym_float] = ACTIONS(1064), + [aux_sym_try_statement_token1] = ACTIONS(1064), + [aux_sym_goto_statement_token1] = ACTIONS(1064), + [aux_sym_continue_statement_token1] = ACTIONS(1064), + [aux_sym_break_statement_token1] = ACTIONS(1064), + [sym_integer] = ACTIONS(1064), + [aux_sym_return_statement_token1] = ACTIONS(1064), + [aux_sym_throw_expression_token1] = ACTIONS(1064), + [aux_sym_while_statement_token1] = ACTIONS(1064), + [aux_sym_while_statement_token2] = ACTIONS(1064), + [aux_sym_do_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token1] = ACTIONS(1064), + [aux_sym_for_statement_token2] = ACTIONS(1064), + [aux_sym_foreach_statement_token1] = ACTIONS(1064), + [aux_sym_foreach_statement_token2] = ACTIONS(1064), + [aux_sym_if_statement_token1] = ACTIONS(1064), + [aux_sym_if_statement_token2] = ACTIONS(1064), + [aux_sym_else_if_clause_token1] = ACTIONS(1064), + [aux_sym_else_clause_token1] = ACTIONS(1064), + [aux_sym_match_expression_token1] = ACTIONS(1064), + [aux_sym_match_default_expression_token1] = ACTIONS(1064), + [aux_sym_switch_statement_token1] = ACTIONS(1064), + [aux_sym_switch_block_token1] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [aux_sym_clone_expression_token1] = ACTIONS(1064), + [aux_sym_print_intrinsic_token1] = ACTIONS(1064), + [aux_sym_object_creation_expression_token1] = ACTIONS(1064), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [aux_sym__list_destructing_token1] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_self] = ACTIONS(1064), + [anon_sym_parent] = ACTIONS(1064), + [anon_sym_POUND_LBRACK] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [aux_sym_encapsed_string_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [aux_sym_string_token1] = ACTIONS(1062), + [anon_sym_LT_LT_LT] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [sym_boolean] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1062), + [aux_sym_yield_expression_token1] = ACTIONS(1064), + [aux_sym_include_expression_token1] = ACTIONS(1064), + [aux_sym_include_once_expression_token1] = ACTIONS(1064), + [aux_sym_require_expression_token1] = ACTIONS(1064), + [aux_sym_require_once_expression_token1] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1066), }, [447] = { - [sym_text_interpolation] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_name] = ACTIONS(1044), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1046), - [aux_sym_function_static_declaration_token1] = ACTIONS(1044), - [aux_sym_global_declaration_token1] = ACTIONS(1044), - [aux_sym_namespace_definition_token1] = ACTIONS(1044), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1044), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1044), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1044), - [anon_sym_BSLASH] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [aux_sym_trait_declaration_token1] = ACTIONS(1044), - [aux_sym_interface_declaration_token1] = ACTIONS(1044), - [aux_sym_enum_declaration_token1] = ACTIONS(1044), - [aux_sym_enum_case_token1] = ACTIONS(1044), - [aux_sym_class_declaration_token1] = ACTIONS(1044), - [aux_sym_final_modifier_token1] = ACTIONS(1044), - [aux_sym_abstract_modifier_token1] = ACTIONS(1044), - [aux_sym_readonly_modifier_token1] = ACTIONS(1044), - [aux_sym_visibility_modifier_token1] = ACTIONS(1044), - [aux_sym_visibility_modifier_token2] = ACTIONS(1044), - [aux_sym_visibility_modifier_token3] = ACTIONS(1044), - [aux_sym__arrow_function_header_token1] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1042), - [aux_sym_cast_type_token1] = ACTIONS(1044), - [aux_sym_echo_statement_token1] = ACTIONS(1044), - [anon_sym_unset] = ACTIONS(1044), - [aux_sym_declare_statement_token1] = ACTIONS(1044), - [aux_sym_declare_statement_token2] = ACTIONS(1044), - [sym_float] = ACTIONS(1044), - [aux_sym_try_statement_token1] = ACTIONS(1044), - [aux_sym_goto_statement_token1] = ACTIONS(1044), - [aux_sym_continue_statement_token1] = ACTIONS(1044), - [aux_sym_break_statement_token1] = ACTIONS(1044), - [sym_integer] = ACTIONS(1044), - [aux_sym_return_statement_token1] = ACTIONS(1044), - [aux_sym_throw_expression_token1] = ACTIONS(1044), - [aux_sym_while_statement_token1] = ACTIONS(1044), - [aux_sym_while_statement_token2] = ACTIONS(1044), - [aux_sym_do_statement_token1] = ACTIONS(1044), - [aux_sym_for_statement_token1] = ACTIONS(1044), - [aux_sym_for_statement_token2] = ACTIONS(1044), - [aux_sym_foreach_statement_token1] = ACTIONS(1044), - [aux_sym_foreach_statement_token2] = ACTIONS(1044), - [aux_sym_if_statement_token1] = ACTIONS(1044), - [aux_sym_if_statement_token2] = ACTIONS(1044), - [aux_sym_else_if_clause_token1] = ACTIONS(1044), - [aux_sym_else_clause_token1] = ACTIONS(1044), - [aux_sym_match_expression_token1] = ACTIONS(1044), - [aux_sym_match_default_expression_token1] = ACTIONS(1044), - [aux_sym_switch_statement_token1] = ACTIONS(1044), - [aux_sym_switch_block_token1] = ACTIONS(1044), - [anon_sym_AT] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [aux_sym_clone_expression_token1] = ACTIONS(1044), - [aux_sym_print_intrinsic_token1] = ACTIONS(1044), - [aux_sym_object_creation_expression_token1] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [aux_sym__list_destructing_token1] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_self] = ACTIONS(1044), - [anon_sym_parent] = ACTIONS(1044), - [anon_sym_POUND_LBRACK] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [aux_sym_encapsed_string_token1] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [aux_sym_string_token1] = ACTIONS(1042), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(1042), - [sym_boolean] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1042), - [aux_sym_yield_expression_token1] = ACTIONS(1044), - [aux_sym_include_expression_token1] = ACTIONS(1044), - [aux_sym_include_once_expression_token1] = ACTIONS(1044), - [aux_sym_require_expression_token1] = ACTIONS(1044), - [aux_sym_require_once_expression_token1] = ACTIONS(1044), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1046), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_name] = ACTIONS(1070), + [anon_sym_QMARK_GT] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1072), + [aux_sym_function_static_declaration_token1] = ACTIONS(1070), + [aux_sym_global_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_definition_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1070), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1070), + [anon_sym_BSLASH] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [aux_sym_trait_declaration_token1] = ACTIONS(1070), + [aux_sym_interface_declaration_token1] = ACTIONS(1070), + [aux_sym_enum_declaration_token1] = ACTIONS(1070), + [aux_sym_enum_case_token1] = ACTIONS(1070), + [aux_sym_class_declaration_token1] = ACTIONS(1070), + [aux_sym_final_modifier_token1] = ACTIONS(1070), + [aux_sym_abstract_modifier_token1] = ACTIONS(1070), + [aux_sym_readonly_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token1] = ACTIONS(1070), + [aux_sym_visibility_modifier_token2] = ACTIONS(1070), + [aux_sym_visibility_modifier_token3] = ACTIONS(1070), + [aux_sym__arrow_function_header_token1] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1068), + [aux_sym_cast_type_token1] = ACTIONS(1070), + [aux_sym_echo_statement_token1] = ACTIONS(1070), + [anon_sym_unset] = ACTIONS(1070), + [aux_sym_declare_statement_token1] = ACTIONS(1070), + [aux_sym_declare_statement_token2] = ACTIONS(1070), + [sym_float] = ACTIONS(1070), + [aux_sym_try_statement_token1] = ACTIONS(1070), + [aux_sym_goto_statement_token1] = ACTIONS(1070), + [aux_sym_continue_statement_token1] = ACTIONS(1070), + [aux_sym_break_statement_token1] = ACTIONS(1070), + [sym_integer] = ACTIONS(1070), + [aux_sym_return_statement_token1] = ACTIONS(1070), + [aux_sym_throw_expression_token1] = ACTIONS(1070), + [aux_sym_while_statement_token1] = ACTIONS(1070), + [aux_sym_while_statement_token2] = ACTIONS(1070), + [aux_sym_do_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token1] = ACTIONS(1070), + [aux_sym_for_statement_token2] = ACTIONS(1070), + [aux_sym_foreach_statement_token1] = ACTIONS(1070), + [aux_sym_foreach_statement_token2] = ACTIONS(1070), + [aux_sym_if_statement_token1] = ACTIONS(1070), + [aux_sym_if_statement_token2] = ACTIONS(1070), + [aux_sym_else_if_clause_token1] = ACTIONS(1070), + [aux_sym_else_clause_token1] = ACTIONS(1070), + [aux_sym_match_expression_token1] = ACTIONS(1070), + [aux_sym_match_default_expression_token1] = ACTIONS(1070), + [aux_sym_switch_statement_token1] = ACTIONS(1070), + [aux_sym_switch_block_token1] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1068), + [aux_sym_clone_expression_token1] = ACTIONS(1070), + [aux_sym_print_intrinsic_token1] = ACTIONS(1070), + [aux_sym_object_creation_expression_token1] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [aux_sym__list_destructing_token1] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_self] = ACTIONS(1070), + [anon_sym_parent] = ACTIONS(1070), + [anon_sym_POUND_LBRACK] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [aux_sym_encapsed_string_token1] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [aux_sym_string_token1] = ACTIONS(1068), + [anon_sym_LT_LT_LT] = ACTIONS(1068), + [anon_sym_BQUOTE] = ACTIONS(1068), + [sym_boolean] = ACTIONS(1070), + [sym_null] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1068), + [aux_sym_yield_expression_token1] = ACTIONS(1070), + [aux_sym_include_expression_token1] = ACTIONS(1070), + [aux_sym_include_once_expression_token1] = ACTIONS(1070), + [aux_sym_require_expression_token1] = ACTIONS(1070), + [aux_sym_require_once_expression_token1] = ACTIONS(1070), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1072), }, [448] = { - [sym_text_interpolation] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_name] = ACTIONS(1050), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1052), - [aux_sym_function_static_declaration_token1] = ACTIONS(1050), - [aux_sym_global_declaration_token1] = ACTIONS(1050), - [aux_sym_namespace_definition_token1] = ACTIONS(1050), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1050), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1050), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1050), - [anon_sym_BSLASH] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [aux_sym_trait_declaration_token1] = ACTIONS(1050), - [aux_sym_interface_declaration_token1] = ACTIONS(1050), - [aux_sym_enum_declaration_token1] = ACTIONS(1050), - [aux_sym_enum_case_token1] = ACTIONS(1050), - [aux_sym_class_declaration_token1] = ACTIONS(1050), - [aux_sym_final_modifier_token1] = ACTIONS(1050), - [aux_sym_abstract_modifier_token1] = ACTIONS(1050), - [aux_sym_readonly_modifier_token1] = ACTIONS(1050), - [aux_sym_visibility_modifier_token1] = ACTIONS(1050), - [aux_sym_visibility_modifier_token2] = ACTIONS(1050), - [aux_sym_visibility_modifier_token3] = ACTIONS(1050), - [aux_sym__arrow_function_header_token1] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1048), - [aux_sym_cast_type_token1] = ACTIONS(1050), - [aux_sym_echo_statement_token1] = ACTIONS(1050), - [anon_sym_unset] = ACTIONS(1050), - [aux_sym_declare_statement_token1] = ACTIONS(1050), - [aux_sym_declare_statement_token2] = ACTIONS(1050), - [sym_float] = ACTIONS(1050), - [aux_sym_try_statement_token1] = ACTIONS(1050), - [aux_sym_goto_statement_token1] = ACTIONS(1050), - [aux_sym_continue_statement_token1] = ACTIONS(1050), - [aux_sym_break_statement_token1] = ACTIONS(1050), - [sym_integer] = ACTIONS(1050), - [aux_sym_return_statement_token1] = ACTIONS(1050), - [aux_sym_throw_expression_token1] = ACTIONS(1050), - [aux_sym_while_statement_token1] = ACTIONS(1050), - [aux_sym_while_statement_token2] = ACTIONS(1050), - [aux_sym_do_statement_token1] = ACTIONS(1050), - [aux_sym_for_statement_token1] = ACTIONS(1050), - [aux_sym_for_statement_token2] = ACTIONS(1050), - [aux_sym_foreach_statement_token1] = ACTIONS(1050), - [aux_sym_foreach_statement_token2] = ACTIONS(1050), - [aux_sym_if_statement_token1] = ACTIONS(1050), - [aux_sym_if_statement_token2] = ACTIONS(1050), - [aux_sym_else_if_clause_token1] = ACTIONS(1050), - [aux_sym_else_clause_token1] = ACTIONS(1050), - [aux_sym_match_expression_token1] = ACTIONS(1050), - [aux_sym_match_default_expression_token1] = ACTIONS(1050), - [aux_sym_switch_statement_token1] = ACTIONS(1050), - [aux_sym_switch_block_token1] = ACTIONS(1050), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1048), - [aux_sym_clone_expression_token1] = ACTIONS(1050), - [aux_sym_print_intrinsic_token1] = ACTIONS(1050), - [aux_sym_object_creation_expression_token1] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [aux_sym__list_destructing_token1] = ACTIONS(1050), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_self] = ACTIONS(1050), - [anon_sym_parent] = ACTIONS(1050), - [anon_sym_POUND_LBRACK] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1048), - [aux_sym_encapsed_string_token1] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [aux_sym_string_token1] = ACTIONS(1048), - [anon_sym_LT_LT_LT] = ACTIONS(1048), - [anon_sym_BQUOTE] = ACTIONS(1048), - [sym_boolean] = ACTIONS(1050), - [sym_null] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1048), - [aux_sym_yield_expression_token1] = ACTIONS(1050), - [aux_sym_include_expression_token1] = ACTIONS(1050), - [aux_sym_include_once_expression_token1] = ACTIONS(1050), - [aux_sym_require_expression_token1] = ACTIONS(1050), - [aux_sym_require_once_expression_token1] = ACTIONS(1050), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1052), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_name] = ACTIONS(1076), + [anon_sym_QMARK_GT] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1078), + [aux_sym_function_static_declaration_token1] = ACTIONS(1076), + [aux_sym_global_declaration_token1] = ACTIONS(1076), + [aux_sym_namespace_definition_token1] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1076), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1076), + [anon_sym_BSLASH] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [aux_sym_trait_declaration_token1] = ACTIONS(1076), + [aux_sym_interface_declaration_token1] = ACTIONS(1076), + [aux_sym_enum_declaration_token1] = ACTIONS(1076), + [aux_sym_enum_case_token1] = ACTIONS(1076), + [aux_sym_class_declaration_token1] = ACTIONS(1076), + [aux_sym_final_modifier_token1] = ACTIONS(1076), + [aux_sym_abstract_modifier_token1] = ACTIONS(1076), + [aux_sym_readonly_modifier_token1] = ACTIONS(1076), + [aux_sym_visibility_modifier_token1] = ACTIONS(1076), + [aux_sym_visibility_modifier_token2] = ACTIONS(1076), + [aux_sym_visibility_modifier_token3] = ACTIONS(1076), + [aux_sym__arrow_function_header_token1] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1074), + [aux_sym_cast_type_token1] = ACTIONS(1076), + [aux_sym_echo_statement_token1] = ACTIONS(1076), + [anon_sym_unset] = ACTIONS(1076), + [aux_sym_declare_statement_token1] = ACTIONS(1076), + [aux_sym_declare_statement_token2] = ACTIONS(1076), + [sym_float] = ACTIONS(1076), + [aux_sym_try_statement_token1] = ACTIONS(1076), + [aux_sym_goto_statement_token1] = ACTIONS(1076), + [aux_sym_continue_statement_token1] = ACTIONS(1076), + [aux_sym_break_statement_token1] = ACTIONS(1076), + [sym_integer] = ACTIONS(1076), + [aux_sym_return_statement_token1] = ACTIONS(1076), + [aux_sym_throw_expression_token1] = ACTIONS(1076), + [aux_sym_while_statement_token1] = ACTIONS(1076), + [aux_sym_while_statement_token2] = ACTIONS(1076), + [aux_sym_do_statement_token1] = ACTIONS(1076), + [aux_sym_for_statement_token1] = ACTIONS(1076), + [aux_sym_for_statement_token2] = ACTIONS(1076), + [aux_sym_foreach_statement_token1] = ACTIONS(1076), + [aux_sym_foreach_statement_token2] = ACTIONS(1076), + [aux_sym_if_statement_token1] = ACTIONS(1076), + [aux_sym_if_statement_token2] = ACTIONS(1076), + [aux_sym_else_if_clause_token1] = ACTIONS(1076), + [aux_sym_else_clause_token1] = ACTIONS(1076), + [aux_sym_match_expression_token1] = ACTIONS(1076), + [aux_sym_match_default_expression_token1] = ACTIONS(1076), + [aux_sym_switch_statement_token1] = ACTIONS(1076), + [aux_sym_switch_block_token1] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [aux_sym_clone_expression_token1] = ACTIONS(1076), + [aux_sym_print_intrinsic_token1] = ACTIONS(1076), + [aux_sym_object_creation_expression_token1] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [aux_sym__list_destructing_token1] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_self] = ACTIONS(1076), + [anon_sym_parent] = ACTIONS(1076), + [anon_sym_POUND_LBRACK] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [aux_sym_encapsed_string_token1] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [aux_sym_string_token1] = ACTIONS(1074), + [anon_sym_LT_LT_LT] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [sym_boolean] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1074), + [aux_sym_yield_expression_token1] = ACTIONS(1076), + [aux_sym_include_expression_token1] = ACTIONS(1076), + [aux_sym_include_once_expression_token1] = ACTIONS(1076), + [aux_sym_require_expression_token1] = ACTIONS(1076), + [aux_sym_require_once_expression_token1] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1078), }, [449] = { - [sym_text_interpolation] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_name] = ACTIONS(1056), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1058), - [aux_sym_function_static_declaration_token1] = ACTIONS(1056), - [aux_sym_global_declaration_token1] = ACTIONS(1056), - [aux_sym_namespace_definition_token1] = ACTIONS(1056), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1056), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1056), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1056), - [anon_sym_BSLASH] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [aux_sym_trait_declaration_token1] = ACTIONS(1056), - [aux_sym_interface_declaration_token1] = ACTIONS(1056), - [aux_sym_enum_declaration_token1] = ACTIONS(1056), - [aux_sym_enum_case_token1] = ACTIONS(1056), - [aux_sym_class_declaration_token1] = ACTIONS(1056), - [aux_sym_final_modifier_token1] = ACTIONS(1056), - [aux_sym_abstract_modifier_token1] = ACTIONS(1056), - [aux_sym_readonly_modifier_token1] = ACTIONS(1056), - [aux_sym_visibility_modifier_token1] = ACTIONS(1056), - [aux_sym_visibility_modifier_token2] = ACTIONS(1056), - [aux_sym_visibility_modifier_token3] = ACTIONS(1056), - [aux_sym__arrow_function_header_token1] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1054), - [aux_sym_cast_type_token1] = ACTIONS(1056), - [aux_sym_echo_statement_token1] = ACTIONS(1056), - [anon_sym_unset] = ACTIONS(1056), - [aux_sym_declare_statement_token1] = ACTIONS(1056), - [aux_sym_declare_statement_token2] = ACTIONS(1056), - [sym_float] = ACTIONS(1056), - [aux_sym_try_statement_token1] = ACTIONS(1056), - [aux_sym_goto_statement_token1] = ACTIONS(1056), - [aux_sym_continue_statement_token1] = ACTIONS(1056), - [aux_sym_break_statement_token1] = ACTIONS(1056), - [sym_integer] = ACTIONS(1056), - [aux_sym_return_statement_token1] = ACTIONS(1056), - [aux_sym_throw_expression_token1] = ACTIONS(1056), - [aux_sym_while_statement_token1] = ACTIONS(1056), - [aux_sym_while_statement_token2] = ACTIONS(1056), - [aux_sym_do_statement_token1] = ACTIONS(1056), - [aux_sym_for_statement_token1] = ACTIONS(1056), - [aux_sym_for_statement_token2] = ACTIONS(1056), - [aux_sym_foreach_statement_token1] = ACTIONS(1056), - [aux_sym_foreach_statement_token2] = ACTIONS(1056), - [aux_sym_if_statement_token1] = ACTIONS(1056), - [aux_sym_if_statement_token2] = ACTIONS(1056), - [aux_sym_else_if_clause_token1] = ACTIONS(1056), - [aux_sym_else_clause_token1] = ACTIONS(1056), - [aux_sym_match_expression_token1] = ACTIONS(1056), - [aux_sym_match_default_expression_token1] = ACTIONS(1056), - [aux_sym_switch_statement_token1] = ACTIONS(1056), - [aux_sym_switch_block_token1] = ACTIONS(1056), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [aux_sym_clone_expression_token1] = ACTIONS(1056), - [aux_sym_print_intrinsic_token1] = ACTIONS(1056), - [aux_sym_object_creation_expression_token1] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [aux_sym__list_destructing_token1] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_self] = ACTIONS(1056), - [anon_sym_parent] = ACTIONS(1056), - [anon_sym_POUND_LBRACK] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [aux_sym_encapsed_string_token1] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [aux_sym_string_token1] = ACTIONS(1054), - [anon_sym_LT_LT_LT] = ACTIONS(1054), - [anon_sym_BQUOTE] = ACTIONS(1054), - [sym_boolean] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1054), - [aux_sym_yield_expression_token1] = ACTIONS(1056), - [aux_sym_include_expression_token1] = ACTIONS(1056), - [aux_sym_include_once_expression_token1] = ACTIONS(1056), - [aux_sym_require_expression_token1] = ACTIONS(1056), - [aux_sym_require_once_expression_token1] = ACTIONS(1056), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1058), + [ts_builtin_sym_end] = ACTIONS(1080), + [sym_name] = ACTIONS(1082), + [anon_sym_QMARK_GT] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1084), + [aux_sym_function_static_declaration_token1] = ACTIONS(1082), + [aux_sym_global_declaration_token1] = ACTIONS(1082), + [aux_sym_namespace_definition_token1] = ACTIONS(1082), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1082), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1082), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1082), + [anon_sym_BSLASH] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [aux_sym_trait_declaration_token1] = ACTIONS(1082), + [aux_sym_interface_declaration_token1] = ACTIONS(1082), + [aux_sym_enum_declaration_token1] = ACTIONS(1082), + [aux_sym_enum_case_token1] = ACTIONS(1082), + [aux_sym_class_declaration_token1] = ACTIONS(1082), + [aux_sym_final_modifier_token1] = ACTIONS(1082), + [aux_sym_abstract_modifier_token1] = ACTIONS(1082), + [aux_sym_readonly_modifier_token1] = ACTIONS(1082), + [aux_sym_visibility_modifier_token1] = ACTIONS(1082), + [aux_sym_visibility_modifier_token2] = ACTIONS(1082), + [aux_sym_visibility_modifier_token3] = ACTIONS(1082), + [aux_sym__arrow_function_header_token1] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [aux_sym_cast_type_token1] = ACTIONS(1082), + [aux_sym_echo_statement_token1] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [aux_sym_declare_statement_token1] = ACTIONS(1082), + [aux_sym_declare_statement_token2] = ACTIONS(1082), + [sym_float] = ACTIONS(1082), + [aux_sym_try_statement_token1] = ACTIONS(1082), + [aux_sym_goto_statement_token1] = ACTIONS(1082), + [aux_sym_continue_statement_token1] = ACTIONS(1082), + [aux_sym_break_statement_token1] = ACTIONS(1082), + [sym_integer] = ACTIONS(1082), + [aux_sym_return_statement_token1] = ACTIONS(1082), + [aux_sym_throw_expression_token1] = ACTIONS(1082), + [aux_sym_while_statement_token1] = ACTIONS(1082), + [aux_sym_while_statement_token2] = ACTIONS(1082), + [aux_sym_do_statement_token1] = ACTIONS(1082), + [aux_sym_for_statement_token1] = ACTIONS(1082), + [aux_sym_for_statement_token2] = ACTIONS(1082), + [aux_sym_foreach_statement_token1] = ACTIONS(1082), + [aux_sym_foreach_statement_token2] = ACTIONS(1082), + [aux_sym_if_statement_token1] = ACTIONS(1082), + [aux_sym_if_statement_token2] = ACTIONS(1082), + [aux_sym_else_if_clause_token1] = ACTIONS(1082), + [aux_sym_else_clause_token1] = ACTIONS(1082), + [aux_sym_match_expression_token1] = ACTIONS(1082), + [aux_sym_match_default_expression_token1] = ACTIONS(1082), + [aux_sym_switch_statement_token1] = ACTIONS(1082), + [aux_sym_switch_block_token1] = ACTIONS(1082), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [aux_sym_clone_expression_token1] = ACTIONS(1082), + [aux_sym_print_intrinsic_token1] = ACTIONS(1082), + [aux_sym_object_creation_expression_token1] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [aux_sym__list_destructing_token1] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_self] = ACTIONS(1082), + [anon_sym_parent] = ACTIONS(1082), + [anon_sym_POUND_LBRACK] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [aux_sym_encapsed_string_token1] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [aux_sym_string_token1] = ACTIONS(1080), + [anon_sym_LT_LT_LT] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [sym_boolean] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1080), + [aux_sym_yield_expression_token1] = ACTIONS(1082), + [aux_sym_include_expression_token1] = ACTIONS(1082), + [aux_sym_include_once_expression_token1] = ACTIONS(1082), + [aux_sym_require_expression_token1] = ACTIONS(1082), + [aux_sym_require_once_expression_token1] = ACTIONS(1082), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1084), }, [450] = { - [sym_text_interpolation] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1060), - [sym_name] = ACTIONS(1062), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1064), - [aux_sym_function_static_declaration_token1] = ACTIONS(1062), - [aux_sym_global_declaration_token1] = ACTIONS(1062), - [aux_sym_namespace_definition_token1] = ACTIONS(1062), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1062), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1062), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1062), - [anon_sym_BSLASH] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [aux_sym_trait_declaration_token1] = ACTIONS(1062), - [aux_sym_interface_declaration_token1] = ACTIONS(1062), - [aux_sym_enum_declaration_token1] = ACTIONS(1062), - [aux_sym_enum_case_token1] = ACTIONS(1062), - [aux_sym_class_declaration_token1] = ACTIONS(1062), - [aux_sym_final_modifier_token1] = ACTIONS(1062), - [aux_sym_abstract_modifier_token1] = ACTIONS(1062), - [aux_sym_readonly_modifier_token1] = ACTIONS(1062), - [aux_sym_visibility_modifier_token1] = ACTIONS(1062), - [aux_sym_visibility_modifier_token2] = ACTIONS(1062), - [aux_sym_visibility_modifier_token3] = ACTIONS(1062), - [aux_sym__arrow_function_header_token1] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1060), - [aux_sym_cast_type_token1] = ACTIONS(1062), - [aux_sym_echo_statement_token1] = ACTIONS(1062), - [anon_sym_unset] = ACTIONS(1062), - [aux_sym_declare_statement_token1] = ACTIONS(1062), - [aux_sym_declare_statement_token2] = ACTIONS(1062), - [sym_float] = ACTIONS(1062), - [aux_sym_try_statement_token1] = ACTIONS(1062), - [aux_sym_goto_statement_token1] = ACTIONS(1062), - [aux_sym_continue_statement_token1] = ACTIONS(1062), - [aux_sym_break_statement_token1] = ACTIONS(1062), - [sym_integer] = ACTIONS(1062), - [aux_sym_return_statement_token1] = ACTIONS(1062), - [aux_sym_throw_expression_token1] = ACTIONS(1062), - [aux_sym_while_statement_token1] = ACTIONS(1062), - [aux_sym_while_statement_token2] = ACTIONS(1062), - [aux_sym_do_statement_token1] = ACTIONS(1062), - [aux_sym_for_statement_token1] = ACTIONS(1062), - [aux_sym_for_statement_token2] = ACTIONS(1062), - [aux_sym_foreach_statement_token1] = ACTIONS(1062), - [aux_sym_foreach_statement_token2] = ACTIONS(1062), - [aux_sym_if_statement_token1] = ACTIONS(1062), - [aux_sym_if_statement_token2] = ACTIONS(1062), - [aux_sym_else_if_clause_token1] = ACTIONS(1062), - [aux_sym_else_clause_token1] = ACTIONS(1062), - [aux_sym_match_expression_token1] = ACTIONS(1062), - [aux_sym_match_default_expression_token1] = ACTIONS(1062), - [aux_sym_switch_statement_token1] = ACTIONS(1062), - [aux_sym_switch_block_token1] = ACTIONS(1062), - [anon_sym_AT] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1060), - [aux_sym_clone_expression_token1] = ACTIONS(1062), - [aux_sym_print_intrinsic_token1] = ACTIONS(1062), - [aux_sym_object_creation_expression_token1] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [aux_sym__list_destructing_token1] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_self] = ACTIONS(1062), - [anon_sym_parent] = ACTIONS(1062), - [anon_sym_POUND_LBRACK] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [aux_sym_encapsed_string_token1] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [aux_sym_string_token1] = ACTIONS(1060), - [anon_sym_LT_LT_LT] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1060), - [sym_boolean] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1060), - [aux_sym_yield_expression_token1] = ACTIONS(1062), - [aux_sym_include_expression_token1] = ACTIONS(1062), - [aux_sym_include_once_expression_token1] = ACTIONS(1062), - [aux_sym_require_expression_token1] = ACTIONS(1062), - [aux_sym_require_once_expression_token1] = ACTIONS(1062), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1064), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_name] = ACTIONS(1088), + [anon_sym_QMARK_GT] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1090), + [aux_sym_function_static_declaration_token1] = ACTIONS(1088), + [aux_sym_global_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_definition_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), + [anon_sym_BSLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [aux_sym_trait_declaration_token1] = ACTIONS(1088), + [aux_sym_interface_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_case_token1] = ACTIONS(1088), + [aux_sym_class_declaration_token1] = ACTIONS(1088), + [aux_sym_final_modifier_token1] = ACTIONS(1088), + [aux_sym_abstract_modifier_token1] = ACTIONS(1088), + [aux_sym_readonly_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token2] = ACTIONS(1088), + [aux_sym_visibility_modifier_token3] = ACTIONS(1088), + [aux_sym__arrow_function_header_token1] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [aux_sym_cast_type_token1] = ACTIONS(1088), + [aux_sym_echo_statement_token1] = ACTIONS(1088), + [anon_sym_unset] = ACTIONS(1088), + [aux_sym_declare_statement_token1] = ACTIONS(1088), + [aux_sym_declare_statement_token2] = ACTIONS(1088), + [sym_float] = ACTIONS(1088), + [aux_sym_try_statement_token1] = ACTIONS(1088), + [aux_sym_goto_statement_token1] = ACTIONS(1088), + [aux_sym_continue_statement_token1] = ACTIONS(1088), + [aux_sym_break_statement_token1] = ACTIONS(1088), + [sym_integer] = ACTIONS(1088), + [aux_sym_return_statement_token1] = ACTIONS(1088), + [aux_sym_throw_expression_token1] = ACTIONS(1088), + [aux_sym_while_statement_token1] = ACTIONS(1088), + [aux_sym_while_statement_token2] = ACTIONS(1088), + [aux_sym_do_statement_token1] = ACTIONS(1088), + [aux_sym_for_statement_token1] = ACTIONS(1088), + [aux_sym_for_statement_token2] = ACTIONS(1088), + [aux_sym_foreach_statement_token1] = ACTIONS(1088), + [aux_sym_foreach_statement_token2] = ACTIONS(1088), + [aux_sym_if_statement_token1] = ACTIONS(1088), + [aux_sym_if_statement_token2] = ACTIONS(1088), + [aux_sym_else_if_clause_token1] = ACTIONS(1088), + [aux_sym_else_clause_token1] = ACTIONS(1088), + [aux_sym_match_expression_token1] = ACTIONS(1088), + [aux_sym_match_default_expression_token1] = ACTIONS(1088), + [aux_sym_switch_statement_token1] = ACTIONS(1088), + [aux_sym_switch_block_token1] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [aux_sym_clone_expression_token1] = ACTIONS(1088), + [aux_sym_print_intrinsic_token1] = ACTIONS(1088), + [aux_sym_object_creation_expression_token1] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [aux_sym__list_destructing_token1] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_self] = ACTIONS(1088), + [anon_sym_parent] = ACTIONS(1088), + [anon_sym_POUND_LBRACK] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [aux_sym_encapsed_string_token1] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [aux_sym_string_token1] = ACTIONS(1086), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(1086), + [sym_boolean] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1086), + [aux_sym_yield_expression_token1] = ACTIONS(1088), + [aux_sym_include_expression_token1] = ACTIONS(1088), + [aux_sym_include_once_expression_token1] = ACTIONS(1088), + [aux_sym_require_expression_token1] = ACTIONS(1088), + [aux_sym_require_once_expression_token1] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(1090), }, [451] = { - [sym_text_interpolation] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_name] = ACTIONS(1068), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1070), - [aux_sym_function_static_declaration_token1] = ACTIONS(1068), - [aux_sym_global_declaration_token1] = ACTIONS(1068), - [aux_sym_namespace_definition_token1] = ACTIONS(1068), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1068), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1068), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1068), - [anon_sym_BSLASH] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [aux_sym_trait_declaration_token1] = ACTIONS(1068), - [aux_sym_interface_declaration_token1] = ACTIONS(1068), - [aux_sym_enum_declaration_token1] = ACTIONS(1068), - [aux_sym_enum_case_token1] = ACTIONS(1068), - [aux_sym_class_declaration_token1] = ACTIONS(1068), - [aux_sym_final_modifier_token1] = ACTIONS(1068), - [aux_sym_abstract_modifier_token1] = ACTIONS(1068), - [aux_sym_readonly_modifier_token1] = ACTIONS(1068), - [aux_sym_visibility_modifier_token1] = ACTIONS(1068), - [aux_sym_visibility_modifier_token2] = ACTIONS(1068), - [aux_sym_visibility_modifier_token3] = ACTIONS(1068), - [aux_sym__arrow_function_header_token1] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1066), - [aux_sym_cast_type_token1] = ACTIONS(1068), - [aux_sym_echo_statement_token1] = ACTIONS(1068), - [anon_sym_unset] = ACTIONS(1068), - [aux_sym_declare_statement_token1] = ACTIONS(1068), - [aux_sym_declare_statement_token2] = ACTIONS(1068), - [sym_float] = ACTIONS(1068), - [aux_sym_try_statement_token1] = ACTIONS(1068), - [aux_sym_goto_statement_token1] = ACTIONS(1068), - [aux_sym_continue_statement_token1] = ACTIONS(1068), - [aux_sym_break_statement_token1] = ACTIONS(1068), - [sym_integer] = ACTIONS(1068), - [aux_sym_return_statement_token1] = ACTIONS(1068), - [aux_sym_throw_expression_token1] = ACTIONS(1068), - [aux_sym_while_statement_token1] = ACTIONS(1068), - [aux_sym_while_statement_token2] = ACTIONS(1068), - [aux_sym_do_statement_token1] = ACTIONS(1068), - [aux_sym_for_statement_token1] = ACTIONS(1068), - [aux_sym_for_statement_token2] = ACTIONS(1068), - [aux_sym_foreach_statement_token1] = ACTIONS(1068), - [aux_sym_foreach_statement_token2] = ACTIONS(1068), - [aux_sym_if_statement_token1] = ACTIONS(1068), - [aux_sym_if_statement_token2] = ACTIONS(1068), - [aux_sym_else_if_clause_token1] = ACTIONS(1068), - [aux_sym_else_clause_token1] = ACTIONS(1068), - [aux_sym_match_expression_token1] = ACTIONS(1068), - [aux_sym_match_default_expression_token1] = ACTIONS(1068), - [aux_sym_switch_statement_token1] = ACTIONS(1068), - [aux_sym_switch_block_token1] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [aux_sym_clone_expression_token1] = ACTIONS(1068), - [aux_sym_print_intrinsic_token1] = ACTIONS(1068), - [aux_sym_object_creation_expression_token1] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [aux_sym__list_destructing_token1] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_self] = ACTIONS(1068), - [anon_sym_parent] = ACTIONS(1068), - [anon_sym_POUND_LBRACK] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [aux_sym_encapsed_string_token1] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [aux_sym_string_token1] = ACTIONS(1066), - [anon_sym_LT_LT_LT] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [sym_boolean] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1066), - [aux_sym_yield_expression_token1] = ACTIONS(1068), - [aux_sym_include_expression_token1] = ACTIONS(1068), - [aux_sym_include_once_expression_token1] = ACTIONS(1068), - [aux_sym_require_expression_token1] = ACTIONS(1068), - [aux_sym_require_once_expression_token1] = ACTIONS(1068), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1070), + [sym_qualified_name] = STATE(834), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym_match_expression] = STATE(2402), + [sym__unary_expression] = STATE(1099), + [sym_unary_op_expression] = STATE(1088), + [sym_exponentiation_expression] = STATE(1099), + [sym_clone_expression] = STATE(1088), + [sym__primary_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(807), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_expression] = STATE(1099), + [sym_cast_variable] = STATE(636), + [sym_member_access_expression] = STATE(636), + [sym_nullsafe_member_access_expression] = STATE(636), + [sym_scoped_property_access_expression] = STATE(636), + [sym_function_call_expression] = STATE(600), + [sym_scoped_call_expression] = STATE(600), + [sym__scope_resolution_qualifier] = STATE(2561), + [sym_relative_scope] = STATE(2561), + [sym_member_call_expression] = STATE(600), + [sym_nullsafe_member_call_expression] = STATE(600), + [sym_subscript_expression] = STATE(600), + [sym__dereferencable_expression] = STATE(1686), + [sym_array_creation_expression] = STATE(807), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(807), + [sym_string] = STATE(807), + [sym_heredoc] = STATE(807), + [sym_nowdoc] = STATE(807), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(807), + [sym_dynamic_variable_name] = STATE(600), + [sym_variable_name] = STATE(600), + [sym_include_expression] = STATE(1099), + [sym_include_once_expression] = STATE(1099), + [sym__reserved_identifier] = STATE(1512), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(639), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(49), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(91), + [aux_sym_clone_expression_token1] = ACTIONS(93), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(117), + [aux_sym_include_expression_token1] = ACTIONS(121), + [aux_sym_include_once_expression_token1] = ACTIONS(123), + [sym_comment] = ACTIONS(3), }, [452] = { - [sym_text_interpolation] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1072), - [sym_name] = ACTIONS(1074), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1076), - [aux_sym_function_static_declaration_token1] = ACTIONS(1074), - [aux_sym_global_declaration_token1] = ACTIONS(1074), - [aux_sym_namespace_definition_token1] = ACTIONS(1074), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1074), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1074), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1074), - [anon_sym_BSLASH] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [aux_sym_trait_declaration_token1] = ACTIONS(1074), - [aux_sym_interface_declaration_token1] = ACTIONS(1074), - [aux_sym_enum_declaration_token1] = ACTIONS(1074), - [aux_sym_enum_case_token1] = ACTIONS(1074), - [aux_sym_class_declaration_token1] = ACTIONS(1074), - [aux_sym_final_modifier_token1] = ACTIONS(1074), - [aux_sym_abstract_modifier_token1] = ACTIONS(1074), - [aux_sym_readonly_modifier_token1] = ACTIONS(1074), - [aux_sym_visibility_modifier_token1] = ACTIONS(1074), - [aux_sym_visibility_modifier_token2] = ACTIONS(1074), - [aux_sym_visibility_modifier_token3] = ACTIONS(1074), - [aux_sym__arrow_function_header_token1] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1072), - [aux_sym_cast_type_token1] = ACTIONS(1074), - [aux_sym_echo_statement_token1] = ACTIONS(1074), - [anon_sym_unset] = ACTIONS(1074), - [aux_sym_declare_statement_token1] = ACTIONS(1074), - [aux_sym_declare_statement_token2] = ACTIONS(1074), - [sym_float] = ACTIONS(1074), - [aux_sym_try_statement_token1] = ACTIONS(1074), - [aux_sym_goto_statement_token1] = ACTIONS(1074), - [aux_sym_continue_statement_token1] = ACTIONS(1074), - [aux_sym_break_statement_token1] = ACTIONS(1074), - [sym_integer] = ACTIONS(1074), - [aux_sym_return_statement_token1] = ACTIONS(1074), - [aux_sym_throw_expression_token1] = ACTIONS(1074), - [aux_sym_while_statement_token1] = ACTIONS(1074), - [aux_sym_while_statement_token2] = ACTIONS(1074), - [aux_sym_do_statement_token1] = ACTIONS(1074), - [aux_sym_for_statement_token1] = ACTIONS(1074), - [aux_sym_for_statement_token2] = ACTIONS(1074), - [aux_sym_foreach_statement_token1] = ACTIONS(1074), - [aux_sym_foreach_statement_token2] = ACTIONS(1074), - [aux_sym_if_statement_token1] = ACTIONS(1074), - [aux_sym_if_statement_token2] = ACTIONS(1074), - [aux_sym_else_if_clause_token1] = ACTIONS(1074), - [aux_sym_else_clause_token1] = ACTIONS(1074), - [aux_sym_match_expression_token1] = ACTIONS(1074), - [aux_sym_match_default_expression_token1] = ACTIONS(1074), - [aux_sym_switch_statement_token1] = ACTIONS(1074), - [aux_sym_switch_block_token1] = ACTIONS(1074), - [anon_sym_AT] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [aux_sym_clone_expression_token1] = ACTIONS(1074), - [aux_sym_print_intrinsic_token1] = ACTIONS(1074), - [aux_sym_object_creation_expression_token1] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [aux_sym__list_destructing_token1] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_self] = ACTIONS(1074), - [anon_sym_parent] = ACTIONS(1074), - [anon_sym_POUND_LBRACK] = ACTIONS(1072), - [anon_sym_SQUOTE] = ACTIONS(1072), - [aux_sym_encapsed_string_token1] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [aux_sym_string_token1] = ACTIONS(1072), - [anon_sym_LT_LT_LT] = ACTIONS(1072), - [anon_sym_BQUOTE] = ACTIONS(1072), - [sym_boolean] = ACTIONS(1074), - [sym_null] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1072), - [aux_sym_yield_expression_token1] = ACTIONS(1074), - [aux_sym_include_expression_token1] = ACTIONS(1074), - [aux_sym_include_once_expression_token1] = ACTIONS(1074), - [aux_sym_require_expression_token1] = ACTIONS(1074), - [aux_sym_require_once_expression_token1] = ACTIONS(1074), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1076), - }, - [453] = { - [sym_text_interpolation] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1078), - [sym_name] = ACTIONS(1080), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1078), - [aux_sym_function_static_declaration_token1] = ACTIONS(1080), - [aux_sym_global_declaration_token1] = ACTIONS(1080), - [aux_sym_namespace_definition_token1] = ACTIONS(1080), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1080), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1080), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1080), - [anon_sym_BSLASH] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [aux_sym_trait_declaration_token1] = ACTIONS(1080), - [aux_sym_interface_declaration_token1] = ACTIONS(1080), - [aux_sym_enum_declaration_token1] = ACTIONS(1080), - [aux_sym_enum_case_token1] = ACTIONS(1080), - [aux_sym_class_declaration_token1] = ACTIONS(1080), - [aux_sym_final_modifier_token1] = ACTIONS(1080), - [aux_sym_abstract_modifier_token1] = ACTIONS(1080), - [aux_sym_readonly_modifier_token1] = ACTIONS(1080), - [aux_sym_visibility_modifier_token1] = ACTIONS(1080), - [aux_sym_visibility_modifier_token2] = ACTIONS(1080), - [aux_sym_visibility_modifier_token3] = ACTIONS(1080), - [aux_sym__arrow_function_header_token1] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1078), - [aux_sym_cast_type_token1] = ACTIONS(1080), - [aux_sym_echo_statement_token1] = ACTIONS(1080), - [anon_sym_unset] = ACTIONS(1080), - [aux_sym_declare_statement_token1] = ACTIONS(1080), - [aux_sym_declare_statement_token2] = ACTIONS(1080), - [sym_float] = ACTIONS(1080), - [aux_sym_try_statement_token1] = ACTIONS(1080), - [aux_sym_goto_statement_token1] = ACTIONS(1080), - [aux_sym_continue_statement_token1] = ACTIONS(1080), - [aux_sym_break_statement_token1] = ACTIONS(1080), - [sym_integer] = ACTIONS(1080), - [aux_sym_return_statement_token1] = ACTIONS(1080), - [aux_sym_throw_expression_token1] = ACTIONS(1080), - [aux_sym_while_statement_token1] = ACTIONS(1080), - [aux_sym_while_statement_token2] = ACTIONS(1080), - [aux_sym_do_statement_token1] = ACTIONS(1080), - [aux_sym_for_statement_token1] = ACTIONS(1080), - [aux_sym_for_statement_token2] = ACTIONS(1080), - [aux_sym_foreach_statement_token1] = ACTIONS(1080), - [aux_sym_foreach_statement_token2] = ACTIONS(1080), - [aux_sym_if_statement_token1] = ACTIONS(1080), - [aux_sym_if_statement_token2] = ACTIONS(1080), - [aux_sym_else_if_clause_token1] = ACTIONS(1080), - [aux_sym_else_clause_token1] = ACTIONS(1080), - [aux_sym_match_expression_token1] = ACTIONS(1080), - [aux_sym_match_default_expression_token1] = ACTIONS(1080), - [aux_sym_switch_statement_token1] = ACTIONS(1080), - [aux_sym_switch_block_token1] = ACTIONS(1080), - [anon_sym_AT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [aux_sym_clone_expression_token1] = ACTIONS(1080), - [aux_sym_print_intrinsic_token1] = ACTIONS(1080), - [aux_sym_object_creation_expression_token1] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [aux_sym__list_destructing_token1] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_self] = ACTIONS(1080), - [anon_sym_parent] = ACTIONS(1080), - [anon_sym_POUND_LBRACK] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [aux_sym_encapsed_string_token1] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [aux_sym_string_token1] = ACTIONS(1078), - [anon_sym_LT_LT_LT] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), - [sym_boolean] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1078), - [aux_sym_yield_expression_token1] = ACTIONS(1080), - [aux_sym_include_expression_token1] = ACTIONS(1080), - [aux_sym_include_once_expression_token1] = ACTIONS(1080), - [aux_sym_require_expression_token1] = ACTIONS(1080), - [aux_sym_require_once_expression_token1] = ACTIONS(1080), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1078), - }, - [454] = { - [sym_text_interpolation] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_name] = ACTIONS(1084), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1086), - [aux_sym_function_static_declaration_token1] = ACTIONS(1084), - [aux_sym_global_declaration_token1] = ACTIONS(1084), - [aux_sym_namespace_definition_token1] = ACTIONS(1084), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1084), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1084), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1084), - [anon_sym_BSLASH] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [aux_sym_trait_declaration_token1] = ACTIONS(1084), - [aux_sym_interface_declaration_token1] = ACTIONS(1084), - [aux_sym_enum_declaration_token1] = ACTIONS(1084), - [aux_sym_enum_case_token1] = ACTIONS(1084), - [aux_sym_class_declaration_token1] = ACTIONS(1084), - [aux_sym_final_modifier_token1] = ACTIONS(1084), - [aux_sym_abstract_modifier_token1] = ACTIONS(1084), - [aux_sym_readonly_modifier_token1] = ACTIONS(1084), - [aux_sym_visibility_modifier_token1] = ACTIONS(1084), - [aux_sym_visibility_modifier_token2] = ACTIONS(1084), - [aux_sym_visibility_modifier_token3] = ACTIONS(1084), - [aux_sym__arrow_function_header_token1] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1082), - [aux_sym_cast_type_token1] = ACTIONS(1084), - [aux_sym_echo_statement_token1] = ACTIONS(1084), - [anon_sym_unset] = ACTIONS(1084), - [aux_sym_declare_statement_token1] = ACTIONS(1084), - [aux_sym_declare_statement_token2] = ACTIONS(1084), - [sym_float] = ACTIONS(1084), - [aux_sym_try_statement_token1] = ACTIONS(1084), - [aux_sym_goto_statement_token1] = ACTIONS(1084), - [aux_sym_continue_statement_token1] = ACTIONS(1084), - [aux_sym_break_statement_token1] = ACTIONS(1084), - [sym_integer] = ACTIONS(1084), - [aux_sym_return_statement_token1] = ACTIONS(1084), - [aux_sym_throw_expression_token1] = ACTIONS(1084), - [aux_sym_while_statement_token1] = ACTIONS(1084), - [aux_sym_while_statement_token2] = ACTIONS(1084), - [aux_sym_do_statement_token1] = ACTIONS(1084), - [aux_sym_for_statement_token1] = ACTIONS(1084), - [aux_sym_for_statement_token2] = ACTIONS(1084), - [aux_sym_foreach_statement_token1] = ACTIONS(1084), - [aux_sym_foreach_statement_token2] = ACTIONS(1084), - [aux_sym_if_statement_token1] = ACTIONS(1084), - [aux_sym_if_statement_token2] = ACTIONS(1084), - [aux_sym_else_if_clause_token1] = ACTIONS(1084), - [aux_sym_else_clause_token1] = ACTIONS(1084), - [aux_sym_match_expression_token1] = ACTIONS(1084), - [aux_sym_match_default_expression_token1] = ACTIONS(1084), - [aux_sym_switch_statement_token1] = ACTIONS(1084), - [aux_sym_switch_block_token1] = ACTIONS(1084), - [anon_sym_AT] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [aux_sym_clone_expression_token1] = ACTIONS(1084), - [aux_sym_print_intrinsic_token1] = ACTIONS(1084), - [aux_sym_object_creation_expression_token1] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [aux_sym__list_destructing_token1] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_self] = ACTIONS(1084), - [anon_sym_parent] = ACTIONS(1084), - [anon_sym_POUND_LBRACK] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [aux_sym_encapsed_string_token1] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [aux_sym_string_token1] = ACTIONS(1082), - [anon_sym_LT_LT_LT] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [sym_boolean] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1082), - [aux_sym_yield_expression_token1] = ACTIONS(1084), - [aux_sym_include_expression_token1] = ACTIONS(1084), - [aux_sym_include_once_expression_token1] = ACTIONS(1084), - [aux_sym_require_expression_token1] = ACTIONS(1084), - [aux_sym_require_once_expression_token1] = ACTIONS(1084), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1086), - }, - [455] = { - [sym_text_interpolation] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1088), - [sym_name] = ACTIONS(1090), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1092), - [aux_sym_function_static_declaration_token1] = ACTIONS(1090), - [aux_sym_global_declaration_token1] = ACTIONS(1090), - [aux_sym_namespace_definition_token1] = ACTIONS(1090), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1090), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1090), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1090), - [anon_sym_BSLASH] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [aux_sym_trait_declaration_token1] = ACTIONS(1090), - [aux_sym_interface_declaration_token1] = ACTIONS(1090), - [aux_sym_enum_declaration_token1] = ACTIONS(1090), - [aux_sym_enum_case_token1] = ACTIONS(1090), - [aux_sym_class_declaration_token1] = ACTIONS(1090), - [aux_sym_final_modifier_token1] = ACTIONS(1090), - [aux_sym_abstract_modifier_token1] = ACTIONS(1090), - [aux_sym_readonly_modifier_token1] = ACTIONS(1090), - [aux_sym_visibility_modifier_token1] = ACTIONS(1090), - [aux_sym_visibility_modifier_token2] = ACTIONS(1090), - [aux_sym_visibility_modifier_token3] = ACTIONS(1090), - [aux_sym__arrow_function_header_token1] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1088), - [aux_sym_cast_type_token1] = ACTIONS(1090), - [aux_sym_echo_statement_token1] = ACTIONS(1090), - [anon_sym_unset] = ACTIONS(1090), - [aux_sym_declare_statement_token1] = ACTIONS(1090), - [aux_sym_declare_statement_token2] = ACTIONS(1090), - [sym_float] = ACTIONS(1090), - [aux_sym_try_statement_token1] = ACTIONS(1090), - [aux_sym_goto_statement_token1] = ACTIONS(1090), - [aux_sym_continue_statement_token1] = ACTIONS(1090), - [aux_sym_break_statement_token1] = ACTIONS(1090), - [sym_integer] = ACTIONS(1090), - [aux_sym_return_statement_token1] = ACTIONS(1090), - [aux_sym_throw_expression_token1] = ACTIONS(1090), - [aux_sym_while_statement_token1] = ACTIONS(1090), - [aux_sym_while_statement_token2] = ACTIONS(1090), - [aux_sym_do_statement_token1] = ACTIONS(1090), - [aux_sym_for_statement_token1] = ACTIONS(1090), - [aux_sym_for_statement_token2] = ACTIONS(1090), - [aux_sym_foreach_statement_token1] = ACTIONS(1090), - [aux_sym_foreach_statement_token2] = ACTIONS(1090), - [aux_sym_if_statement_token1] = ACTIONS(1090), - [aux_sym_if_statement_token2] = ACTIONS(1090), - [aux_sym_else_if_clause_token1] = ACTIONS(1090), - [aux_sym_else_clause_token1] = ACTIONS(1090), - [aux_sym_match_expression_token1] = ACTIONS(1090), - [aux_sym_match_default_expression_token1] = ACTIONS(1090), - [aux_sym_switch_statement_token1] = ACTIONS(1090), - [aux_sym_switch_block_token1] = ACTIONS(1090), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [aux_sym_clone_expression_token1] = ACTIONS(1090), - [aux_sym_print_intrinsic_token1] = ACTIONS(1090), - [aux_sym_object_creation_expression_token1] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1088), - [aux_sym__list_destructing_token1] = ACTIONS(1090), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_self] = ACTIONS(1090), - [anon_sym_parent] = ACTIONS(1090), - [anon_sym_POUND_LBRACK] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [aux_sym_encapsed_string_token1] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [aux_sym_string_token1] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_boolean] = ACTIONS(1090), - [sym_null] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1088), - [aux_sym_yield_expression_token1] = ACTIONS(1090), - [aux_sym_include_expression_token1] = ACTIONS(1090), - [aux_sym_include_once_expression_token1] = ACTIONS(1090), - [aux_sym_require_expression_token1] = ACTIONS(1090), - [aux_sym_require_once_expression_token1] = ACTIONS(1090), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1092), - }, - [456] = { - [sym_text_interpolation] = STATE(456), [ts_builtin_sym_end] = ACTIONS(1094), [sym_name] = ACTIONS(1096), - [anon_sym_QMARK_GT] = ACTIONS(18), + [anon_sym_QMARK_GT] = ACTIONS(1094), [anon_sym_SEMI] = ACTIONS(1098), [aux_sym_function_static_declaration_token1] = ACTIONS(1096), [aux_sym_global_declaration_token1] = ACTIONS(1096), @@ -66753,14 +65368,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1096), [aux_sym_require_expression_token1] = ACTIONS(1096), [aux_sym_require_once_expression_token1] = ACTIONS(1096), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(1098), }, - [457] = { - [sym_text_interpolation] = STATE(457), + [453] = { [ts_builtin_sym_end] = ACTIONS(1100), [sym_name] = ACTIONS(1102), - [anon_sym_QMARK_GT] = ACTIONS(18), + [anon_sym_QMARK_GT] = ACTIONS(1100), [anon_sym_SEMI] = ACTIONS(1104), [aux_sym_function_static_declaration_token1] = ACTIONS(1102), [aux_sym_global_declaration_token1] = ACTIONS(1102), @@ -66841,14 +65455,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1102), [aux_sym_require_expression_token1] = ACTIONS(1102), [aux_sym_require_once_expression_token1] = ACTIONS(1102), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(1104), }, - [458] = { - [sym_text_interpolation] = STATE(458), + [454] = { [ts_builtin_sym_end] = ACTIONS(1106), [sym_name] = ACTIONS(1108), - [anon_sym_QMARK_GT] = ACTIONS(18), + [anon_sym_QMARK_GT] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1110), [aux_sym_function_static_declaration_token1] = ACTIONS(1108), [aux_sym_global_declaration_token1] = ACTIONS(1108), @@ -66929,14 +65542,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1108), [aux_sym_require_expression_token1] = ACTIONS(1108), [aux_sym_require_once_expression_token1] = ACTIONS(1108), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(1110), }, - [459] = { - [sym_text_interpolation] = STATE(459), + [455] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(2502), + [sym__unary_expression] = STATE(957), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(957), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(957), + [sym_cast_variable] = STATE(632), + [sym_member_access_expression] = STATE(632), + [sym_nullsafe_member_access_expression] = STATE(632), + [sym_scoped_property_access_expression] = STATE(632), + [sym_function_call_expression] = STATE(606), + [sym_scoped_call_expression] = STATE(606), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(606), + [sym_nullsafe_member_call_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(606), + [sym_variable_name] = STATE(606), + [sym_include_expression] = STATE(957), + [sym_include_once_expression] = STATE(957), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(815), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [sym_comment] = ACTIONS(3), + }, + [456] = { [ts_builtin_sym_end] = ACTIONS(1112), [sym_name] = ACTIONS(1114), - [anon_sym_QMARK_GT] = ACTIONS(18), + [anon_sym_QMARK_GT] = ACTIONS(1112), [anon_sym_SEMI] = ACTIONS(1116), [aux_sym_function_static_declaration_token1] = ACTIONS(1114), [aux_sym_global_declaration_token1] = ACTIONS(1114), @@ -67017,14 +65716,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1114), [aux_sym_require_expression_token1] = ACTIONS(1114), [aux_sym_require_once_expression_token1] = ACTIONS(1114), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(1116), }, - [460] = { - [sym_text_interpolation] = STATE(460), + [457] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(2454), + [sym__unary_expression] = STATE(957), + [sym_unary_op_expression] = STATE(1151), + [sym_exponentiation_expression] = STATE(957), + [sym_clone_expression] = STATE(1151), + [sym__primary_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(957), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(573), + [sym_scoped_call_expression] = STATE(573), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(573), + [sym_nullsafe_member_call_expression] = STATE(573), + [sym_subscript_expression] = STATE(573), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(573), + [sym_variable_name] = STATE(573), + [sym_include_expression] = STATE(957), + [sym_include_once_expression] = STATE(957), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(651), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [aux_sym_clone_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(673), + [aux_sym_include_once_expression_token1] = ACTIONS(675), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [sym_qualified_name] = STATE(699), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym_match_expression] = STATE(2502), + [sym__unary_expression] = STATE(957), + [sym_unary_op_expression] = STATE(999), + [sym_exponentiation_expression] = STATE(957), + [sym_clone_expression] = STATE(999), + [sym__primary_expression] = STATE(999), + [sym_parenthesized_expression] = STATE(684), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_expression] = STATE(957), + [sym_cast_variable] = STATE(591), + [sym_member_access_expression] = STATE(591), + [sym_nullsafe_member_access_expression] = STATE(591), + [sym_scoped_property_access_expression] = STATE(591), + [sym_function_call_expression] = STATE(573), + [sym_scoped_call_expression] = STATE(573), + [sym__scope_resolution_qualifier] = STATE(2413), + [sym_relative_scope] = STATE(2413), + [sym_member_call_expression] = STATE(573), + [sym_nullsafe_member_call_expression] = STATE(573), + [sym_subscript_expression] = STATE(573), + [sym__dereferencable_expression] = STATE(1655), + [sym_array_creation_expression] = STATE(684), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(684), + [sym_string] = STATE(684), + [sym_heredoc] = STATE(684), + [sym_nowdoc] = STATE(684), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(684), + [sym_dynamic_variable_name] = STATE(573), + [sym_variable_name] = STATE(573), + [sym_include_expression] = STATE(957), + [sym_include_once_expression] = STATE(957), + [sym__reserved_identifier] = STATE(1514), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(545), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_match_expression_token1] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(575), + [aux_sym_clone_expression_token1] = ACTIONS(577), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(595), + [aux_sym_include_expression_token1] = ACTIONS(601), + [aux_sym_include_once_expression_token1] = ACTIONS(603), + [sym_comment] = ACTIONS(3), + }, + [459] = { [ts_builtin_sym_end] = ACTIONS(1118), [sym_name] = ACTIONS(1120), - [anon_sym_QMARK_GT] = ACTIONS(18), + [anon_sym_QMARK_GT] = ACTIONS(1118), [anon_sym_SEMI] = ACTIONS(1118), [aux_sym_function_static_declaration_token1] = ACTIONS(1120), [aux_sym_global_declaration_token1] = ACTIONS(1120), @@ -67105,15 +65977,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_once_expression_token1] = ACTIONS(1120), [aux_sym_require_expression_token1] = ACTIONS(1120), [aux_sym_require_once_expression_token1] = ACTIONS(1120), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym__automatic_semicolon] = ACTIONS(1118), }, - [461] = { - [sym_text_interpolation] = STATE(461), + [460] = { [ts_builtin_sym_end] = ACTIONS(1122), [sym_name] = ACTIONS(1124), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_QMARK_GT] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), [aux_sym_function_static_declaration_token1] = ACTIONS(1124), [aux_sym_global_declaration_token1] = ACTIONS(1124), [aux_sym_namespace_definition_token1] = ACTIONS(1124), @@ -67169,10298 +66040,9165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1124), [anon_sym_TILDE] = ACTIONS(1122), [anon_sym_BANG] = ACTIONS(1122), - [aux_sym_clone_expression_token1] = ACTIONS(1124), - [aux_sym_print_intrinsic_token1] = ACTIONS(1124), - [aux_sym_object_creation_expression_token1] = ACTIONS(1124), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [aux_sym__list_destructing_token1] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_self] = ACTIONS(1124), - [anon_sym_parent] = ACTIONS(1124), - [anon_sym_POUND_LBRACK] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [aux_sym_encapsed_string_token1] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [aux_sym_string_token1] = ACTIONS(1122), - [anon_sym_LT_LT_LT] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [sym_boolean] = ACTIONS(1124), - [sym_null] = ACTIONS(1124), - [anon_sym_DOLLAR] = ACTIONS(1122), - [aux_sym_yield_expression_token1] = ACTIONS(1124), - [aux_sym_include_expression_token1] = ACTIONS(1124), - [aux_sym_include_once_expression_token1] = ACTIONS(1124), - [aux_sym_require_expression_token1] = ACTIONS(1124), - [aux_sym_require_once_expression_token1] = ACTIONS(1124), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(1126), - }, - [462] = { - [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_name] = ACTIONS(1130), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1128), - [aux_sym_function_static_declaration_token1] = ACTIONS(1130), - [aux_sym_global_declaration_token1] = ACTIONS(1130), - [aux_sym_namespace_definition_token1] = ACTIONS(1130), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1130), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1130), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1130), - [anon_sym_BSLASH] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [aux_sym_trait_declaration_token1] = ACTIONS(1130), - [aux_sym_interface_declaration_token1] = ACTIONS(1130), - [aux_sym_enum_declaration_token1] = ACTIONS(1130), - [aux_sym_enum_case_token1] = ACTIONS(1130), - [aux_sym_class_declaration_token1] = ACTIONS(1130), - [aux_sym_final_modifier_token1] = ACTIONS(1130), - [aux_sym_abstract_modifier_token1] = ACTIONS(1130), - [aux_sym_readonly_modifier_token1] = ACTIONS(1130), - [aux_sym_visibility_modifier_token1] = ACTIONS(1130), - [aux_sym_visibility_modifier_token2] = ACTIONS(1130), - [aux_sym_visibility_modifier_token3] = ACTIONS(1130), - [aux_sym__arrow_function_header_token1] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1128), - [aux_sym_cast_type_token1] = ACTIONS(1130), - [aux_sym_echo_statement_token1] = ACTIONS(1130), - [anon_sym_unset] = ACTIONS(1130), - [aux_sym_declare_statement_token1] = ACTIONS(1130), - [aux_sym_declare_statement_token2] = ACTIONS(1130), - [sym_float] = ACTIONS(1130), - [aux_sym_try_statement_token1] = ACTIONS(1130), - [aux_sym_goto_statement_token1] = ACTIONS(1130), - [aux_sym_continue_statement_token1] = ACTIONS(1130), - [aux_sym_break_statement_token1] = ACTIONS(1130), - [sym_integer] = ACTIONS(1130), - [aux_sym_return_statement_token1] = ACTIONS(1130), - [aux_sym_throw_expression_token1] = ACTIONS(1130), - [aux_sym_while_statement_token1] = ACTIONS(1130), - [aux_sym_while_statement_token2] = ACTIONS(1130), - [aux_sym_do_statement_token1] = ACTIONS(1130), - [aux_sym_for_statement_token1] = ACTIONS(1130), - [aux_sym_for_statement_token2] = ACTIONS(1130), - [aux_sym_foreach_statement_token1] = ACTIONS(1130), - [aux_sym_foreach_statement_token2] = ACTIONS(1130), - [aux_sym_if_statement_token1] = ACTIONS(1130), - [aux_sym_if_statement_token2] = ACTIONS(1130), - [aux_sym_else_if_clause_token1] = ACTIONS(1130), - [aux_sym_else_clause_token1] = ACTIONS(1130), - [aux_sym_match_expression_token1] = ACTIONS(1130), - [aux_sym_match_default_expression_token1] = ACTIONS(1130), - [aux_sym_switch_statement_token1] = ACTIONS(1130), - [aux_sym_switch_block_token1] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [aux_sym_clone_expression_token1] = ACTIONS(1130), - [aux_sym_print_intrinsic_token1] = ACTIONS(1130), - [aux_sym_object_creation_expression_token1] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1128), - [aux_sym__list_destructing_token1] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_self] = ACTIONS(1130), - [anon_sym_parent] = ACTIONS(1130), - [anon_sym_POUND_LBRACK] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [aux_sym_encapsed_string_token1] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [aux_sym_string_token1] = ACTIONS(1128), - [anon_sym_LT_LT_LT] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [sym_boolean] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(1128), - [aux_sym_yield_expression_token1] = ACTIONS(1130), - [aux_sym_include_expression_token1] = ACTIONS(1130), - [aux_sym_include_once_expression_token1] = ACTIONS(1130), - [aux_sym_require_expression_token1] = ACTIONS(1130), - [aux_sym_require_once_expression_token1] = ACTIONS(1130), - [sym_comment] = ACTIONS(5), - }, - [463] = { - [sym_text_interpolation] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_name] = ACTIONS(1134), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1132), - [aux_sym_function_static_declaration_token1] = ACTIONS(1134), - [aux_sym_global_declaration_token1] = ACTIONS(1134), - [aux_sym_namespace_definition_token1] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1134), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1134), - [anon_sym_BSLASH] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), - [aux_sym_trait_declaration_token1] = ACTIONS(1134), - [aux_sym_interface_declaration_token1] = ACTIONS(1134), - [aux_sym_enum_declaration_token1] = ACTIONS(1134), - [aux_sym_enum_case_token1] = ACTIONS(1134), - [aux_sym_class_declaration_token1] = ACTIONS(1134), - [aux_sym_final_modifier_token1] = ACTIONS(1134), - [aux_sym_abstract_modifier_token1] = ACTIONS(1134), - [aux_sym_readonly_modifier_token1] = ACTIONS(1134), - [aux_sym_visibility_modifier_token1] = ACTIONS(1134), - [aux_sym_visibility_modifier_token2] = ACTIONS(1134), - [aux_sym_visibility_modifier_token3] = ACTIONS(1134), - [aux_sym__arrow_function_header_token1] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1132), - [aux_sym_cast_type_token1] = ACTIONS(1134), - [aux_sym_echo_statement_token1] = ACTIONS(1134), - [anon_sym_unset] = ACTIONS(1134), - [aux_sym_declare_statement_token1] = ACTIONS(1134), - [aux_sym_declare_statement_token2] = ACTIONS(1134), - [sym_float] = ACTIONS(1134), - [aux_sym_try_statement_token1] = ACTIONS(1134), - [aux_sym_goto_statement_token1] = ACTIONS(1134), - [aux_sym_continue_statement_token1] = ACTIONS(1134), - [aux_sym_break_statement_token1] = ACTIONS(1134), - [sym_integer] = ACTIONS(1134), - [aux_sym_return_statement_token1] = ACTIONS(1134), - [aux_sym_throw_expression_token1] = ACTIONS(1134), - [aux_sym_while_statement_token1] = ACTIONS(1134), - [aux_sym_while_statement_token2] = ACTIONS(1134), - [aux_sym_do_statement_token1] = ACTIONS(1134), - [aux_sym_for_statement_token1] = ACTIONS(1134), - [aux_sym_for_statement_token2] = ACTIONS(1134), - [aux_sym_foreach_statement_token1] = ACTIONS(1134), - [aux_sym_foreach_statement_token2] = ACTIONS(1134), - [aux_sym_if_statement_token1] = ACTIONS(1134), - [aux_sym_if_statement_token2] = ACTIONS(1134), - [aux_sym_else_if_clause_token1] = ACTIONS(1134), - [aux_sym_else_clause_token1] = ACTIONS(1134), - [aux_sym_match_expression_token1] = ACTIONS(1134), - [aux_sym_match_default_expression_token1] = ACTIONS(1134), - [aux_sym_switch_statement_token1] = ACTIONS(1134), - [aux_sym_switch_block_token1] = ACTIONS(1134), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [aux_sym_clone_expression_token1] = ACTIONS(1134), - [aux_sym_print_intrinsic_token1] = ACTIONS(1134), - [aux_sym_object_creation_expression_token1] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [aux_sym__list_destructing_token1] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1132), - [anon_sym_self] = ACTIONS(1134), - [anon_sym_parent] = ACTIONS(1134), - [anon_sym_POUND_LBRACK] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [aux_sym_encapsed_string_token1] = ACTIONS(1132), - [anon_sym_DQUOTE] = ACTIONS(1132), - [aux_sym_string_token1] = ACTIONS(1132), - [anon_sym_LT_LT_LT] = ACTIONS(1132), - [anon_sym_BQUOTE] = ACTIONS(1132), - [sym_boolean] = ACTIONS(1134), - [sym_null] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(1132), - [aux_sym_yield_expression_token1] = ACTIONS(1134), - [aux_sym_include_expression_token1] = ACTIONS(1134), - [aux_sym_include_once_expression_token1] = ACTIONS(1134), - [aux_sym_require_expression_token1] = ACTIONS(1134), - [aux_sym_require_once_expression_token1] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - }, - [464] = { - [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_name] = ACTIONS(1138), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1136), - [aux_sym_function_static_declaration_token1] = ACTIONS(1138), - [aux_sym_global_declaration_token1] = ACTIONS(1138), - [aux_sym_namespace_definition_token1] = ACTIONS(1138), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1138), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1138), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1138), - [anon_sym_BSLASH] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [aux_sym_trait_declaration_token1] = ACTIONS(1138), - [aux_sym_interface_declaration_token1] = ACTIONS(1138), - [aux_sym_enum_declaration_token1] = ACTIONS(1138), - [aux_sym_enum_case_token1] = ACTIONS(1138), - [aux_sym_class_declaration_token1] = ACTIONS(1138), - [aux_sym_final_modifier_token1] = ACTIONS(1138), - [aux_sym_abstract_modifier_token1] = ACTIONS(1138), - [aux_sym_readonly_modifier_token1] = ACTIONS(1138), - [aux_sym_visibility_modifier_token1] = ACTIONS(1138), - [aux_sym_visibility_modifier_token2] = ACTIONS(1138), - [aux_sym_visibility_modifier_token3] = ACTIONS(1138), - [aux_sym__arrow_function_header_token1] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1136), - [aux_sym_cast_type_token1] = ACTIONS(1138), - [aux_sym_echo_statement_token1] = ACTIONS(1138), - [anon_sym_unset] = ACTIONS(1138), - [aux_sym_declare_statement_token1] = ACTIONS(1138), - [aux_sym_declare_statement_token2] = ACTIONS(1138), - [sym_float] = ACTIONS(1138), - [aux_sym_try_statement_token1] = ACTIONS(1138), - [aux_sym_goto_statement_token1] = ACTIONS(1138), - [aux_sym_continue_statement_token1] = ACTIONS(1138), - [aux_sym_break_statement_token1] = ACTIONS(1138), - [sym_integer] = ACTIONS(1138), - [aux_sym_return_statement_token1] = ACTIONS(1138), - [aux_sym_throw_expression_token1] = ACTIONS(1138), - [aux_sym_while_statement_token1] = ACTIONS(1138), - [aux_sym_while_statement_token2] = ACTIONS(1138), - [aux_sym_do_statement_token1] = ACTIONS(1138), - [aux_sym_for_statement_token1] = ACTIONS(1138), - [aux_sym_for_statement_token2] = ACTIONS(1138), - [aux_sym_foreach_statement_token1] = ACTIONS(1138), - [aux_sym_foreach_statement_token2] = ACTIONS(1138), - [aux_sym_if_statement_token1] = ACTIONS(1138), - [aux_sym_if_statement_token2] = ACTIONS(1138), - [aux_sym_else_if_clause_token1] = ACTIONS(1138), - [aux_sym_else_clause_token1] = ACTIONS(1138), - [aux_sym_match_expression_token1] = ACTIONS(1138), - [aux_sym_match_default_expression_token1] = ACTIONS(1138), - [aux_sym_switch_statement_token1] = ACTIONS(1138), - [aux_sym_switch_block_token1] = ACTIONS(1138), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [aux_sym_clone_expression_token1] = ACTIONS(1138), - [aux_sym_print_intrinsic_token1] = ACTIONS(1138), - [aux_sym_object_creation_expression_token1] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1136), - [aux_sym__list_destructing_token1] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_self] = ACTIONS(1138), - [anon_sym_parent] = ACTIONS(1138), - [anon_sym_POUND_LBRACK] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [aux_sym_encapsed_string_token1] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1136), - [aux_sym_string_token1] = ACTIONS(1136), - [anon_sym_LT_LT_LT] = ACTIONS(1136), - [anon_sym_BQUOTE] = ACTIONS(1136), - [sym_boolean] = ACTIONS(1138), - [sym_null] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1136), - [aux_sym_yield_expression_token1] = ACTIONS(1138), - [aux_sym_include_expression_token1] = ACTIONS(1138), - [aux_sym_include_once_expression_token1] = ACTIONS(1138), - [aux_sym_require_expression_token1] = ACTIONS(1138), - [aux_sym_require_once_expression_token1] = ACTIONS(1138), - [sym_comment] = ACTIONS(5), - }, - [465] = { - [sym_text_interpolation] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_name] = ACTIONS(1142), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1140), - [aux_sym_function_static_declaration_token1] = ACTIONS(1142), - [aux_sym_global_declaration_token1] = ACTIONS(1142), - [aux_sym_namespace_definition_token1] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1142), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1142), - [anon_sym_BSLASH] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [aux_sym_trait_declaration_token1] = ACTIONS(1142), - [aux_sym_interface_declaration_token1] = ACTIONS(1142), - [aux_sym_enum_declaration_token1] = ACTIONS(1142), - [aux_sym_enum_case_token1] = ACTIONS(1142), - [aux_sym_class_declaration_token1] = ACTIONS(1142), - [aux_sym_final_modifier_token1] = ACTIONS(1142), - [aux_sym_abstract_modifier_token1] = ACTIONS(1142), - [aux_sym_readonly_modifier_token1] = ACTIONS(1142), - [aux_sym_visibility_modifier_token1] = ACTIONS(1142), - [aux_sym_visibility_modifier_token2] = ACTIONS(1142), - [aux_sym_visibility_modifier_token3] = ACTIONS(1142), - [aux_sym__arrow_function_header_token1] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(1140), - [aux_sym_cast_type_token1] = ACTIONS(1142), - [aux_sym_echo_statement_token1] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1142), - [aux_sym_declare_statement_token1] = ACTIONS(1142), - [aux_sym_declare_statement_token2] = ACTIONS(1142), - [sym_float] = ACTIONS(1142), - [aux_sym_try_statement_token1] = ACTIONS(1142), - [aux_sym_goto_statement_token1] = ACTIONS(1142), - [aux_sym_continue_statement_token1] = ACTIONS(1142), - [aux_sym_break_statement_token1] = ACTIONS(1142), - [sym_integer] = ACTIONS(1142), - [aux_sym_return_statement_token1] = ACTIONS(1142), - [aux_sym_throw_expression_token1] = ACTIONS(1142), - [aux_sym_while_statement_token1] = ACTIONS(1142), - [aux_sym_while_statement_token2] = ACTIONS(1142), - [aux_sym_do_statement_token1] = ACTIONS(1142), - [aux_sym_for_statement_token1] = ACTIONS(1142), - [aux_sym_for_statement_token2] = ACTIONS(1142), - [aux_sym_foreach_statement_token1] = ACTIONS(1142), - [aux_sym_foreach_statement_token2] = ACTIONS(1142), - [aux_sym_if_statement_token1] = ACTIONS(1142), - [aux_sym_if_statement_token2] = ACTIONS(1142), - [aux_sym_else_if_clause_token1] = ACTIONS(1142), - [aux_sym_else_clause_token1] = ACTIONS(1142), - [aux_sym_match_expression_token1] = ACTIONS(1142), - [aux_sym_match_default_expression_token1] = ACTIONS(1142), - [aux_sym_switch_statement_token1] = ACTIONS(1142), - [aux_sym_switch_block_token1] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [aux_sym_clone_expression_token1] = ACTIONS(1142), - [aux_sym_print_intrinsic_token1] = ACTIONS(1142), - [aux_sym_object_creation_expression_token1] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1140), - [aux_sym__list_destructing_token1] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_self] = ACTIONS(1142), - [anon_sym_parent] = ACTIONS(1142), - [anon_sym_POUND_LBRACK] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [aux_sym_encapsed_string_token1] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(1140), - [aux_sym_string_token1] = ACTIONS(1140), - [anon_sym_LT_LT_LT] = ACTIONS(1140), - [anon_sym_BQUOTE] = ACTIONS(1140), - [sym_boolean] = ACTIONS(1142), - [sym_null] = ACTIONS(1142), - [anon_sym_DOLLAR] = ACTIONS(1140), - [aux_sym_yield_expression_token1] = ACTIONS(1142), - [aux_sym_include_expression_token1] = ACTIONS(1142), - [aux_sym_include_once_expression_token1] = ACTIONS(1142), - [aux_sym_require_expression_token1] = ACTIONS(1142), - [aux_sym_require_once_expression_token1] = ACTIONS(1142), - [sym_comment] = ACTIONS(5), - }, - [466] = { - [sym_text_interpolation] = STATE(466), - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_name] = ACTIONS(1146), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1144), - [aux_sym_function_static_declaration_token1] = ACTIONS(1146), - [aux_sym_global_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_definition_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1146), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1146), - [anon_sym_BSLASH] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [aux_sym_trait_declaration_token1] = ACTIONS(1146), - [aux_sym_interface_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_declaration_token1] = ACTIONS(1146), - [aux_sym_enum_case_token1] = ACTIONS(1146), - [aux_sym_class_declaration_token1] = ACTIONS(1146), - [aux_sym_final_modifier_token1] = ACTIONS(1146), - [aux_sym_abstract_modifier_token1] = ACTIONS(1146), - [aux_sym_readonly_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token1] = ACTIONS(1146), - [aux_sym_visibility_modifier_token2] = ACTIONS(1146), - [aux_sym_visibility_modifier_token3] = ACTIONS(1146), - [aux_sym__arrow_function_header_token1] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1144), - [aux_sym_cast_type_token1] = ACTIONS(1146), - [aux_sym_echo_statement_token1] = ACTIONS(1146), - [anon_sym_unset] = ACTIONS(1146), - [aux_sym_declare_statement_token1] = ACTIONS(1146), - [aux_sym_declare_statement_token2] = ACTIONS(1146), - [sym_float] = ACTIONS(1146), - [aux_sym_try_statement_token1] = ACTIONS(1146), - [aux_sym_goto_statement_token1] = ACTIONS(1146), - [aux_sym_continue_statement_token1] = ACTIONS(1146), - [aux_sym_break_statement_token1] = ACTIONS(1146), - [sym_integer] = ACTIONS(1146), - [aux_sym_return_statement_token1] = ACTIONS(1146), - [aux_sym_throw_expression_token1] = ACTIONS(1146), - [aux_sym_while_statement_token1] = ACTIONS(1146), - [aux_sym_while_statement_token2] = ACTIONS(1146), - [aux_sym_do_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token1] = ACTIONS(1146), - [aux_sym_for_statement_token2] = ACTIONS(1146), - [aux_sym_foreach_statement_token1] = ACTIONS(1146), - [aux_sym_foreach_statement_token2] = ACTIONS(1146), - [aux_sym_if_statement_token1] = ACTIONS(1146), - [aux_sym_if_statement_token2] = ACTIONS(1146), - [aux_sym_else_if_clause_token1] = ACTIONS(1146), - [aux_sym_else_clause_token1] = ACTIONS(1146), - [aux_sym_match_expression_token1] = ACTIONS(1146), - [aux_sym_match_default_expression_token1] = ACTIONS(1146), - [aux_sym_switch_statement_token1] = ACTIONS(1146), - [aux_sym_switch_block_token1] = ACTIONS(1146), - [anon_sym_AT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [aux_sym_clone_expression_token1] = ACTIONS(1146), - [aux_sym_print_intrinsic_token1] = ACTIONS(1146), - [aux_sym_object_creation_expression_token1] = ACTIONS(1146), - [anon_sym_PLUS_PLUS] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1144), - [aux_sym__list_destructing_token1] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_self] = ACTIONS(1146), - [anon_sym_parent] = ACTIONS(1146), - [anon_sym_POUND_LBRACK] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [aux_sym_encapsed_string_token1] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1144), - [aux_sym_string_token1] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1144), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_boolean] = ACTIONS(1146), - [sym_null] = ACTIONS(1146), - [anon_sym_DOLLAR] = ACTIONS(1144), - [aux_sym_yield_expression_token1] = ACTIONS(1146), - [aux_sym_include_expression_token1] = ACTIONS(1146), - [aux_sym_include_once_expression_token1] = ACTIONS(1146), - [aux_sym_require_expression_token1] = ACTIONS(1146), - [aux_sym_require_once_expression_token1] = ACTIONS(1146), - [sym_comment] = ACTIONS(5), - }, - [467] = { - [sym_text_interpolation] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_name] = ACTIONS(1150), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1148), - [aux_sym_function_static_declaration_token1] = ACTIONS(1150), - [aux_sym_global_declaration_token1] = ACTIONS(1150), - [aux_sym_namespace_definition_token1] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1150), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1150), - [anon_sym_BSLASH] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [aux_sym_trait_declaration_token1] = ACTIONS(1150), - [aux_sym_interface_declaration_token1] = ACTIONS(1150), - [aux_sym_enum_declaration_token1] = ACTIONS(1150), - [aux_sym_enum_case_token1] = ACTIONS(1150), - [aux_sym_class_declaration_token1] = ACTIONS(1150), - [aux_sym_final_modifier_token1] = ACTIONS(1150), - [aux_sym_abstract_modifier_token1] = ACTIONS(1150), - [aux_sym_readonly_modifier_token1] = ACTIONS(1150), - [aux_sym_visibility_modifier_token1] = ACTIONS(1150), - [aux_sym_visibility_modifier_token2] = ACTIONS(1150), - [aux_sym_visibility_modifier_token3] = ACTIONS(1150), - [aux_sym__arrow_function_header_token1] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1148), - [aux_sym_cast_type_token1] = ACTIONS(1150), - [aux_sym_echo_statement_token1] = ACTIONS(1150), - [anon_sym_unset] = ACTIONS(1150), - [aux_sym_declare_statement_token1] = ACTIONS(1150), - [aux_sym_declare_statement_token2] = ACTIONS(1150), - [sym_float] = ACTIONS(1150), - [aux_sym_try_statement_token1] = ACTIONS(1150), - [aux_sym_goto_statement_token1] = ACTIONS(1150), - [aux_sym_continue_statement_token1] = ACTIONS(1150), - [aux_sym_break_statement_token1] = ACTIONS(1150), - [sym_integer] = ACTIONS(1150), - [aux_sym_return_statement_token1] = ACTIONS(1150), - [aux_sym_throw_expression_token1] = ACTIONS(1150), - [aux_sym_while_statement_token1] = ACTIONS(1150), - [aux_sym_while_statement_token2] = ACTIONS(1150), - [aux_sym_do_statement_token1] = ACTIONS(1150), - [aux_sym_for_statement_token1] = ACTIONS(1150), - [aux_sym_for_statement_token2] = ACTIONS(1150), - [aux_sym_foreach_statement_token1] = ACTIONS(1150), - [aux_sym_foreach_statement_token2] = ACTIONS(1150), - [aux_sym_if_statement_token1] = ACTIONS(1150), - [aux_sym_if_statement_token2] = ACTIONS(1150), - [aux_sym_else_if_clause_token1] = ACTIONS(1150), - [aux_sym_else_clause_token1] = ACTIONS(1150), - [aux_sym_match_expression_token1] = ACTIONS(1150), - [aux_sym_match_default_expression_token1] = ACTIONS(1150), - [aux_sym_switch_statement_token1] = ACTIONS(1150), - [aux_sym_switch_block_token1] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [aux_sym_clone_expression_token1] = ACTIONS(1150), - [aux_sym_print_intrinsic_token1] = ACTIONS(1150), - [aux_sym_object_creation_expression_token1] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [aux_sym__list_destructing_token1] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_self] = ACTIONS(1150), - [anon_sym_parent] = ACTIONS(1150), - [anon_sym_POUND_LBRACK] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [aux_sym_encapsed_string_token1] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1148), - [aux_sym_string_token1] = ACTIONS(1148), - [anon_sym_LT_LT_LT] = ACTIONS(1148), - [anon_sym_BQUOTE] = ACTIONS(1148), - [sym_boolean] = ACTIONS(1150), - [sym_null] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1148), - [aux_sym_yield_expression_token1] = ACTIONS(1150), - [aux_sym_include_expression_token1] = ACTIONS(1150), - [aux_sym_include_once_expression_token1] = ACTIONS(1150), - [aux_sym_require_expression_token1] = ACTIONS(1150), - [aux_sym_require_once_expression_token1] = ACTIONS(1150), - [sym_comment] = ACTIONS(5), - }, - [468] = { - [sym_text_interpolation] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_name] = ACTIONS(1154), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1152), - [aux_sym_function_static_declaration_token1] = ACTIONS(1154), - [aux_sym_global_declaration_token1] = ACTIONS(1154), - [aux_sym_namespace_definition_token1] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1154), - [anon_sym_BSLASH] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [aux_sym_trait_declaration_token1] = ACTIONS(1154), - [aux_sym_interface_declaration_token1] = ACTIONS(1154), - [aux_sym_enum_declaration_token1] = ACTIONS(1154), - [aux_sym_enum_case_token1] = ACTIONS(1154), - [aux_sym_class_declaration_token1] = ACTIONS(1154), - [aux_sym_final_modifier_token1] = ACTIONS(1154), - [aux_sym_abstract_modifier_token1] = ACTIONS(1154), - [aux_sym_readonly_modifier_token1] = ACTIONS(1154), - [aux_sym_visibility_modifier_token1] = ACTIONS(1154), - [aux_sym_visibility_modifier_token2] = ACTIONS(1154), - [aux_sym_visibility_modifier_token3] = ACTIONS(1154), - [aux_sym__arrow_function_header_token1] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1152), - [aux_sym_cast_type_token1] = ACTIONS(1154), - [aux_sym_echo_statement_token1] = ACTIONS(1154), - [anon_sym_unset] = ACTIONS(1154), - [aux_sym_declare_statement_token1] = ACTIONS(1154), - [aux_sym_declare_statement_token2] = ACTIONS(1154), - [sym_float] = ACTIONS(1154), - [aux_sym_try_statement_token1] = ACTIONS(1154), - [aux_sym_goto_statement_token1] = ACTIONS(1154), - [aux_sym_continue_statement_token1] = ACTIONS(1154), - [aux_sym_break_statement_token1] = ACTIONS(1154), - [sym_integer] = ACTIONS(1154), - [aux_sym_return_statement_token1] = ACTIONS(1154), - [aux_sym_throw_expression_token1] = ACTIONS(1154), - [aux_sym_while_statement_token1] = ACTIONS(1154), - [aux_sym_while_statement_token2] = ACTIONS(1154), - [aux_sym_do_statement_token1] = ACTIONS(1154), - [aux_sym_for_statement_token1] = ACTIONS(1154), - [aux_sym_for_statement_token2] = ACTIONS(1154), - [aux_sym_foreach_statement_token1] = ACTIONS(1154), - [aux_sym_foreach_statement_token2] = ACTIONS(1154), - [aux_sym_if_statement_token1] = ACTIONS(1154), - [aux_sym_if_statement_token2] = ACTIONS(1154), - [aux_sym_else_if_clause_token1] = ACTIONS(1154), - [aux_sym_else_clause_token1] = ACTIONS(1154), - [aux_sym_match_expression_token1] = ACTIONS(1154), - [aux_sym_match_default_expression_token1] = ACTIONS(1154), - [aux_sym_switch_statement_token1] = ACTIONS(1154), - [aux_sym_switch_block_token1] = ACTIONS(1154), - [anon_sym_AT] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [aux_sym_clone_expression_token1] = ACTIONS(1154), - [aux_sym_print_intrinsic_token1] = ACTIONS(1154), - [aux_sym_object_creation_expression_token1] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1152), - [aux_sym__list_destructing_token1] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1152), - [anon_sym_self] = ACTIONS(1154), - [anon_sym_parent] = ACTIONS(1154), - [anon_sym_POUND_LBRACK] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [aux_sym_encapsed_string_token1] = ACTIONS(1152), - [anon_sym_DQUOTE] = ACTIONS(1152), - [aux_sym_string_token1] = ACTIONS(1152), - [anon_sym_LT_LT_LT] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1152), - [sym_boolean] = ACTIONS(1154), - [sym_null] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1152), - [aux_sym_yield_expression_token1] = ACTIONS(1154), - [aux_sym_include_expression_token1] = ACTIONS(1154), - [aux_sym_include_once_expression_token1] = ACTIONS(1154), - [aux_sym_require_expression_token1] = ACTIONS(1154), - [aux_sym_require_once_expression_token1] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - }, - [469] = { - [sym_text_interpolation] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_name] = ACTIONS(1158), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1156), - [aux_sym_function_static_declaration_token1] = ACTIONS(1158), - [aux_sym_global_declaration_token1] = ACTIONS(1158), - [aux_sym_namespace_definition_token1] = ACTIONS(1158), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1158), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1158), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1158), - [anon_sym_BSLASH] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [aux_sym_trait_declaration_token1] = ACTIONS(1158), - [aux_sym_interface_declaration_token1] = ACTIONS(1158), - [aux_sym_enum_declaration_token1] = ACTIONS(1158), - [aux_sym_enum_case_token1] = ACTIONS(1158), - [aux_sym_class_declaration_token1] = ACTIONS(1158), - [aux_sym_final_modifier_token1] = ACTIONS(1158), - [aux_sym_abstract_modifier_token1] = ACTIONS(1158), - [aux_sym_readonly_modifier_token1] = ACTIONS(1158), - [aux_sym_visibility_modifier_token1] = ACTIONS(1158), - [aux_sym_visibility_modifier_token2] = ACTIONS(1158), - [aux_sym_visibility_modifier_token3] = ACTIONS(1158), - [aux_sym__arrow_function_header_token1] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1156), - [aux_sym_cast_type_token1] = ACTIONS(1158), - [aux_sym_echo_statement_token1] = ACTIONS(1158), - [anon_sym_unset] = ACTIONS(1158), - [aux_sym_declare_statement_token1] = ACTIONS(1158), - [aux_sym_declare_statement_token2] = ACTIONS(1158), - [sym_float] = ACTIONS(1158), - [aux_sym_try_statement_token1] = ACTIONS(1158), - [aux_sym_goto_statement_token1] = ACTIONS(1158), - [aux_sym_continue_statement_token1] = ACTIONS(1158), - [aux_sym_break_statement_token1] = ACTIONS(1158), - [sym_integer] = ACTIONS(1158), - [aux_sym_return_statement_token1] = ACTIONS(1158), - [aux_sym_throw_expression_token1] = ACTIONS(1158), - [aux_sym_while_statement_token1] = ACTIONS(1158), - [aux_sym_while_statement_token2] = ACTIONS(1158), - [aux_sym_do_statement_token1] = ACTIONS(1158), - [aux_sym_for_statement_token1] = ACTIONS(1158), - [aux_sym_for_statement_token2] = ACTIONS(1158), - [aux_sym_foreach_statement_token1] = ACTIONS(1158), - [aux_sym_foreach_statement_token2] = ACTIONS(1158), - [aux_sym_if_statement_token1] = ACTIONS(1158), - [aux_sym_if_statement_token2] = ACTIONS(1158), - [aux_sym_else_if_clause_token1] = ACTIONS(1158), - [aux_sym_else_clause_token1] = ACTIONS(1158), - [aux_sym_match_expression_token1] = ACTIONS(1158), - [aux_sym_match_default_expression_token1] = ACTIONS(1158), - [aux_sym_switch_statement_token1] = ACTIONS(1158), - [aux_sym_switch_block_token1] = ACTIONS(1158), - [anon_sym_AT] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [aux_sym_clone_expression_token1] = ACTIONS(1158), - [aux_sym_print_intrinsic_token1] = ACTIONS(1158), - [aux_sym_object_creation_expression_token1] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1156), - [aux_sym__list_destructing_token1] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1156), - [anon_sym_self] = ACTIONS(1158), - [anon_sym_parent] = ACTIONS(1158), - [anon_sym_POUND_LBRACK] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [aux_sym_encapsed_string_token1] = ACTIONS(1156), - [anon_sym_DQUOTE] = ACTIONS(1156), - [aux_sym_string_token1] = ACTIONS(1156), - [anon_sym_LT_LT_LT] = ACTIONS(1156), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_boolean] = ACTIONS(1158), - [sym_null] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1156), - [aux_sym_yield_expression_token1] = ACTIONS(1158), - [aux_sym_include_expression_token1] = ACTIONS(1158), - [aux_sym_include_once_expression_token1] = ACTIONS(1158), - [aux_sym_require_expression_token1] = ACTIONS(1158), - [aux_sym_require_once_expression_token1] = ACTIONS(1158), - [sym_comment] = ACTIONS(5), - }, - [470] = { - [sym_text_interpolation] = STATE(470), - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_name] = ACTIONS(1162), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1160), - [aux_sym_function_static_declaration_token1] = ACTIONS(1162), - [aux_sym_global_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_definition_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), - [anon_sym_BSLASH] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [aux_sym_trait_declaration_token1] = ACTIONS(1162), - [aux_sym_interface_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_declaration_token1] = ACTIONS(1162), - [aux_sym_enum_case_token1] = ACTIONS(1162), - [aux_sym_class_declaration_token1] = ACTIONS(1162), - [aux_sym_final_modifier_token1] = ACTIONS(1162), - [aux_sym_abstract_modifier_token1] = ACTIONS(1162), - [aux_sym_readonly_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token1] = ACTIONS(1162), - [aux_sym_visibility_modifier_token2] = ACTIONS(1162), - [aux_sym_visibility_modifier_token3] = ACTIONS(1162), - [aux_sym__arrow_function_header_token1] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1160), - [aux_sym_cast_type_token1] = ACTIONS(1162), - [aux_sym_echo_statement_token1] = ACTIONS(1162), - [anon_sym_unset] = ACTIONS(1162), - [aux_sym_declare_statement_token1] = ACTIONS(1162), - [aux_sym_declare_statement_token2] = ACTIONS(1162), - [sym_float] = ACTIONS(1162), - [aux_sym_try_statement_token1] = ACTIONS(1162), - [aux_sym_goto_statement_token1] = ACTIONS(1162), - [aux_sym_continue_statement_token1] = ACTIONS(1162), - [aux_sym_break_statement_token1] = ACTIONS(1162), - [sym_integer] = ACTIONS(1162), - [aux_sym_return_statement_token1] = ACTIONS(1162), - [aux_sym_throw_expression_token1] = ACTIONS(1162), - [aux_sym_while_statement_token1] = ACTIONS(1162), - [aux_sym_while_statement_token2] = ACTIONS(1162), - [aux_sym_do_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token1] = ACTIONS(1162), - [aux_sym_for_statement_token2] = ACTIONS(1162), - [aux_sym_foreach_statement_token1] = ACTIONS(1162), - [aux_sym_foreach_statement_token2] = ACTIONS(1162), - [aux_sym_if_statement_token1] = ACTIONS(1162), - [aux_sym_if_statement_token2] = ACTIONS(1162), - [aux_sym_else_if_clause_token1] = ACTIONS(1162), - [aux_sym_else_clause_token1] = ACTIONS(1162), - [aux_sym_match_expression_token1] = ACTIONS(1162), - [aux_sym_match_default_expression_token1] = ACTIONS(1162), - [aux_sym_switch_statement_token1] = ACTIONS(1162), - [aux_sym_switch_block_token1] = ACTIONS(1162), - [anon_sym_AT] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [aux_sym_clone_expression_token1] = ACTIONS(1162), - [aux_sym_print_intrinsic_token1] = ACTIONS(1162), - [aux_sym_object_creation_expression_token1] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1160), - [aux_sym__list_destructing_token1] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_self] = ACTIONS(1162), - [anon_sym_parent] = ACTIONS(1162), - [anon_sym_POUND_LBRACK] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [aux_sym_encapsed_string_token1] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1160), - [aux_sym_string_token1] = ACTIONS(1160), - [anon_sym_LT_LT_LT] = ACTIONS(1160), - [anon_sym_BQUOTE] = ACTIONS(1160), - [sym_boolean] = ACTIONS(1162), - [sym_null] = ACTIONS(1162), - [anon_sym_DOLLAR] = ACTIONS(1160), - [aux_sym_yield_expression_token1] = ACTIONS(1162), - [aux_sym_include_expression_token1] = ACTIONS(1162), - [aux_sym_include_once_expression_token1] = ACTIONS(1162), - [aux_sym_require_expression_token1] = ACTIONS(1162), - [aux_sym_require_once_expression_token1] = ACTIONS(1162), - [sym_comment] = ACTIONS(5), - }, - [471] = { - [sym_text_interpolation] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_name] = ACTIONS(1166), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1164), - [aux_sym_function_static_declaration_token1] = ACTIONS(1166), - [aux_sym_global_declaration_token1] = ACTIONS(1166), - [aux_sym_namespace_definition_token1] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1166), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1166), - [anon_sym_BSLASH] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [aux_sym_trait_declaration_token1] = ACTIONS(1166), - [aux_sym_interface_declaration_token1] = ACTIONS(1166), - [aux_sym_enum_declaration_token1] = ACTIONS(1166), - [aux_sym_enum_case_token1] = ACTIONS(1166), - [aux_sym_class_declaration_token1] = ACTIONS(1166), - [aux_sym_final_modifier_token1] = ACTIONS(1166), - [aux_sym_abstract_modifier_token1] = ACTIONS(1166), - [aux_sym_readonly_modifier_token1] = ACTIONS(1166), - [aux_sym_visibility_modifier_token1] = ACTIONS(1166), - [aux_sym_visibility_modifier_token2] = ACTIONS(1166), - [aux_sym_visibility_modifier_token3] = ACTIONS(1166), - [aux_sym__arrow_function_header_token1] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1164), - [aux_sym_cast_type_token1] = ACTIONS(1166), - [aux_sym_echo_statement_token1] = ACTIONS(1166), - [anon_sym_unset] = ACTIONS(1166), - [aux_sym_declare_statement_token1] = ACTIONS(1166), - [aux_sym_declare_statement_token2] = ACTIONS(1166), - [sym_float] = ACTIONS(1166), - [aux_sym_try_statement_token1] = ACTIONS(1166), - [aux_sym_goto_statement_token1] = ACTIONS(1166), - [aux_sym_continue_statement_token1] = ACTIONS(1166), - [aux_sym_break_statement_token1] = ACTIONS(1166), - [sym_integer] = ACTIONS(1166), - [aux_sym_return_statement_token1] = ACTIONS(1166), - [aux_sym_throw_expression_token1] = ACTIONS(1166), - [aux_sym_while_statement_token1] = ACTIONS(1166), - [aux_sym_while_statement_token2] = ACTIONS(1166), - [aux_sym_do_statement_token1] = ACTIONS(1166), - [aux_sym_for_statement_token1] = ACTIONS(1166), - [aux_sym_for_statement_token2] = ACTIONS(1166), - [aux_sym_foreach_statement_token1] = ACTIONS(1166), - [aux_sym_foreach_statement_token2] = ACTIONS(1166), - [aux_sym_if_statement_token1] = ACTIONS(1166), - [aux_sym_if_statement_token2] = ACTIONS(1166), - [aux_sym_else_if_clause_token1] = ACTIONS(1166), - [aux_sym_else_clause_token1] = ACTIONS(1166), - [aux_sym_match_expression_token1] = ACTIONS(1166), - [aux_sym_match_default_expression_token1] = ACTIONS(1166), - [aux_sym_switch_statement_token1] = ACTIONS(1166), - [aux_sym_switch_block_token1] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [aux_sym_clone_expression_token1] = ACTIONS(1166), - [aux_sym_print_intrinsic_token1] = ACTIONS(1166), - [aux_sym_object_creation_expression_token1] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1164), - [aux_sym__list_destructing_token1] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1164), - [anon_sym_self] = ACTIONS(1166), - [anon_sym_parent] = ACTIONS(1166), - [anon_sym_POUND_LBRACK] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [aux_sym_encapsed_string_token1] = ACTIONS(1164), - [anon_sym_DQUOTE] = ACTIONS(1164), - [aux_sym_string_token1] = ACTIONS(1164), - [anon_sym_LT_LT_LT] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [sym_boolean] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), - [anon_sym_DOLLAR] = ACTIONS(1164), - [aux_sym_yield_expression_token1] = ACTIONS(1166), - [aux_sym_include_expression_token1] = ACTIONS(1166), - [aux_sym_include_once_expression_token1] = ACTIONS(1166), - [aux_sym_require_expression_token1] = ACTIONS(1166), - [aux_sym_require_once_expression_token1] = ACTIONS(1166), - [sym_comment] = ACTIONS(5), - }, - [472] = { - [sym_text_interpolation] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_name] = ACTIONS(1170), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1168), - [aux_sym_function_static_declaration_token1] = ACTIONS(1170), - [aux_sym_global_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_definition_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), - [anon_sym_BSLASH] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [aux_sym_trait_declaration_token1] = ACTIONS(1170), - [aux_sym_interface_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_case_token1] = ACTIONS(1170), - [aux_sym_class_declaration_token1] = ACTIONS(1170), - [aux_sym_final_modifier_token1] = ACTIONS(1170), - [aux_sym_abstract_modifier_token1] = ACTIONS(1170), - [aux_sym_readonly_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token2] = ACTIONS(1170), - [aux_sym_visibility_modifier_token3] = ACTIONS(1170), - [aux_sym__arrow_function_header_token1] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1168), - [aux_sym_cast_type_token1] = ACTIONS(1170), - [aux_sym_echo_statement_token1] = ACTIONS(1170), - [anon_sym_unset] = ACTIONS(1170), - [aux_sym_declare_statement_token1] = ACTIONS(1170), - [aux_sym_declare_statement_token2] = ACTIONS(1170), - [sym_float] = ACTIONS(1170), - [aux_sym_try_statement_token1] = ACTIONS(1170), - [aux_sym_goto_statement_token1] = ACTIONS(1170), - [aux_sym_continue_statement_token1] = ACTIONS(1170), - [aux_sym_break_statement_token1] = ACTIONS(1170), - [sym_integer] = ACTIONS(1170), - [aux_sym_return_statement_token1] = ACTIONS(1170), - [aux_sym_throw_expression_token1] = ACTIONS(1170), - [aux_sym_while_statement_token1] = ACTIONS(1170), - [aux_sym_while_statement_token2] = ACTIONS(1170), - [aux_sym_do_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token2] = ACTIONS(1170), - [aux_sym_foreach_statement_token1] = ACTIONS(1170), - [aux_sym_foreach_statement_token2] = ACTIONS(1170), - [aux_sym_if_statement_token1] = ACTIONS(1170), - [aux_sym_if_statement_token2] = ACTIONS(1170), - [aux_sym_else_if_clause_token1] = ACTIONS(1170), - [aux_sym_else_clause_token1] = ACTIONS(1170), - [aux_sym_match_expression_token1] = ACTIONS(1170), - [aux_sym_match_default_expression_token1] = ACTIONS(1170), - [aux_sym_switch_statement_token1] = ACTIONS(1170), - [aux_sym_switch_block_token1] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [aux_sym_clone_expression_token1] = ACTIONS(1170), - [aux_sym_print_intrinsic_token1] = ACTIONS(1170), - [aux_sym_object_creation_expression_token1] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [aux_sym__list_destructing_token1] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_self] = ACTIONS(1170), - [anon_sym_parent] = ACTIONS(1170), - [anon_sym_POUND_LBRACK] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [aux_sym_encapsed_string_token1] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [aux_sym_string_token1] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1168), - [anon_sym_BQUOTE] = ACTIONS(1168), - [sym_boolean] = ACTIONS(1170), - [sym_null] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1168), - [aux_sym_yield_expression_token1] = ACTIONS(1170), - [aux_sym_include_expression_token1] = ACTIONS(1170), - [aux_sym_include_once_expression_token1] = ACTIONS(1170), - [aux_sym_require_expression_token1] = ACTIONS(1170), - [aux_sym_require_once_expression_token1] = ACTIONS(1170), - [sym_comment] = ACTIONS(5), - }, - [473] = { - [sym_text_interpolation] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_name] = ACTIONS(1174), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1172), - [aux_sym_function_static_declaration_token1] = ACTIONS(1174), - [aux_sym_global_declaration_token1] = ACTIONS(1174), - [aux_sym_namespace_definition_token1] = ACTIONS(1174), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1174), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1174), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1174), - [anon_sym_BSLASH] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [aux_sym_trait_declaration_token1] = ACTIONS(1174), - [aux_sym_interface_declaration_token1] = ACTIONS(1174), - [aux_sym_enum_declaration_token1] = ACTIONS(1174), - [aux_sym_enum_case_token1] = ACTIONS(1174), - [aux_sym_class_declaration_token1] = ACTIONS(1174), - [aux_sym_final_modifier_token1] = ACTIONS(1174), - [aux_sym_abstract_modifier_token1] = ACTIONS(1174), - [aux_sym_readonly_modifier_token1] = ACTIONS(1174), - [aux_sym_visibility_modifier_token1] = ACTIONS(1174), - [aux_sym_visibility_modifier_token2] = ACTIONS(1174), - [aux_sym_visibility_modifier_token3] = ACTIONS(1174), - [aux_sym__arrow_function_header_token1] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1172), - [aux_sym_cast_type_token1] = ACTIONS(1174), - [aux_sym_echo_statement_token1] = ACTIONS(1174), - [anon_sym_unset] = ACTIONS(1174), - [aux_sym_declare_statement_token1] = ACTIONS(1174), - [aux_sym_declare_statement_token2] = ACTIONS(1174), - [sym_float] = ACTIONS(1174), - [aux_sym_try_statement_token1] = ACTIONS(1174), - [aux_sym_goto_statement_token1] = ACTIONS(1174), - [aux_sym_continue_statement_token1] = ACTIONS(1174), - [aux_sym_break_statement_token1] = ACTIONS(1174), - [sym_integer] = ACTIONS(1174), - [aux_sym_return_statement_token1] = ACTIONS(1174), - [aux_sym_throw_expression_token1] = ACTIONS(1174), - [aux_sym_while_statement_token1] = ACTIONS(1174), - [aux_sym_while_statement_token2] = ACTIONS(1174), - [aux_sym_do_statement_token1] = ACTIONS(1174), - [aux_sym_for_statement_token1] = ACTIONS(1174), - [aux_sym_for_statement_token2] = ACTIONS(1174), - [aux_sym_foreach_statement_token1] = ACTIONS(1174), - [aux_sym_foreach_statement_token2] = ACTIONS(1174), - [aux_sym_if_statement_token1] = ACTIONS(1174), - [aux_sym_if_statement_token2] = ACTIONS(1174), - [aux_sym_else_if_clause_token1] = ACTIONS(1174), - [aux_sym_else_clause_token1] = ACTIONS(1174), - [aux_sym_match_expression_token1] = ACTIONS(1174), - [aux_sym_match_default_expression_token1] = ACTIONS(1174), - [aux_sym_switch_statement_token1] = ACTIONS(1174), - [aux_sym_switch_block_token1] = ACTIONS(1174), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [aux_sym_clone_expression_token1] = ACTIONS(1174), - [aux_sym_print_intrinsic_token1] = ACTIONS(1174), - [aux_sym_object_creation_expression_token1] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [aux_sym__list_destructing_token1] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_self] = ACTIONS(1174), - [anon_sym_parent] = ACTIONS(1174), - [anon_sym_POUND_LBRACK] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [aux_sym_encapsed_string_token1] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [aux_sym_string_token1] = ACTIONS(1172), - [anon_sym_LT_LT_LT] = ACTIONS(1172), - [anon_sym_BQUOTE] = ACTIONS(1172), - [sym_boolean] = ACTIONS(1174), - [sym_null] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1172), - [aux_sym_yield_expression_token1] = ACTIONS(1174), - [aux_sym_include_expression_token1] = ACTIONS(1174), - [aux_sym_include_once_expression_token1] = ACTIONS(1174), - [aux_sym_require_expression_token1] = ACTIONS(1174), - [aux_sym_require_once_expression_token1] = ACTIONS(1174), - [sym_comment] = ACTIONS(5), - }, - [474] = { - [sym_text_interpolation] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_name] = ACTIONS(1170), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1168), - [aux_sym_function_static_declaration_token1] = ACTIONS(1170), - [aux_sym_global_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_definition_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), - [anon_sym_BSLASH] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [aux_sym_trait_declaration_token1] = ACTIONS(1170), - [aux_sym_interface_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_case_token1] = ACTIONS(1170), - [aux_sym_class_declaration_token1] = ACTIONS(1170), - [aux_sym_final_modifier_token1] = ACTIONS(1170), - [aux_sym_abstract_modifier_token1] = ACTIONS(1170), - [aux_sym_readonly_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token2] = ACTIONS(1170), - [aux_sym_visibility_modifier_token3] = ACTIONS(1170), - [aux_sym__arrow_function_header_token1] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1168), - [aux_sym_cast_type_token1] = ACTIONS(1170), - [aux_sym_echo_statement_token1] = ACTIONS(1170), - [anon_sym_unset] = ACTIONS(1170), - [aux_sym_declare_statement_token1] = ACTIONS(1170), - [aux_sym_declare_statement_token2] = ACTIONS(1170), - [sym_float] = ACTIONS(1170), - [aux_sym_try_statement_token1] = ACTIONS(1170), - [aux_sym_goto_statement_token1] = ACTIONS(1170), - [aux_sym_continue_statement_token1] = ACTIONS(1170), - [aux_sym_break_statement_token1] = ACTIONS(1170), - [sym_integer] = ACTIONS(1170), - [aux_sym_return_statement_token1] = ACTIONS(1170), - [aux_sym_throw_expression_token1] = ACTIONS(1170), - [aux_sym_while_statement_token1] = ACTIONS(1170), - [aux_sym_while_statement_token2] = ACTIONS(1170), - [aux_sym_do_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token1] = ACTIONS(1170), - [aux_sym_for_statement_token2] = ACTIONS(1170), - [aux_sym_foreach_statement_token1] = ACTIONS(1170), - [aux_sym_foreach_statement_token2] = ACTIONS(1170), - [aux_sym_if_statement_token1] = ACTIONS(1170), - [aux_sym_if_statement_token2] = ACTIONS(1170), - [aux_sym_else_if_clause_token1] = ACTIONS(1170), - [aux_sym_else_clause_token1] = ACTIONS(1170), - [aux_sym_match_expression_token1] = ACTIONS(1170), - [aux_sym_match_default_expression_token1] = ACTIONS(1170), - [aux_sym_switch_statement_token1] = ACTIONS(1170), - [aux_sym_switch_block_token1] = ACTIONS(1170), - [anon_sym_AT] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [aux_sym_clone_expression_token1] = ACTIONS(1170), - [aux_sym_print_intrinsic_token1] = ACTIONS(1170), - [aux_sym_object_creation_expression_token1] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1168), - [aux_sym__list_destructing_token1] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_self] = ACTIONS(1170), - [anon_sym_parent] = ACTIONS(1170), - [anon_sym_POUND_LBRACK] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [aux_sym_encapsed_string_token1] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1168), - [aux_sym_string_token1] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1168), - [anon_sym_BQUOTE] = ACTIONS(1168), - [sym_boolean] = ACTIONS(1170), - [sym_null] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1168), - [aux_sym_yield_expression_token1] = ACTIONS(1170), - [aux_sym_include_expression_token1] = ACTIONS(1170), - [aux_sym_include_once_expression_token1] = ACTIONS(1170), - [aux_sym_require_expression_token1] = ACTIONS(1170), - [aux_sym_require_once_expression_token1] = ACTIONS(1170), - [sym_comment] = ACTIONS(5), - }, - [475] = { - [sym_text_interpolation] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_name] = ACTIONS(1178), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1176), - [aux_sym_function_static_declaration_token1] = ACTIONS(1178), - [aux_sym_global_declaration_token1] = ACTIONS(1178), - [aux_sym_namespace_definition_token1] = ACTIONS(1178), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1178), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1178), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1178), - [anon_sym_BSLASH] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [aux_sym_trait_declaration_token1] = ACTIONS(1178), - [aux_sym_interface_declaration_token1] = ACTIONS(1178), - [aux_sym_enum_declaration_token1] = ACTIONS(1178), - [aux_sym_enum_case_token1] = ACTIONS(1178), - [aux_sym_class_declaration_token1] = ACTIONS(1178), - [aux_sym_final_modifier_token1] = ACTIONS(1178), - [aux_sym_abstract_modifier_token1] = ACTIONS(1178), - [aux_sym_readonly_modifier_token1] = ACTIONS(1178), - [aux_sym_visibility_modifier_token1] = ACTIONS(1178), - [aux_sym_visibility_modifier_token2] = ACTIONS(1178), - [aux_sym_visibility_modifier_token3] = ACTIONS(1178), - [aux_sym__arrow_function_header_token1] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1176), - [aux_sym_cast_type_token1] = ACTIONS(1178), - [aux_sym_echo_statement_token1] = ACTIONS(1178), - [anon_sym_unset] = ACTIONS(1178), - [aux_sym_declare_statement_token1] = ACTIONS(1178), - [aux_sym_declare_statement_token2] = ACTIONS(1178), - [sym_float] = ACTIONS(1178), - [aux_sym_try_statement_token1] = ACTIONS(1178), - [aux_sym_goto_statement_token1] = ACTIONS(1178), - [aux_sym_continue_statement_token1] = ACTIONS(1178), - [aux_sym_break_statement_token1] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [aux_sym_return_statement_token1] = ACTIONS(1178), - [aux_sym_throw_expression_token1] = ACTIONS(1178), - [aux_sym_while_statement_token1] = ACTIONS(1178), - [aux_sym_while_statement_token2] = ACTIONS(1178), - [aux_sym_do_statement_token1] = ACTIONS(1178), - [aux_sym_for_statement_token1] = ACTIONS(1178), - [aux_sym_for_statement_token2] = ACTIONS(1178), - [aux_sym_foreach_statement_token1] = ACTIONS(1178), - [aux_sym_foreach_statement_token2] = ACTIONS(1178), - [aux_sym_if_statement_token1] = ACTIONS(1178), - [aux_sym_if_statement_token2] = ACTIONS(1178), - [aux_sym_else_if_clause_token1] = ACTIONS(1178), - [aux_sym_else_clause_token1] = ACTIONS(1178), - [aux_sym_match_expression_token1] = ACTIONS(1178), - [aux_sym_match_default_expression_token1] = ACTIONS(1178), - [aux_sym_switch_statement_token1] = ACTIONS(1178), - [aux_sym_switch_block_token1] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [aux_sym_clone_expression_token1] = ACTIONS(1178), - [aux_sym_print_intrinsic_token1] = ACTIONS(1178), - [aux_sym_object_creation_expression_token1] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [aux_sym__list_destructing_token1] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_self] = ACTIONS(1178), - [anon_sym_parent] = ACTIONS(1178), - [anon_sym_POUND_LBRACK] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [aux_sym_encapsed_string_token1] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [aux_sym_string_token1] = ACTIONS(1176), - [anon_sym_LT_LT_LT] = ACTIONS(1176), - [anon_sym_BQUOTE] = ACTIONS(1176), - [sym_boolean] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1176), - [aux_sym_yield_expression_token1] = ACTIONS(1178), - [aux_sym_include_expression_token1] = ACTIONS(1178), - [aux_sym_include_once_expression_token1] = ACTIONS(1178), - [aux_sym_require_expression_token1] = ACTIONS(1178), - [aux_sym_require_once_expression_token1] = ACTIONS(1178), - [sym_comment] = ACTIONS(5), - }, - [476] = { - [sym_text_interpolation] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(1180), - [sym_name] = ACTIONS(1182), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1180), - [aux_sym_function_static_declaration_token1] = ACTIONS(1182), - [aux_sym_global_declaration_token1] = ACTIONS(1182), - [aux_sym_namespace_definition_token1] = ACTIONS(1182), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), - [anon_sym_BSLASH] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1180), - [aux_sym_trait_declaration_token1] = ACTIONS(1182), - [aux_sym_interface_declaration_token1] = ACTIONS(1182), - [aux_sym_enum_declaration_token1] = ACTIONS(1182), - [aux_sym_enum_case_token1] = ACTIONS(1182), - [aux_sym_class_declaration_token1] = ACTIONS(1182), - [aux_sym_final_modifier_token1] = ACTIONS(1182), - [aux_sym_abstract_modifier_token1] = ACTIONS(1182), - [aux_sym_readonly_modifier_token1] = ACTIONS(1182), - [aux_sym_visibility_modifier_token1] = ACTIONS(1182), - [aux_sym_visibility_modifier_token2] = ACTIONS(1182), - [aux_sym_visibility_modifier_token3] = ACTIONS(1182), - [aux_sym__arrow_function_header_token1] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1180), - [aux_sym_cast_type_token1] = ACTIONS(1182), - [aux_sym_echo_statement_token1] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1182), - [aux_sym_declare_statement_token1] = ACTIONS(1182), - [aux_sym_declare_statement_token2] = ACTIONS(1182), - [sym_float] = ACTIONS(1182), - [aux_sym_try_statement_token1] = ACTIONS(1182), - [aux_sym_goto_statement_token1] = ACTIONS(1182), - [aux_sym_continue_statement_token1] = ACTIONS(1182), - [aux_sym_break_statement_token1] = ACTIONS(1182), - [sym_integer] = ACTIONS(1182), - [aux_sym_return_statement_token1] = ACTIONS(1182), - [aux_sym_throw_expression_token1] = ACTIONS(1182), - [aux_sym_while_statement_token1] = ACTIONS(1182), - [aux_sym_while_statement_token2] = ACTIONS(1182), - [aux_sym_do_statement_token1] = ACTIONS(1182), - [aux_sym_for_statement_token1] = ACTIONS(1182), - [aux_sym_for_statement_token2] = ACTIONS(1182), - [aux_sym_foreach_statement_token1] = ACTIONS(1182), - [aux_sym_foreach_statement_token2] = ACTIONS(1182), - [aux_sym_if_statement_token1] = ACTIONS(1182), - [aux_sym_if_statement_token2] = ACTIONS(1182), - [aux_sym_else_if_clause_token1] = ACTIONS(1182), - [aux_sym_else_clause_token1] = ACTIONS(1182), - [aux_sym_match_expression_token1] = ACTIONS(1182), - [aux_sym_match_default_expression_token1] = ACTIONS(1182), - [aux_sym_switch_statement_token1] = ACTIONS(1182), - [aux_sym_switch_block_token1] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [aux_sym_clone_expression_token1] = ACTIONS(1182), - [aux_sym_print_intrinsic_token1] = ACTIONS(1182), - [aux_sym_object_creation_expression_token1] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [aux_sym__list_destructing_token1] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_self] = ACTIONS(1182), - [anon_sym_parent] = ACTIONS(1182), - [anon_sym_POUND_LBRACK] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [aux_sym_encapsed_string_token1] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [aux_sym_string_token1] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [sym_boolean] = ACTIONS(1182), - [sym_null] = ACTIONS(1182), - [anon_sym_DOLLAR] = ACTIONS(1180), - [aux_sym_yield_expression_token1] = ACTIONS(1182), - [aux_sym_include_expression_token1] = ACTIONS(1182), - [aux_sym_include_once_expression_token1] = ACTIONS(1182), - [aux_sym_require_expression_token1] = ACTIONS(1182), - [aux_sym_require_once_expression_token1] = ACTIONS(1182), - [sym_comment] = ACTIONS(5), - }, - [477] = { - [sym_text_interpolation] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_name] = ACTIONS(1186), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1184), - [aux_sym_function_static_declaration_token1] = ACTIONS(1186), - [aux_sym_global_declaration_token1] = ACTIONS(1186), - [aux_sym_namespace_definition_token1] = ACTIONS(1186), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1186), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1186), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1186), - [anon_sym_BSLASH] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [aux_sym_trait_declaration_token1] = ACTIONS(1186), - [aux_sym_interface_declaration_token1] = ACTIONS(1186), - [aux_sym_enum_declaration_token1] = ACTIONS(1186), - [aux_sym_enum_case_token1] = ACTIONS(1186), - [aux_sym_class_declaration_token1] = ACTIONS(1186), - [aux_sym_final_modifier_token1] = ACTIONS(1186), - [aux_sym_abstract_modifier_token1] = ACTIONS(1186), - [aux_sym_readonly_modifier_token1] = ACTIONS(1186), - [aux_sym_visibility_modifier_token1] = ACTIONS(1186), - [aux_sym_visibility_modifier_token2] = ACTIONS(1186), - [aux_sym_visibility_modifier_token3] = ACTIONS(1186), - [aux_sym__arrow_function_header_token1] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1184), - [aux_sym_cast_type_token1] = ACTIONS(1186), - [aux_sym_echo_statement_token1] = ACTIONS(1186), - [anon_sym_unset] = ACTIONS(1186), - [aux_sym_declare_statement_token1] = ACTIONS(1186), - [aux_sym_declare_statement_token2] = ACTIONS(1186), - [sym_float] = ACTIONS(1186), - [aux_sym_try_statement_token1] = ACTIONS(1186), - [aux_sym_goto_statement_token1] = ACTIONS(1186), - [aux_sym_continue_statement_token1] = ACTIONS(1186), - [aux_sym_break_statement_token1] = ACTIONS(1186), - [sym_integer] = ACTIONS(1186), - [aux_sym_return_statement_token1] = ACTIONS(1186), - [aux_sym_throw_expression_token1] = ACTIONS(1186), - [aux_sym_while_statement_token1] = ACTIONS(1186), - [aux_sym_while_statement_token2] = ACTIONS(1186), - [aux_sym_do_statement_token1] = ACTIONS(1186), - [aux_sym_for_statement_token1] = ACTIONS(1186), - [aux_sym_for_statement_token2] = ACTIONS(1186), - [aux_sym_foreach_statement_token1] = ACTIONS(1186), - [aux_sym_foreach_statement_token2] = ACTIONS(1186), - [aux_sym_if_statement_token1] = ACTIONS(1186), - [aux_sym_if_statement_token2] = ACTIONS(1186), - [aux_sym_else_if_clause_token1] = ACTIONS(1186), - [aux_sym_else_clause_token1] = ACTIONS(1186), - [aux_sym_match_expression_token1] = ACTIONS(1186), - [aux_sym_match_default_expression_token1] = ACTIONS(1186), - [aux_sym_switch_statement_token1] = ACTIONS(1186), - [aux_sym_switch_block_token1] = ACTIONS(1186), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [aux_sym_clone_expression_token1] = ACTIONS(1186), - [aux_sym_print_intrinsic_token1] = ACTIONS(1186), - [aux_sym_object_creation_expression_token1] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [aux_sym__list_destructing_token1] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_self] = ACTIONS(1186), - [anon_sym_parent] = ACTIONS(1186), - [anon_sym_POUND_LBRACK] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [aux_sym_encapsed_string_token1] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [aux_sym_string_token1] = ACTIONS(1184), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [sym_boolean] = ACTIONS(1186), - [sym_null] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1184), - [aux_sym_yield_expression_token1] = ACTIONS(1186), - [aux_sym_include_expression_token1] = ACTIONS(1186), - [aux_sym_include_once_expression_token1] = ACTIONS(1186), - [aux_sym_require_expression_token1] = ACTIONS(1186), - [aux_sym_require_once_expression_token1] = ACTIONS(1186), - [sym_comment] = ACTIONS(5), - }, - [478] = { - [sym_text_interpolation] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_name] = ACTIONS(1190), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1188), - [aux_sym_function_static_declaration_token1] = ACTIONS(1190), - [aux_sym_global_declaration_token1] = ACTIONS(1190), - [aux_sym_namespace_definition_token1] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), - [anon_sym_BSLASH] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [aux_sym_trait_declaration_token1] = ACTIONS(1190), - [aux_sym_interface_declaration_token1] = ACTIONS(1190), - [aux_sym_enum_declaration_token1] = ACTIONS(1190), - [aux_sym_enum_case_token1] = ACTIONS(1190), - [aux_sym_class_declaration_token1] = ACTIONS(1190), - [aux_sym_final_modifier_token1] = ACTIONS(1190), - [aux_sym_abstract_modifier_token1] = ACTIONS(1190), - [aux_sym_readonly_modifier_token1] = ACTIONS(1190), - [aux_sym_visibility_modifier_token1] = ACTIONS(1190), - [aux_sym_visibility_modifier_token2] = ACTIONS(1190), - [aux_sym_visibility_modifier_token3] = ACTIONS(1190), - [aux_sym__arrow_function_header_token1] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1188), - [aux_sym_cast_type_token1] = ACTIONS(1190), - [aux_sym_echo_statement_token1] = ACTIONS(1190), - [anon_sym_unset] = ACTIONS(1190), - [aux_sym_declare_statement_token1] = ACTIONS(1190), - [aux_sym_declare_statement_token2] = ACTIONS(1190), - [sym_float] = ACTIONS(1190), - [aux_sym_try_statement_token1] = ACTIONS(1190), - [aux_sym_goto_statement_token1] = ACTIONS(1190), - [aux_sym_continue_statement_token1] = ACTIONS(1190), - [aux_sym_break_statement_token1] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [aux_sym_return_statement_token1] = ACTIONS(1190), - [aux_sym_throw_expression_token1] = ACTIONS(1190), - [aux_sym_while_statement_token1] = ACTIONS(1190), - [aux_sym_while_statement_token2] = ACTIONS(1190), - [aux_sym_do_statement_token1] = ACTIONS(1190), - [aux_sym_for_statement_token1] = ACTIONS(1190), - [aux_sym_for_statement_token2] = ACTIONS(1190), - [aux_sym_foreach_statement_token1] = ACTIONS(1190), - [aux_sym_foreach_statement_token2] = ACTIONS(1190), - [aux_sym_if_statement_token1] = ACTIONS(1190), - [aux_sym_if_statement_token2] = ACTIONS(1190), - [aux_sym_else_if_clause_token1] = ACTIONS(1190), - [aux_sym_else_clause_token1] = ACTIONS(1190), - [aux_sym_match_expression_token1] = ACTIONS(1190), - [aux_sym_match_default_expression_token1] = ACTIONS(1190), - [aux_sym_switch_statement_token1] = ACTIONS(1190), - [aux_sym_switch_block_token1] = ACTIONS(1190), - [anon_sym_AT] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [aux_sym_clone_expression_token1] = ACTIONS(1190), - [aux_sym_print_intrinsic_token1] = ACTIONS(1190), - [aux_sym_object_creation_expression_token1] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [aux_sym__list_destructing_token1] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_self] = ACTIONS(1190), - [anon_sym_parent] = ACTIONS(1190), - [anon_sym_POUND_LBRACK] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [aux_sym_encapsed_string_token1] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [aux_sym_string_token1] = ACTIONS(1188), - [anon_sym_LT_LT_LT] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_boolean] = ACTIONS(1190), - [sym_null] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1188), - [aux_sym_yield_expression_token1] = ACTIONS(1190), - [aux_sym_include_expression_token1] = ACTIONS(1190), - [aux_sym_include_once_expression_token1] = ACTIONS(1190), - [aux_sym_require_expression_token1] = ACTIONS(1190), - [aux_sym_require_once_expression_token1] = ACTIONS(1190), - [sym_comment] = ACTIONS(5), - }, - [479] = { - [sym_text_interpolation] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_name] = ACTIONS(1194), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1192), - [aux_sym_function_static_declaration_token1] = ACTIONS(1194), - [aux_sym_global_declaration_token1] = ACTIONS(1194), - [aux_sym_namespace_definition_token1] = ACTIONS(1194), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1194), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1194), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1194), - [anon_sym_BSLASH] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [aux_sym_trait_declaration_token1] = ACTIONS(1194), - [aux_sym_interface_declaration_token1] = ACTIONS(1194), - [aux_sym_enum_declaration_token1] = ACTIONS(1194), - [aux_sym_enum_case_token1] = ACTIONS(1194), - [aux_sym_class_declaration_token1] = ACTIONS(1194), - [aux_sym_final_modifier_token1] = ACTIONS(1194), - [aux_sym_abstract_modifier_token1] = ACTIONS(1194), - [aux_sym_readonly_modifier_token1] = ACTIONS(1194), - [aux_sym_visibility_modifier_token1] = ACTIONS(1194), - [aux_sym_visibility_modifier_token2] = ACTIONS(1194), - [aux_sym_visibility_modifier_token3] = ACTIONS(1194), - [aux_sym__arrow_function_header_token1] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1192), - [aux_sym_cast_type_token1] = ACTIONS(1194), - [aux_sym_echo_statement_token1] = ACTIONS(1194), - [anon_sym_unset] = ACTIONS(1194), - [aux_sym_declare_statement_token1] = ACTIONS(1194), - [aux_sym_declare_statement_token2] = ACTIONS(1194), - [sym_float] = ACTIONS(1194), - [aux_sym_try_statement_token1] = ACTIONS(1194), - [aux_sym_goto_statement_token1] = ACTIONS(1194), - [aux_sym_continue_statement_token1] = ACTIONS(1194), - [aux_sym_break_statement_token1] = ACTIONS(1194), - [sym_integer] = ACTIONS(1194), - [aux_sym_return_statement_token1] = ACTIONS(1194), - [aux_sym_throw_expression_token1] = ACTIONS(1194), - [aux_sym_while_statement_token1] = ACTIONS(1194), - [aux_sym_while_statement_token2] = ACTIONS(1194), - [aux_sym_do_statement_token1] = ACTIONS(1194), - [aux_sym_for_statement_token1] = ACTIONS(1194), - [aux_sym_for_statement_token2] = ACTIONS(1194), - [aux_sym_foreach_statement_token1] = ACTIONS(1194), - [aux_sym_foreach_statement_token2] = ACTIONS(1194), - [aux_sym_if_statement_token1] = ACTIONS(1194), - [aux_sym_if_statement_token2] = ACTIONS(1194), - [aux_sym_else_if_clause_token1] = ACTIONS(1194), - [aux_sym_else_clause_token1] = ACTIONS(1194), - [aux_sym_match_expression_token1] = ACTIONS(1194), - [aux_sym_match_default_expression_token1] = ACTIONS(1194), - [aux_sym_switch_statement_token1] = ACTIONS(1194), - [aux_sym_switch_block_token1] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [aux_sym_clone_expression_token1] = ACTIONS(1194), - [aux_sym_print_intrinsic_token1] = ACTIONS(1194), - [aux_sym_object_creation_expression_token1] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [aux_sym__list_destructing_token1] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_self] = ACTIONS(1194), - [anon_sym_parent] = ACTIONS(1194), - [anon_sym_POUND_LBRACK] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [aux_sym_encapsed_string_token1] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [aux_sym_string_token1] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_BQUOTE] = ACTIONS(1192), - [sym_boolean] = ACTIONS(1194), - [sym_null] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1192), - [aux_sym_yield_expression_token1] = ACTIONS(1194), - [aux_sym_include_expression_token1] = ACTIONS(1194), - [aux_sym_include_once_expression_token1] = ACTIONS(1194), - [aux_sym_require_expression_token1] = ACTIONS(1194), - [aux_sym_require_once_expression_token1] = ACTIONS(1194), - [sym_comment] = ACTIONS(5), - }, - [480] = { - [sym_text_interpolation] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_name] = ACTIONS(1198), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1196), - [aux_sym_function_static_declaration_token1] = ACTIONS(1198), - [aux_sym_global_declaration_token1] = ACTIONS(1198), - [aux_sym_namespace_definition_token1] = ACTIONS(1198), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), - [anon_sym_BSLASH] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [aux_sym_trait_declaration_token1] = ACTIONS(1198), - [aux_sym_interface_declaration_token1] = ACTIONS(1198), - [aux_sym_enum_declaration_token1] = ACTIONS(1198), - [aux_sym_enum_case_token1] = ACTIONS(1198), - [aux_sym_class_declaration_token1] = ACTIONS(1198), - [aux_sym_final_modifier_token1] = ACTIONS(1198), - [aux_sym_abstract_modifier_token1] = ACTIONS(1198), - [aux_sym_readonly_modifier_token1] = ACTIONS(1198), - [aux_sym_visibility_modifier_token1] = ACTIONS(1198), - [aux_sym_visibility_modifier_token2] = ACTIONS(1198), - [aux_sym_visibility_modifier_token3] = ACTIONS(1198), - [aux_sym__arrow_function_header_token1] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1196), - [aux_sym_cast_type_token1] = ACTIONS(1198), - [aux_sym_echo_statement_token1] = ACTIONS(1198), - [anon_sym_unset] = ACTIONS(1198), - [aux_sym_declare_statement_token1] = ACTIONS(1198), - [aux_sym_declare_statement_token2] = ACTIONS(1198), - [sym_float] = ACTIONS(1198), - [aux_sym_try_statement_token1] = ACTIONS(1198), - [aux_sym_goto_statement_token1] = ACTIONS(1198), - [aux_sym_continue_statement_token1] = ACTIONS(1198), - [aux_sym_break_statement_token1] = ACTIONS(1198), - [sym_integer] = ACTIONS(1198), - [aux_sym_return_statement_token1] = ACTIONS(1198), - [aux_sym_throw_expression_token1] = ACTIONS(1198), - [aux_sym_while_statement_token1] = ACTIONS(1198), - [aux_sym_while_statement_token2] = ACTIONS(1198), - [aux_sym_do_statement_token1] = ACTIONS(1198), - [aux_sym_for_statement_token1] = ACTIONS(1198), - [aux_sym_for_statement_token2] = ACTIONS(1198), - [aux_sym_foreach_statement_token1] = ACTIONS(1198), - [aux_sym_foreach_statement_token2] = ACTIONS(1198), - [aux_sym_if_statement_token1] = ACTIONS(1198), - [aux_sym_if_statement_token2] = ACTIONS(1198), - [aux_sym_else_if_clause_token1] = ACTIONS(1198), - [aux_sym_else_clause_token1] = ACTIONS(1198), - [aux_sym_match_expression_token1] = ACTIONS(1198), - [aux_sym_match_default_expression_token1] = ACTIONS(1198), - [aux_sym_switch_statement_token1] = ACTIONS(1198), - [aux_sym_switch_block_token1] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [aux_sym_clone_expression_token1] = ACTIONS(1198), - [aux_sym_print_intrinsic_token1] = ACTIONS(1198), - [aux_sym_object_creation_expression_token1] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [aux_sym__list_destructing_token1] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_self] = ACTIONS(1198), - [anon_sym_parent] = ACTIONS(1198), - [anon_sym_POUND_LBRACK] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [aux_sym_encapsed_string_token1] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [aux_sym_string_token1] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [sym_boolean] = ACTIONS(1198), - [sym_null] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1196), - [aux_sym_yield_expression_token1] = ACTIONS(1198), - [aux_sym_include_expression_token1] = ACTIONS(1198), - [aux_sym_include_once_expression_token1] = ACTIONS(1198), - [aux_sym_require_expression_token1] = ACTIONS(1198), - [aux_sym_require_once_expression_token1] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - }, - [481] = { - [sym_text_interpolation] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_name] = ACTIONS(1202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1200), - [aux_sym_function_static_declaration_token1] = ACTIONS(1202), - [aux_sym_global_declaration_token1] = ACTIONS(1202), - [aux_sym_namespace_definition_token1] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), - [anon_sym_BSLASH] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [aux_sym_trait_declaration_token1] = ACTIONS(1202), - [aux_sym_interface_declaration_token1] = ACTIONS(1202), - [aux_sym_enum_declaration_token1] = ACTIONS(1202), - [aux_sym_enum_case_token1] = ACTIONS(1202), - [aux_sym_class_declaration_token1] = ACTIONS(1202), - [aux_sym_final_modifier_token1] = ACTIONS(1202), - [aux_sym_abstract_modifier_token1] = ACTIONS(1202), - [aux_sym_readonly_modifier_token1] = ACTIONS(1202), - [aux_sym_visibility_modifier_token1] = ACTIONS(1202), - [aux_sym_visibility_modifier_token2] = ACTIONS(1202), - [aux_sym_visibility_modifier_token3] = ACTIONS(1202), - [aux_sym__arrow_function_header_token1] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1200), - [aux_sym_cast_type_token1] = ACTIONS(1202), - [aux_sym_echo_statement_token1] = ACTIONS(1202), - [anon_sym_unset] = ACTIONS(1202), - [aux_sym_declare_statement_token1] = ACTIONS(1202), - [aux_sym_declare_statement_token2] = ACTIONS(1202), - [sym_float] = ACTIONS(1202), - [aux_sym_try_statement_token1] = ACTIONS(1202), - [aux_sym_goto_statement_token1] = ACTIONS(1202), - [aux_sym_continue_statement_token1] = ACTIONS(1202), - [aux_sym_break_statement_token1] = ACTIONS(1202), - [sym_integer] = ACTIONS(1202), - [aux_sym_return_statement_token1] = ACTIONS(1202), - [aux_sym_throw_expression_token1] = ACTIONS(1202), - [aux_sym_while_statement_token1] = ACTIONS(1202), - [aux_sym_while_statement_token2] = ACTIONS(1202), - [aux_sym_do_statement_token1] = ACTIONS(1202), - [aux_sym_for_statement_token1] = ACTIONS(1202), - [aux_sym_for_statement_token2] = ACTIONS(1202), - [aux_sym_foreach_statement_token1] = ACTIONS(1202), - [aux_sym_foreach_statement_token2] = ACTIONS(1202), - [aux_sym_if_statement_token1] = ACTIONS(1202), - [aux_sym_if_statement_token2] = ACTIONS(1202), - [aux_sym_else_if_clause_token1] = ACTIONS(1202), - [aux_sym_else_clause_token1] = ACTIONS(1202), - [aux_sym_match_expression_token1] = ACTIONS(1202), - [aux_sym_match_default_expression_token1] = ACTIONS(1202), - [aux_sym_switch_statement_token1] = ACTIONS(1202), - [aux_sym_switch_block_token1] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [aux_sym_clone_expression_token1] = ACTIONS(1202), - [aux_sym_print_intrinsic_token1] = ACTIONS(1202), - [aux_sym_object_creation_expression_token1] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [aux_sym__list_destructing_token1] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_self] = ACTIONS(1202), - [anon_sym_parent] = ACTIONS(1202), - [anon_sym_POUND_LBRACK] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [aux_sym_encapsed_string_token1] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [aux_sym_string_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_BQUOTE] = ACTIONS(1200), - [sym_boolean] = ACTIONS(1202), - [sym_null] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1200), - [aux_sym_yield_expression_token1] = ACTIONS(1202), - [aux_sym_include_expression_token1] = ACTIONS(1202), - [aux_sym_include_once_expression_token1] = ACTIONS(1202), - [aux_sym_require_expression_token1] = ACTIONS(1202), - [aux_sym_require_once_expression_token1] = ACTIONS(1202), - [sym_comment] = ACTIONS(5), - }, - [482] = { - [sym_text_interpolation] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_name] = ACTIONS(1206), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1204), - [aux_sym_function_static_declaration_token1] = ACTIONS(1206), - [aux_sym_global_declaration_token1] = ACTIONS(1206), - [aux_sym_namespace_definition_token1] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1206), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1206), - [anon_sym_BSLASH] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [aux_sym_trait_declaration_token1] = ACTIONS(1206), - [aux_sym_interface_declaration_token1] = ACTIONS(1206), - [aux_sym_enum_declaration_token1] = ACTIONS(1206), - [aux_sym_enum_case_token1] = ACTIONS(1206), - [aux_sym_class_declaration_token1] = ACTIONS(1206), - [aux_sym_final_modifier_token1] = ACTIONS(1206), - [aux_sym_abstract_modifier_token1] = ACTIONS(1206), - [aux_sym_readonly_modifier_token1] = ACTIONS(1206), - [aux_sym_visibility_modifier_token1] = ACTIONS(1206), - [aux_sym_visibility_modifier_token2] = ACTIONS(1206), - [aux_sym_visibility_modifier_token3] = ACTIONS(1206), - [aux_sym__arrow_function_header_token1] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [aux_sym_cast_type_token1] = ACTIONS(1206), - [aux_sym_echo_statement_token1] = ACTIONS(1206), - [anon_sym_unset] = ACTIONS(1206), - [aux_sym_declare_statement_token1] = ACTIONS(1206), - [aux_sym_declare_statement_token2] = ACTIONS(1206), - [sym_float] = ACTIONS(1206), - [aux_sym_try_statement_token1] = ACTIONS(1206), - [aux_sym_goto_statement_token1] = ACTIONS(1206), - [aux_sym_continue_statement_token1] = ACTIONS(1206), - [aux_sym_break_statement_token1] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [aux_sym_return_statement_token1] = ACTIONS(1206), - [aux_sym_throw_expression_token1] = ACTIONS(1206), - [aux_sym_while_statement_token1] = ACTIONS(1206), - [aux_sym_while_statement_token2] = ACTIONS(1206), - [aux_sym_do_statement_token1] = ACTIONS(1206), - [aux_sym_for_statement_token1] = ACTIONS(1206), - [aux_sym_for_statement_token2] = ACTIONS(1206), - [aux_sym_foreach_statement_token1] = ACTIONS(1206), - [aux_sym_foreach_statement_token2] = ACTIONS(1206), - [aux_sym_if_statement_token1] = ACTIONS(1206), - [aux_sym_if_statement_token2] = ACTIONS(1206), - [aux_sym_else_if_clause_token1] = ACTIONS(1206), - [aux_sym_else_clause_token1] = ACTIONS(1206), - [aux_sym_match_expression_token1] = ACTIONS(1206), - [aux_sym_match_default_expression_token1] = ACTIONS(1206), - [aux_sym_switch_statement_token1] = ACTIONS(1206), - [aux_sym_switch_block_token1] = ACTIONS(1206), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [aux_sym_clone_expression_token1] = ACTIONS(1206), - [aux_sym_print_intrinsic_token1] = ACTIONS(1206), - [aux_sym_object_creation_expression_token1] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [aux_sym__list_destructing_token1] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_self] = ACTIONS(1206), - [anon_sym_parent] = ACTIONS(1206), - [anon_sym_POUND_LBRACK] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [aux_sym_encapsed_string_token1] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [aux_sym_string_token1] = ACTIONS(1204), - [anon_sym_LT_LT_LT] = ACTIONS(1204), - [anon_sym_BQUOTE] = ACTIONS(1204), - [sym_boolean] = ACTIONS(1206), - [sym_null] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1204), - [aux_sym_yield_expression_token1] = ACTIONS(1206), - [aux_sym_include_expression_token1] = ACTIONS(1206), - [aux_sym_include_once_expression_token1] = ACTIONS(1206), - [aux_sym_require_expression_token1] = ACTIONS(1206), - [aux_sym_require_once_expression_token1] = ACTIONS(1206), - [sym_comment] = ACTIONS(5), - }, - [483] = { - [sym_text_interpolation] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_name] = ACTIONS(1210), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1208), - [aux_sym_function_static_declaration_token1] = ACTIONS(1210), - [aux_sym_global_declaration_token1] = ACTIONS(1210), - [aux_sym_namespace_definition_token1] = ACTIONS(1210), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1210), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1210), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1210), - [anon_sym_BSLASH] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [aux_sym_trait_declaration_token1] = ACTIONS(1210), - [aux_sym_interface_declaration_token1] = ACTIONS(1210), - [aux_sym_enum_declaration_token1] = ACTIONS(1210), - [aux_sym_enum_case_token1] = ACTIONS(1210), - [aux_sym_class_declaration_token1] = ACTIONS(1210), - [aux_sym_final_modifier_token1] = ACTIONS(1210), - [aux_sym_abstract_modifier_token1] = ACTIONS(1210), - [aux_sym_readonly_modifier_token1] = ACTIONS(1210), - [aux_sym_visibility_modifier_token1] = ACTIONS(1210), - [aux_sym_visibility_modifier_token2] = ACTIONS(1210), - [aux_sym_visibility_modifier_token3] = ACTIONS(1210), - [aux_sym__arrow_function_header_token1] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1208), - [aux_sym_cast_type_token1] = ACTIONS(1210), - [aux_sym_echo_statement_token1] = ACTIONS(1210), - [anon_sym_unset] = ACTIONS(1210), - [aux_sym_declare_statement_token1] = ACTIONS(1210), - [aux_sym_declare_statement_token2] = ACTIONS(1210), - [sym_float] = ACTIONS(1210), - [aux_sym_try_statement_token1] = ACTIONS(1210), - [aux_sym_goto_statement_token1] = ACTIONS(1210), - [aux_sym_continue_statement_token1] = ACTIONS(1210), - [aux_sym_break_statement_token1] = ACTIONS(1210), - [sym_integer] = ACTIONS(1210), - [aux_sym_return_statement_token1] = ACTIONS(1210), - [aux_sym_throw_expression_token1] = ACTIONS(1210), - [aux_sym_while_statement_token1] = ACTIONS(1210), - [aux_sym_while_statement_token2] = ACTIONS(1210), - [aux_sym_do_statement_token1] = ACTIONS(1210), - [aux_sym_for_statement_token1] = ACTIONS(1210), - [aux_sym_for_statement_token2] = ACTIONS(1210), - [aux_sym_foreach_statement_token1] = ACTIONS(1210), - [aux_sym_foreach_statement_token2] = ACTIONS(1210), - [aux_sym_if_statement_token1] = ACTIONS(1210), - [aux_sym_if_statement_token2] = ACTIONS(1210), - [aux_sym_else_if_clause_token1] = ACTIONS(1210), - [aux_sym_else_clause_token1] = ACTIONS(1210), - [aux_sym_match_expression_token1] = ACTIONS(1210), - [aux_sym_match_default_expression_token1] = ACTIONS(1210), - [aux_sym_switch_statement_token1] = ACTIONS(1210), - [aux_sym_switch_block_token1] = ACTIONS(1210), - [anon_sym_AT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [aux_sym_clone_expression_token1] = ACTIONS(1210), - [aux_sym_print_intrinsic_token1] = ACTIONS(1210), - [aux_sym_object_creation_expression_token1] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [aux_sym__list_destructing_token1] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1208), - [anon_sym_self] = ACTIONS(1210), - [anon_sym_parent] = ACTIONS(1210), - [anon_sym_POUND_LBRACK] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [aux_sym_encapsed_string_token1] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [aux_sym_string_token1] = ACTIONS(1208), - [anon_sym_LT_LT_LT] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [sym_boolean] = ACTIONS(1210), - [sym_null] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1208), - [aux_sym_yield_expression_token1] = ACTIONS(1210), - [aux_sym_include_expression_token1] = ACTIONS(1210), - [aux_sym_include_once_expression_token1] = ACTIONS(1210), - [aux_sym_require_expression_token1] = ACTIONS(1210), - [aux_sym_require_once_expression_token1] = ACTIONS(1210), - [sym_comment] = ACTIONS(5), - }, - [484] = { - [sym_text_interpolation] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_name] = ACTIONS(1214), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1212), - [aux_sym_function_static_declaration_token1] = ACTIONS(1214), - [aux_sym_global_declaration_token1] = ACTIONS(1214), - [aux_sym_namespace_definition_token1] = ACTIONS(1214), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1214), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1214), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1214), - [anon_sym_BSLASH] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [aux_sym_trait_declaration_token1] = ACTIONS(1214), - [aux_sym_interface_declaration_token1] = ACTIONS(1214), - [aux_sym_enum_declaration_token1] = ACTIONS(1214), - [aux_sym_enum_case_token1] = ACTIONS(1214), - [aux_sym_class_declaration_token1] = ACTIONS(1214), - [aux_sym_final_modifier_token1] = ACTIONS(1214), - [aux_sym_abstract_modifier_token1] = ACTIONS(1214), - [aux_sym_readonly_modifier_token1] = ACTIONS(1214), - [aux_sym_visibility_modifier_token1] = ACTIONS(1214), - [aux_sym_visibility_modifier_token2] = ACTIONS(1214), - [aux_sym_visibility_modifier_token3] = ACTIONS(1214), - [aux_sym__arrow_function_header_token1] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1212), - [aux_sym_cast_type_token1] = ACTIONS(1214), - [aux_sym_echo_statement_token1] = ACTIONS(1214), - [anon_sym_unset] = ACTIONS(1214), - [aux_sym_declare_statement_token1] = ACTIONS(1214), - [aux_sym_declare_statement_token2] = ACTIONS(1214), - [sym_float] = ACTIONS(1214), - [aux_sym_try_statement_token1] = ACTIONS(1214), - [aux_sym_goto_statement_token1] = ACTIONS(1214), - [aux_sym_continue_statement_token1] = ACTIONS(1214), - [aux_sym_break_statement_token1] = ACTIONS(1214), - [sym_integer] = ACTIONS(1214), - [aux_sym_return_statement_token1] = ACTIONS(1214), - [aux_sym_throw_expression_token1] = ACTIONS(1214), - [aux_sym_while_statement_token1] = ACTIONS(1214), - [aux_sym_while_statement_token2] = ACTIONS(1214), - [aux_sym_do_statement_token1] = ACTIONS(1214), - [aux_sym_for_statement_token1] = ACTIONS(1214), - [aux_sym_for_statement_token2] = ACTIONS(1214), - [aux_sym_foreach_statement_token1] = ACTIONS(1214), - [aux_sym_foreach_statement_token2] = ACTIONS(1214), - [aux_sym_if_statement_token1] = ACTIONS(1214), - [aux_sym_if_statement_token2] = ACTIONS(1214), - [aux_sym_else_if_clause_token1] = ACTIONS(1214), - [aux_sym_else_clause_token1] = ACTIONS(1214), - [aux_sym_match_expression_token1] = ACTIONS(1214), - [aux_sym_match_default_expression_token1] = ACTIONS(1214), - [aux_sym_switch_statement_token1] = ACTIONS(1214), - [aux_sym_switch_block_token1] = ACTIONS(1214), - [anon_sym_AT] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [aux_sym_clone_expression_token1] = ACTIONS(1214), - [aux_sym_print_intrinsic_token1] = ACTIONS(1214), - [aux_sym_object_creation_expression_token1] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [aux_sym__list_destructing_token1] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1212), - [anon_sym_self] = ACTIONS(1214), - [anon_sym_parent] = ACTIONS(1214), - [anon_sym_POUND_LBRACK] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [aux_sym_encapsed_string_token1] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [aux_sym_string_token1] = ACTIONS(1212), - [anon_sym_LT_LT_LT] = ACTIONS(1212), - [anon_sym_BQUOTE] = ACTIONS(1212), - [sym_boolean] = ACTIONS(1214), - [sym_null] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1212), - [aux_sym_yield_expression_token1] = ACTIONS(1214), - [aux_sym_include_expression_token1] = ACTIONS(1214), - [aux_sym_include_once_expression_token1] = ACTIONS(1214), - [aux_sym_require_expression_token1] = ACTIONS(1214), - [aux_sym_require_once_expression_token1] = ACTIONS(1214), - [sym_comment] = ACTIONS(5), - }, - [485] = { - [sym_text_interpolation] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_name] = ACTIONS(1218), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1216), - [aux_sym_function_static_declaration_token1] = ACTIONS(1218), - [aux_sym_global_declaration_token1] = ACTIONS(1218), - [aux_sym_namespace_definition_token1] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), - [anon_sym_BSLASH] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [aux_sym_trait_declaration_token1] = ACTIONS(1218), - [aux_sym_interface_declaration_token1] = ACTIONS(1218), - [aux_sym_enum_declaration_token1] = ACTIONS(1218), - [aux_sym_enum_case_token1] = ACTIONS(1218), - [aux_sym_class_declaration_token1] = ACTIONS(1218), - [aux_sym_final_modifier_token1] = ACTIONS(1218), - [aux_sym_abstract_modifier_token1] = ACTIONS(1218), - [aux_sym_readonly_modifier_token1] = ACTIONS(1218), - [aux_sym_visibility_modifier_token1] = ACTIONS(1218), - [aux_sym_visibility_modifier_token2] = ACTIONS(1218), - [aux_sym_visibility_modifier_token3] = ACTIONS(1218), - [aux_sym__arrow_function_header_token1] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1216), - [aux_sym_cast_type_token1] = ACTIONS(1218), - [aux_sym_echo_statement_token1] = ACTIONS(1218), - [anon_sym_unset] = ACTIONS(1218), - [aux_sym_declare_statement_token1] = ACTIONS(1218), - [aux_sym_declare_statement_token2] = ACTIONS(1218), - [sym_float] = ACTIONS(1218), - [aux_sym_try_statement_token1] = ACTIONS(1218), - [aux_sym_goto_statement_token1] = ACTIONS(1218), - [aux_sym_continue_statement_token1] = ACTIONS(1218), - [aux_sym_break_statement_token1] = ACTIONS(1218), - [sym_integer] = ACTIONS(1218), - [aux_sym_return_statement_token1] = ACTIONS(1218), - [aux_sym_throw_expression_token1] = ACTIONS(1218), - [aux_sym_while_statement_token1] = ACTIONS(1218), - [aux_sym_while_statement_token2] = ACTIONS(1218), - [aux_sym_do_statement_token1] = ACTIONS(1218), - [aux_sym_for_statement_token1] = ACTIONS(1218), - [aux_sym_for_statement_token2] = ACTIONS(1218), - [aux_sym_foreach_statement_token1] = ACTIONS(1218), - [aux_sym_foreach_statement_token2] = ACTIONS(1218), - [aux_sym_if_statement_token1] = ACTIONS(1218), - [aux_sym_if_statement_token2] = ACTIONS(1218), - [aux_sym_else_if_clause_token1] = ACTIONS(1218), - [aux_sym_else_clause_token1] = ACTIONS(1218), - [aux_sym_match_expression_token1] = ACTIONS(1218), - [aux_sym_match_default_expression_token1] = ACTIONS(1218), - [aux_sym_switch_statement_token1] = ACTIONS(1218), - [aux_sym_switch_block_token1] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [aux_sym_clone_expression_token1] = ACTIONS(1218), - [aux_sym_print_intrinsic_token1] = ACTIONS(1218), - [aux_sym_object_creation_expression_token1] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [aux_sym__list_destructing_token1] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_self] = ACTIONS(1218), - [anon_sym_parent] = ACTIONS(1218), - [anon_sym_POUND_LBRACK] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [aux_sym_encapsed_string_token1] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [aux_sym_string_token1] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [sym_boolean] = ACTIONS(1218), - [sym_null] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(1216), - [aux_sym_yield_expression_token1] = ACTIONS(1218), - [aux_sym_include_expression_token1] = ACTIONS(1218), - [aux_sym_include_once_expression_token1] = ACTIONS(1218), - [aux_sym_require_expression_token1] = ACTIONS(1218), - [aux_sym_require_once_expression_token1] = ACTIONS(1218), - [sym_comment] = ACTIONS(5), - }, - [486] = { - [sym_text_interpolation] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_name] = ACTIONS(1222), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1220), - [aux_sym_function_static_declaration_token1] = ACTIONS(1222), - [aux_sym_global_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_definition_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), - [anon_sym_BSLASH] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [aux_sym_trait_declaration_token1] = ACTIONS(1222), - [aux_sym_interface_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_case_token1] = ACTIONS(1222), - [aux_sym_class_declaration_token1] = ACTIONS(1222), - [aux_sym_final_modifier_token1] = ACTIONS(1222), - [aux_sym_abstract_modifier_token1] = ACTIONS(1222), - [aux_sym_readonly_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token2] = ACTIONS(1222), - [aux_sym_visibility_modifier_token3] = ACTIONS(1222), - [aux_sym__arrow_function_header_token1] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1220), - [aux_sym_cast_type_token1] = ACTIONS(1222), - [aux_sym_echo_statement_token1] = ACTIONS(1222), - [anon_sym_unset] = ACTIONS(1222), - [aux_sym_declare_statement_token1] = ACTIONS(1222), - [aux_sym_declare_statement_token2] = ACTIONS(1222), - [sym_float] = ACTIONS(1222), - [aux_sym_try_statement_token1] = ACTIONS(1222), - [aux_sym_goto_statement_token1] = ACTIONS(1222), - [aux_sym_continue_statement_token1] = ACTIONS(1222), - [aux_sym_break_statement_token1] = ACTIONS(1222), - [sym_integer] = ACTIONS(1222), - [aux_sym_return_statement_token1] = ACTIONS(1222), - [aux_sym_throw_expression_token1] = ACTIONS(1222), - [aux_sym_while_statement_token1] = ACTIONS(1222), - [aux_sym_while_statement_token2] = ACTIONS(1222), - [aux_sym_do_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token2] = ACTIONS(1222), - [aux_sym_foreach_statement_token1] = ACTIONS(1222), - [aux_sym_foreach_statement_token2] = ACTIONS(1222), - [aux_sym_if_statement_token1] = ACTIONS(1222), - [aux_sym_if_statement_token2] = ACTIONS(1222), - [aux_sym_else_if_clause_token1] = ACTIONS(1222), - [aux_sym_else_clause_token1] = ACTIONS(1222), - [aux_sym_match_expression_token1] = ACTIONS(1222), - [aux_sym_match_default_expression_token1] = ACTIONS(1222), - [aux_sym_switch_statement_token1] = ACTIONS(1222), - [aux_sym_switch_block_token1] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [aux_sym_clone_expression_token1] = ACTIONS(1222), - [aux_sym_print_intrinsic_token1] = ACTIONS(1222), - [aux_sym_object_creation_expression_token1] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [aux_sym__list_destructing_token1] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_self] = ACTIONS(1222), - [anon_sym_parent] = ACTIONS(1222), - [anon_sym_POUND_LBRACK] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [aux_sym_encapsed_string_token1] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [aux_sym_string_token1] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [sym_boolean] = ACTIONS(1222), - [sym_null] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [aux_sym_yield_expression_token1] = ACTIONS(1222), - [aux_sym_include_expression_token1] = ACTIONS(1222), - [aux_sym_include_once_expression_token1] = ACTIONS(1222), - [aux_sym_require_expression_token1] = ACTIONS(1222), - [aux_sym_require_once_expression_token1] = ACTIONS(1222), - [sym_comment] = ACTIONS(5), - }, - [487] = { - [sym_text_interpolation] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_name] = ACTIONS(1218), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1216), - [aux_sym_function_static_declaration_token1] = ACTIONS(1218), - [aux_sym_global_declaration_token1] = ACTIONS(1218), - [aux_sym_namespace_definition_token1] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1218), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1218), - [anon_sym_BSLASH] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [aux_sym_trait_declaration_token1] = ACTIONS(1218), - [aux_sym_interface_declaration_token1] = ACTIONS(1218), - [aux_sym_enum_declaration_token1] = ACTIONS(1218), - [aux_sym_enum_case_token1] = ACTIONS(1218), - [aux_sym_class_declaration_token1] = ACTIONS(1218), - [aux_sym_final_modifier_token1] = ACTIONS(1218), - [aux_sym_abstract_modifier_token1] = ACTIONS(1218), - [aux_sym_readonly_modifier_token1] = ACTIONS(1218), - [aux_sym_visibility_modifier_token1] = ACTIONS(1218), - [aux_sym_visibility_modifier_token2] = ACTIONS(1218), - [aux_sym_visibility_modifier_token3] = ACTIONS(1218), - [aux_sym__arrow_function_header_token1] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1216), - [aux_sym_cast_type_token1] = ACTIONS(1218), - [aux_sym_echo_statement_token1] = ACTIONS(1218), - [anon_sym_unset] = ACTIONS(1218), - [aux_sym_declare_statement_token1] = ACTIONS(1218), - [aux_sym_declare_statement_token2] = ACTIONS(1218), - [sym_float] = ACTIONS(1218), - [aux_sym_try_statement_token1] = ACTIONS(1218), - [aux_sym_goto_statement_token1] = ACTIONS(1218), - [aux_sym_continue_statement_token1] = ACTIONS(1218), - [aux_sym_break_statement_token1] = ACTIONS(1218), - [sym_integer] = ACTIONS(1218), - [aux_sym_return_statement_token1] = ACTIONS(1218), - [aux_sym_throw_expression_token1] = ACTIONS(1218), - [aux_sym_while_statement_token1] = ACTIONS(1218), - [aux_sym_while_statement_token2] = ACTIONS(1218), - [aux_sym_do_statement_token1] = ACTIONS(1218), - [aux_sym_for_statement_token1] = ACTIONS(1218), - [aux_sym_for_statement_token2] = ACTIONS(1218), - [aux_sym_foreach_statement_token1] = ACTIONS(1218), - [aux_sym_foreach_statement_token2] = ACTIONS(1218), - [aux_sym_if_statement_token1] = ACTIONS(1218), - [aux_sym_if_statement_token2] = ACTIONS(1218), - [aux_sym_else_if_clause_token1] = ACTIONS(1218), - [aux_sym_else_clause_token1] = ACTIONS(1218), - [aux_sym_match_expression_token1] = ACTIONS(1218), - [aux_sym_match_default_expression_token1] = ACTIONS(1218), - [aux_sym_switch_statement_token1] = ACTIONS(1218), - [aux_sym_switch_block_token1] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [aux_sym_clone_expression_token1] = ACTIONS(1218), - [aux_sym_print_intrinsic_token1] = ACTIONS(1218), - [aux_sym_object_creation_expression_token1] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [aux_sym__list_destructing_token1] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_self] = ACTIONS(1218), - [anon_sym_parent] = ACTIONS(1218), - [anon_sym_POUND_LBRACK] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [aux_sym_encapsed_string_token1] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [aux_sym_string_token1] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [sym_boolean] = ACTIONS(1218), - [sym_null] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(1216), - [aux_sym_yield_expression_token1] = ACTIONS(1218), - [aux_sym_include_expression_token1] = ACTIONS(1218), - [aux_sym_include_once_expression_token1] = ACTIONS(1218), - [aux_sym_require_expression_token1] = ACTIONS(1218), - [aux_sym_require_once_expression_token1] = ACTIONS(1218), - [sym_comment] = ACTIONS(5), - }, - [488] = { - [sym_text_interpolation] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_name] = ACTIONS(1222), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1220), - [aux_sym_function_static_declaration_token1] = ACTIONS(1222), - [aux_sym_global_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_definition_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1222), - [anon_sym_BSLASH] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [aux_sym_trait_declaration_token1] = ACTIONS(1222), - [aux_sym_interface_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_declaration_token1] = ACTIONS(1222), - [aux_sym_enum_case_token1] = ACTIONS(1222), - [aux_sym_class_declaration_token1] = ACTIONS(1222), - [aux_sym_final_modifier_token1] = ACTIONS(1222), - [aux_sym_abstract_modifier_token1] = ACTIONS(1222), - [aux_sym_readonly_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token1] = ACTIONS(1222), - [aux_sym_visibility_modifier_token2] = ACTIONS(1222), - [aux_sym_visibility_modifier_token3] = ACTIONS(1222), - [aux_sym__arrow_function_header_token1] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1220), - [aux_sym_cast_type_token1] = ACTIONS(1222), - [aux_sym_echo_statement_token1] = ACTIONS(1222), - [anon_sym_unset] = ACTIONS(1222), - [aux_sym_declare_statement_token1] = ACTIONS(1222), - [aux_sym_declare_statement_token2] = ACTIONS(1222), - [sym_float] = ACTIONS(1222), - [aux_sym_try_statement_token1] = ACTIONS(1222), - [aux_sym_goto_statement_token1] = ACTIONS(1222), - [aux_sym_continue_statement_token1] = ACTIONS(1222), - [aux_sym_break_statement_token1] = ACTIONS(1222), - [sym_integer] = ACTIONS(1222), - [aux_sym_return_statement_token1] = ACTIONS(1222), - [aux_sym_throw_expression_token1] = ACTIONS(1222), - [aux_sym_while_statement_token1] = ACTIONS(1222), - [aux_sym_while_statement_token2] = ACTIONS(1222), - [aux_sym_do_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token1] = ACTIONS(1222), - [aux_sym_for_statement_token2] = ACTIONS(1222), - [aux_sym_foreach_statement_token1] = ACTIONS(1222), - [aux_sym_foreach_statement_token2] = ACTIONS(1222), - [aux_sym_if_statement_token1] = ACTIONS(1222), - [aux_sym_if_statement_token2] = ACTIONS(1222), - [aux_sym_else_if_clause_token1] = ACTIONS(1222), - [aux_sym_else_clause_token1] = ACTIONS(1222), - [aux_sym_match_expression_token1] = ACTIONS(1222), - [aux_sym_match_default_expression_token1] = ACTIONS(1222), - [aux_sym_switch_statement_token1] = ACTIONS(1222), - [aux_sym_switch_block_token1] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [aux_sym_clone_expression_token1] = ACTIONS(1222), - [aux_sym_print_intrinsic_token1] = ACTIONS(1222), - [aux_sym_object_creation_expression_token1] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [aux_sym__list_destructing_token1] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_self] = ACTIONS(1222), - [anon_sym_parent] = ACTIONS(1222), - [anon_sym_POUND_LBRACK] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [aux_sym_encapsed_string_token1] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [aux_sym_string_token1] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [sym_boolean] = ACTIONS(1222), - [sym_null] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [aux_sym_yield_expression_token1] = ACTIONS(1222), - [aux_sym_include_expression_token1] = ACTIONS(1222), - [aux_sym_include_once_expression_token1] = ACTIONS(1222), - [aux_sym_require_expression_token1] = ACTIONS(1222), - [aux_sym_require_once_expression_token1] = ACTIONS(1222), - [sym_comment] = ACTIONS(5), - }, - [489] = { - [sym_text_interpolation] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_name] = ACTIONS(1226), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1224), - [aux_sym_function_static_declaration_token1] = ACTIONS(1226), - [aux_sym_global_declaration_token1] = ACTIONS(1226), - [aux_sym_namespace_definition_token1] = ACTIONS(1226), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1226), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1226), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1226), - [anon_sym_BSLASH] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [aux_sym_trait_declaration_token1] = ACTIONS(1226), - [aux_sym_interface_declaration_token1] = ACTIONS(1226), - [aux_sym_enum_declaration_token1] = ACTIONS(1226), - [aux_sym_enum_case_token1] = ACTIONS(1226), - [aux_sym_class_declaration_token1] = ACTIONS(1226), - [aux_sym_final_modifier_token1] = ACTIONS(1226), - [aux_sym_abstract_modifier_token1] = ACTIONS(1226), - [aux_sym_readonly_modifier_token1] = ACTIONS(1226), - [aux_sym_visibility_modifier_token1] = ACTIONS(1226), - [aux_sym_visibility_modifier_token2] = ACTIONS(1226), - [aux_sym_visibility_modifier_token3] = ACTIONS(1226), - [aux_sym__arrow_function_header_token1] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1224), - [aux_sym_cast_type_token1] = ACTIONS(1226), - [aux_sym_echo_statement_token1] = ACTIONS(1226), - [anon_sym_unset] = ACTIONS(1226), - [aux_sym_declare_statement_token1] = ACTIONS(1226), - [aux_sym_declare_statement_token2] = ACTIONS(1226), - [sym_float] = ACTIONS(1226), - [aux_sym_try_statement_token1] = ACTIONS(1226), - [aux_sym_goto_statement_token1] = ACTIONS(1226), - [aux_sym_continue_statement_token1] = ACTIONS(1226), - [aux_sym_break_statement_token1] = ACTIONS(1226), - [sym_integer] = ACTIONS(1226), - [aux_sym_return_statement_token1] = ACTIONS(1226), - [aux_sym_throw_expression_token1] = ACTIONS(1226), - [aux_sym_while_statement_token1] = ACTIONS(1226), - [aux_sym_while_statement_token2] = ACTIONS(1226), - [aux_sym_do_statement_token1] = ACTIONS(1226), - [aux_sym_for_statement_token1] = ACTIONS(1226), - [aux_sym_for_statement_token2] = ACTIONS(1226), - [aux_sym_foreach_statement_token1] = ACTIONS(1226), - [aux_sym_foreach_statement_token2] = ACTIONS(1226), - [aux_sym_if_statement_token1] = ACTIONS(1226), - [aux_sym_if_statement_token2] = ACTIONS(1226), - [aux_sym_else_if_clause_token1] = ACTIONS(1226), - [aux_sym_else_clause_token1] = ACTIONS(1226), - [aux_sym_match_expression_token1] = ACTIONS(1226), - [aux_sym_match_default_expression_token1] = ACTIONS(1226), - [aux_sym_switch_statement_token1] = ACTIONS(1226), - [aux_sym_switch_block_token1] = ACTIONS(1226), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [aux_sym_clone_expression_token1] = ACTIONS(1226), - [aux_sym_print_intrinsic_token1] = ACTIONS(1226), - [aux_sym_object_creation_expression_token1] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [aux_sym__list_destructing_token1] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_self] = ACTIONS(1226), - [anon_sym_parent] = ACTIONS(1226), - [anon_sym_POUND_LBRACK] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [aux_sym_encapsed_string_token1] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [aux_sym_string_token1] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [sym_boolean] = ACTIONS(1226), - [sym_null] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1224), - [aux_sym_yield_expression_token1] = ACTIONS(1226), - [aux_sym_include_expression_token1] = ACTIONS(1226), - [aux_sym_include_once_expression_token1] = ACTIONS(1226), - [aux_sym_require_expression_token1] = ACTIONS(1226), - [aux_sym_require_once_expression_token1] = ACTIONS(1226), - [sym_comment] = ACTIONS(5), - }, - [490] = { - [sym_text_interpolation] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_name] = ACTIONS(1230), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1228), - [aux_sym_function_static_declaration_token1] = ACTIONS(1230), - [aux_sym_global_declaration_token1] = ACTIONS(1230), - [aux_sym_namespace_definition_token1] = ACTIONS(1230), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1230), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1230), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1230), - [anon_sym_BSLASH] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [aux_sym_trait_declaration_token1] = ACTIONS(1230), - [aux_sym_interface_declaration_token1] = ACTIONS(1230), - [aux_sym_enum_declaration_token1] = ACTIONS(1230), - [aux_sym_enum_case_token1] = ACTIONS(1230), - [aux_sym_class_declaration_token1] = ACTIONS(1230), - [aux_sym_final_modifier_token1] = ACTIONS(1230), - [aux_sym_abstract_modifier_token1] = ACTIONS(1230), - [aux_sym_readonly_modifier_token1] = ACTIONS(1230), - [aux_sym_visibility_modifier_token1] = ACTIONS(1230), - [aux_sym_visibility_modifier_token2] = ACTIONS(1230), - [aux_sym_visibility_modifier_token3] = ACTIONS(1230), - [aux_sym__arrow_function_header_token1] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1228), - [aux_sym_cast_type_token1] = ACTIONS(1230), - [aux_sym_echo_statement_token1] = ACTIONS(1230), - [anon_sym_unset] = ACTIONS(1230), - [aux_sym_declare_statement_token1] = ACTIONS(1230), - [aux_sym_declare_statement_token2] = ACTIONS(1230), - [sym_float] = ACTIONS(1230), - [aux_sym_try_statement_token1] = ACTIONS(1230), - [aux_sym_goto_statement_token1] = ACTIONS(1230), - [aux_sym_continue_statement_token1] = ACTIONS(1230), - [aux_sym_break_statement_token1] = ACTIONS(1230), - [sym_integer] = ACTIONS(1230), - [aux_sym_return_statement_token1] = ACTIONS(1230), - [aux_sym_throw_expression_token1] = ACTIONS(1230), - [aux_sym_while_statement_token1] = ACTIONS(1230), - [aux_sym_while_statement_token2] = ACTIONS(1230), - [aux_sym_do_statement_token1] = ACTIONS(1230), - [aux_sym_for_statement_token1] = ACTIONS(1230), - [aux_sym_for_statement_token2] = ACTIONS(1230), - [aux_sym_foreach_statement_token1] = ACTIONS(1230), - [aux_sym_foreach_statement_token2] = ACTIONS(1230), - [aux_sym_if_statement_token1] = ACTIONS(1230), - [aux_sym_if_statement_token2] = ACTIONS(1230), - [aux_sym_else_if_clause_token1] = ACTIONS(1230), - [aux_sym_else_clause_token1] = ACTIONS(1230), - [aux_sym_match_expression_token1] = ACTIONS(1230), - [aux_sym_match_default_expression_token1] = ACTIONS(1230), - [aux_sym_switch_statement_token1] = ACTIONS(1230), - [aux_sym_switch_block_token1] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [aux_sym_clone_expression_token1] = ACTIONS(1230), - [aux_sym_print_intrinsic_token1] = ACTIONS(1230), - [aux_sym_object_creation_expression_token1] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [aux_sym__list_destructing_token1] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_self] = ACTIONS(1230), - [anon_sym_parent] = ACTIONS(1230), - [anon_sym_POUND_LBRACK] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [aux_sym_encapsed_string_token1] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [aux_sym_string_token1] = ACTIONS(1228), - [anon_sym_LT_LT_LT] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [sym_boolean] = ACTIONS(1230), - [sym_null] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1228), - [aux_sym_yield_expression_token1] = ACTIONS(1230), - [aux_sym_include_expression_token1] = ACTIONS(1230), - [aux_sym_include_once_expression_token1] = ACTIONS(1230), - [aux_sym_require_expression_token1] = ACTIONS(1230), - [aux_sym_require_once_expression_token1] = ACTIONS(1230), - [sym_comment] = ACTIONS(5), - }, - [491] = { - [sym_text_interpolation] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_name] = ACTIONS(1234), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1232), - [aux_sym_function_static_declaration_token1] = ACTIONS(1234), - [aux_sym_global_declaration_token1] = ACTIONS(1234), - [aux_sym_namespace_definition_token1] = ACTIONS(1234), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1234), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1234), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1234), - [anon_sym_BSLASH] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [aux_sym_trait_declaration_token1] = ACTIONS(1234), - [aux_sym_interface_declaration_token1] = ACTIONS(1234), - [aux_sym_enum_declaration_token1] = ACTIONS(1234), - [aux_sym_enum_case_token1] = ACTIONS(1234), - [aux_sym_class_declaration_token1] = ACTIONS(1234), - [aux_sym_final_modifier_token1] = ACTIONS(1234), - [aux_sym_abstract_modifier_token1] = ACTIONS(1234), - [aux_sym_readonly_modifier_token1] = ACTIONS(1234), - [aux_sym_visibility_modifier_token1] = ACTIONS(1234), - [aux_sym_visibility_modifier_token2] = ACTIONS(1234), - [aux_sym_visibility_modifier_token3] = ACTIONS(1234), - [aux_sym__arrow_function_header_token1] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [aux_sym_cast_type_token1] = ACTIONS(1234), - [aux_sym_echo_statement_token1] = ACTIONS(1234), - [anon_sym_unset] = ACTIONS(1234), - [aux_sym_declare_statement_token1] = ACTIONS(1234), - [aux_sym_declare_statement_token2] = ACTIONS(1234), - [sym_float] = ACTIONS(1234), - [aux_sym_try_statement_token1] = ACTIONS(1234), - [aux_sym_goto_statement_token1] = ACTIONS(1234), - [aux_sym_continue_statement_token1] = ACTIONS(1234), - [aux_sym_break_statement_token1] = ACTIONS(1234), - [sym_integer] = ACTIONS(1234), - [aux_sym_return_statement_token1] = ACTIONS(1234), - [aux_sym_throw_expression_token1] = ACTIONS(1234), - [aux_sym_while_statement_token1] = ACTIONS(1234), - [aux_sym_while_statement_token2] = ACTIONS(1234), - [aux_sym_do_statement_token1] = ACTIONS(1234), - [aux_sym_for_statement_token1] = ACTIONS(1234), - [aux_sym_for_statement_token2] = ACTIONS(1234), - [aux_sym_foreach_statement_token1] = ACTIONS(1234), - [aux_sym_foreach_statement_token2] = ACTIONS(1234), - [aux_sym_if_statement_token1] = ACTIONS(1234), - [aux_sym_if_statement_token2] = ACTIONS(1234), - [aux_sym_else_if_clause_token1] = ACTIONS(1234), - [aux_sym_else_clause_token1] = ACTIONS(1234), - [aux_sym_match_expression_token1] = ACTIONS(1234), - [aux_sym_match_default_expression_token1] = ACTIONS(1234), - [aux_sym_switch_statement_token1] = ACTIONS(1234), - [aux_sym_switch_block_token1] = ACTIONS(1234), - [anon_sym_AT] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [aux_sym_clone_expression_token1] = ACTIONS(1234), - [aux_sym_print_intrinsic_token1] = ACTIONS(1234), - [aux_sym_object_creation_expression_token1] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1232), - [aux_sym__list_destructing_token1] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_self] = ACTIONS(1234), - [anon_sym_parent] = ACTIONS(1234), - [anon_sym_POUND_LBRACK] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [aux_sym_encapsed_string_token1] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [aux_sym_string_token1] = ACTIONS(1232), - [anon_sym_LT_LT_LT] = ACTIONS(1232), - [anon_sym_BQUOTE] = ACTIONS(1232), - [sym_boolean] = ACTIONS(1234), - [sym_null] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(1232), - [aux_sym_yield_expression_token1] = ACTIONS(1234), - [aux_sym_include_expression_token1] = ACTIONS(1234), - [aux_sym_include_once_expression_token1] = ACTIONS(1234), - [aux_sym_require_expression_token1] = ACTIONS(1234), - [aux_sym_require_once_expression_token1] = ACTIONS(1234), - [sym_comment] = ACTIONS(5), - }, - [492] = { - [sym_text_interpolation] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_name] = ACTIONS(1238), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1236), - [aux_sym_function_static_declaration_token1] = ACTIONS(1238), - [aux_sym_global_declaration_token1] = ACTIONS(1238), - [aux_sym_namespace_definition_token1] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1238), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [aux_sym_trait_declaration_token1] = ACTIONS(1238), - [aux_sym_interface_declaration_token1] = ACTIONS(1238), - [aux_sym_enum_declaration_token1] = ACTIONS(1238), - [aux_sym_enum_case_token1] = ACTIONS(1238), - [aux_sym_class_declaration_token1] = ACTIONS(1238), - [aux_sym_final_modifier_token1] = ACTIONS(1238), - [aux_sym_abstract_modifier_token1] = ACTIONS(1238), - [aux_sym_readonly_modifier_token1] = ACTIONS(1238), - [aux_sym_visibility_modifier_token1] = ACTIONS(1238), - [aux_sym_visibility_modifier_token2] = ACTIONS(1238), - [aux_sym_visibility_modifier_token3] = ACTIONS(1238), - [aux_sym__arrow_function_header_token1] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [aux_sym_cast_type_token1] = ACTIONS(1238), - [aux_sym_echo_statement_token1] = ACTIONS(1238), - [anon_sym_unset] = ACTIONS(1238), - [aux_sym_declare_statement_token1] = ACTIONS(1238), - [aux_sym_declare_statement_token2] = ACTIONS(1238), - [sym_float] = ACTIONS(1238), - [aux_sym_try_statement_token1] = ACTIONS(1238), - [aux_sym_goto_statement_token1] = ACTIONS(1238), - [aux_sym_continue_statement_token1] = ACTIONS(1238), - [aux_sym_break_statement_token1] = ACTIONS(1238), - [sym_integer] = ACTIONS(1238), - [aux_sym_return_statement_token1] = ACTIONS(1238), - [aux_sym_throw_expression_token1] = ACTIONS(1238), - [aux_sym_while_statement_token1] = ACTIONS(1238), - [aux_sym_while_statement_token2] = ACTIONS(1238), - [aux_sym_do_statement_token1] = ACTIONS(1238), - [aux_sym_for_statement_token1] = ACTIONS(1238), - [aux_sym_for_statement_token2] = ACTIONS(1238), - [aux_sym_foreach_statement_token1] = ACTIONS(1238), - [aux_sym_foreach_statement_token2] = ACTIONS(1238), - [aux_sym_if_statement_token1] = ACTIONS(1238), - [aux_sym_if_statement_token2] = ACTIONS(1238), - [aux_sym_else_if_clause_token1] = ACTIONS(1238), - [aux_sym_else_clause_token1] = ACTIONS(1238), - [aux_sym_match_expression_token1] = ACTIONS(1238), - [aux_sym_match_default_expression_token1] = ACTIONS(1238), - [aux_sym_switch_statement_token1] = ACTIONS(1238), - [aux_sym_switch_block_token1] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [aux_sym_clone_expression_token1] = ACTIONS(1238), - [aux_sym_print_intrinsic_token1] = ACTIONS(1238), - [aux_sym_object_creation_expression_token1] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1236), - [aux_sym__list_destructing_token1] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_self] = ACTIONS(1238), - [anon_sym_parent] = ACTIONS(1238), - [anon_sym_POUND_LBRACK] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [aux_sym_encapsed_string_token1] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [aux_sym_string_token1] = ACTIONS(1236), - [anon_sym_LT_LT_LT] = ACTIONS(1236), - [anon_sym_BQUOTE] = ACTIONS(1236), - [sym_boolean] = ACTIONS(1238), - [sym_null] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1236), - [aux_sym_yield_expression_token1] = ACTIONS(1238), - [aux_sym_include_expression_token1] = ACTIONS(1238), - [aux_sym_include_once_expression_token1] = ACTIONS(1238), - [aux_sym_require_expression_token1] = ACTIONS(1238), - [aux_sym_require_once_expression_token1] = ACTIONS(1238), - [sym_comment] = ACTIONS(5), - }, - [493] = { - [sym_text_interpolation] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_name] = ACTIONS(1242), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1240), - [aux_sym_function_static_declaration_token1] = ACTIONS(1242), - [aux_sym_global_declaration_token1] = ACTIONS(1242), - [aux_sym_namespace_definition_token1] = ACTIONS(1242), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1242), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1242), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1242), - [anon_sym_BSLASH] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [aux_sym_trait_declaration_token1] = ACTIONS(1242), - [aux_sym_interface_declaration_token1] = ACTIONS(1242), - [aux_sym_enum_declaration_token1] = ACTIONS(1242), - [aux_sym_enum_case_token1] = ACTIONS(1242), - [aux_sym_class_declaration_token1] = ACTIONS(1242), - [aux_sym_final_modifier_token1] = ACTIONS(1242), - [aux_sym_abstract_modifier_token1] = ACTIONS(1242), - [aux_sym_readonly_modifier_token1] = ACTIONS(1242), - [aux_sym_visibility_modifier_token1] = ACTIONS(1242), - [aux_sym_visibility_modifier_token2] = ACTIONS(1242), - [aux_sym_visibility_modifier_token3] = ACTIONS(1242), - [aux_sym__arrow_function_header_token1] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [aux_sym_cast_type_token1] = ACTIONS(1242), - [aux_sym_echo_statement_token1] = ACTIONS(1242), - [anon_sym_unset] = ACTIONS(1242), - [aux_sym_declare_statement_token1] = ACTIONS(1242), - [aux_sym_declare_statement_token2] = ACTIONS(1242), - [sym_float] = ACTIONS(1242), - [aux_sym_try_statement_token1] = ACTIONS(1242), - [aux_sym_goto_statement_token1] = ACTIONS(1242), - [aux_sym_continue_statement_token1] = ACTIONS(1242), - [aux_sym_break_statement_token1] = ACTIONS(1242), - [sym_integer] = ACTIONS(1242), - [aux_sym_return_statement_token1] = ACTIONS(1242), - [aux_sym_throw_expression_token1] = ACTIONS(1242), - [aux_sym_while_statement_token1] = ACTIONS(1242), - [aux_sym_while_statement_token2] = ACTIONS(1242), - [aux_sym_do_statement_token1] = ACTIONS(1242), - [aux_sym_for_statement_token1] = ACTIONS(1242), - [aux_sym_for_statement_token2] = ACTIONS(1242), - [aux_sym_foreach_statement_token1] = ACTIONS(1242), - [aux_sym_foreach_statement_token2] = ACTIONS(1242), - [aux_sym_if_statement_token1] = ACTIONS(1242), - [aux_sym_if_statement_token2] = ACTIONS(1242), - [aux_sym_else_if_clause_token1] = ACTIONS(1242), - [aux_sym_else_clause_token1] = ACTIONS(1242), - [aux_sym_match_expression_token1] = ACTIONS(1242), - [aux_sym_match_default_expression_token1] = ACTIONS(1242), - [aux_sym_switch_statement_token1] = ACTIONS(1242), - [aux_sym_switch_block_token1] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [aux_sym_clone_expression_token1] = ACTIONS(1242), - [aux_sym_print_intrinsic_token1] = ACTIONS(1242), - [aux_sym_object_creation_expression_token1] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1240), - [aux_sym__list_destructing_token1] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_self] = ACTIONS(1242), - [anon_sym_parent] = ACTIONS(1242), - [anon_sym_POUND_LBRACK] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [aux_sym_encapsed_string_token1] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [aux_sym_string_token1] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_BQUOTE] = ACTIONS(1240), - [sym_boolean] = ACTIONS(1242), - [sym_null] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1240), - [aux_sym_yield_expression_token1] = ACTIONS(1242), - [aux_sym_include_expression_token1] = ACTIONS(1242), - [aux_sym_include_once_expression_token1] = ACTIONS(1242), - [aux_sym_require_expression_token1] = ACTIONS(1242), - [aux_sym_require_once_expression_token1] = ACTIONS(1242), - [sym_comment] = ACTIONS(5), - }, - [494] = { - [sym_text_interpolation] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_name] = ACTIONS(1246), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1244), - [aux_sym_function_static_declaration_token1] = ACTIONS(1246), - [aux_sym_global_declaration_token1] = ACTIONS(1246), - [aux_sym_namespace_definition_token1] = ACTIONS(1246), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1246), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1246), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1246), - [anon_sym_BSLASH] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [aux_sym_trait_declaration_token1] = ACTIONS(1246), - [aux_sym_interface_declaration_token1] = ACTIONS(1246), - [aux_sym_enum_declaration_token1] = ACTIONS(1246), - [aux_sym_enum_case_token1] = ACTIONS(1246), - [aux_sym_class_declaration_token1] = ACTIONS(1246), - [aux_sym_final_modifier_token1] = ACTIONS(1246), - [aux_sym_abstract_modifier_token1] = ACTIONS(1246), - [aux_sym_readonly_modifier_token1] = ACTIONS(1246), - [aux_sym_visibility_modifier_token1] = ACTIONS(1246), - [aux_sym_visibility_modifier_token2] = ACTIONS(1246), - [aux_sym_visibility_modifier_token3] = ACTIONS(1246), - [aux_sym__arrow_function_header_token1] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [aux_sym_cast_type_token1] = ACTIONS(1246), - [aux_sym_echo_statement_token1] = ACTIONS(1246), - [anon_sym_unset] = ACTIONS(1246), - [aux_sym_declare_statement_token1] = ACTIONS(1246), - [aux_sym_declare_statement_token2] = ACTIONS(1246), - [sym_float] = ACTIONS(1246), - [aux_sym_try_statement_token1] = ACTIONS(1246), - [aux_sym_goto_statement_token1] = ACTIONS(1246), - [aux_sym_continue_statement_token1] = ACTIONS(1246), - [aux_sym_break_statement_token1] = ACTIONS(1246), - [sym_integer] = ACTIONS(1246), - [aux_sym_return_statement_token1] = ACTIONS(1246), - [aux_sym_throw_expression_token1] = ACTIONS(1246), - [aux_sym_while_statement_token1] = ACTIONS(1246), - [aux_sym_while_statement_token2] = ACTIONS(1246), - [aux_sym_do_statement_token1] = ACTIONS(1246), - [aux_sym_for_statement_token1] = ACTIONS(1246), - [aux_sym_for_statement_token2] = ACTIONS(1246), - [aux_sym_foreach_statement_token1] = ACTIONS(1246), - [aux_sym_foreach_statement_token2] = ACTIONS(1246), - [aux_sym_if_statement_token1] = ACTIONS(1246), - [aux_sym_if_statement_token2] = ACTIONS(1246), - [aux_sym_else_if_clause_token1] = ACTIONS(1246), - [aux_sym_else_clause_token1] = ACTIONS(1246), - [aux_sym_match_expression_token1] = ACTIONS(1246), - [aux_sym_match_default_expression_token1] = ACTIONS(1246), - [aux_sym_switch_statement_token1] = ACTIONS(1246), - [aux_sym_switch_block_token1] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [aux_sym_clone_expression_token1] = ACTIONS(1246), - [aux_sym_print_intrinsic_token1] = ACTIONS(1246), - [aux_sym_object_creation_expression_token1] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [aux_sym__list_destructing_token1] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_self] = ACTIONS(1246), - [anon_sym_parent] = ACTIONS(1246), - [anon_sym_POUND_LBRACK] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [aux_sym_encapsed_string_token1] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [aux_sym_string_token1] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_BQUOTE] = ACTIONS(1244), - [sym_boolean] = ACTIONS(1246), - [sym_null] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1244), - [aux_sym_yield_expression_token1] = ACTIONS(1246), - [aux_sym_include_expression_token1] = ACTIONS(1246), - [aux_sym_include_once_expression_token1] = ACTIONS(1246), - [aux_sym_require_expression_token1] = ACTIONS(1246), - [aux_sym_require_once_expression_token1] = ACTIONS(1246), - [sym_comment] = ACTIONS(5), - }, - [495] = { - [sym_text_interpolation] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_name] = ACTIONS(1250), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1248), - [aux_sym_function_static_declaration_token1] = ACTIONS(1250), - [aux_sym_global_declaration_token1] = ACTIONS(1250), - [aux_sym_namespace_definition_token1] = ACTIONS(1250), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1250), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1250), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1250), - [anon_sym_BSLASH] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [aux_sym_trait_declaration_token1] = ACTIONS(1250), - [aux_sym_interface_declaration_token1] = ACTIONS(1250), - [aux_sym_enum_declaration_token1] = ACTIONS(1250), - [aux_sym_enum_case_token1] = ACTIONS(1250), - [aux_sym_class_declaration_token1] = ACTIONS(1250), - [aux_sym_final_modifier_token1] = ACTIONS(1250), - [aux_sym_abstract_modifier_token1] = ACTIONS(1250), - [aux_sym_readonly_modifier_token1] = ACTIONS(1250), - [aux_sym_visibility_modifier_token1] = ACTIONS(1250), - [aux_sym_visibility_modifier_token2] = ACTIONS(1250), - [aux_sym_visibility_modifier_token3] = ACTIONS(1250), - [aux_sym__arrow_function_header_token1] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [aux_sym_cast_type_token1] = ACTIONS(1250), - [aux_sym_echo_statement_token1] = ACTIONS(1250), - [anon_sym_unset] = ACTIONS(1250), - [aux_sym_declare_statement_token1] = ACTIONS(1250), - [aux_sym_declare_statement_token2] = ACTIONS(1250), - [sym_float] = ACTIONS(1250), - [aux_sym_try_statement_token1] = ACTIONS(1250), - [aux_sym_goto_statement_token1] = ACTIONS(1250), - [aux_sym_continue_statement_token1] = ACTIONS(1250), - [aux_sym_break_statement_token1] = ACTIONS(1250), - [sym_integer] = ACTIONS(1250), - [aux_sym_return_statement_token1] = ACTIONS(1250), - [aux_sym_throw_expression_token1] = ACTIONS(1250), - [aux_sym_while_statement_token1] = ACTIONS(1250), - [aux_sym_while_statement_token2] = ACTIONS(1250), - [aux_sym_do_statement_token1] = ACTIONS(1250), - [aux_sym_for_statement_token1] = ACTIONS(1250), - [aux_sym_for_statement_token2] = ACTIONS(1250), - [aux_sym_foreach_statement_token1] = ACTIONS(1250), - [aux_sym_foreach_statement_token2] = ACTIONS(1250), - [aux_sym_if_statement_token1] = ACTIONS(1250), - [aux_sym_if_statement_token2] = ACTIONS(1250), - [aux_sym_else_if_clause_token1] = ACTIONS(1250), - [aux_sym_else_clause_token1] = ACTIONS(1250), - [aux_sym_match_expression_token1] = ACTIONS(1250), - [aux_sym_match_default_expression_token1] = ACTIONS(1250), - [aux_sym_switch_statement_token1] = ACTIONS(1250), - [aux_sym_switch_block_token1] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [aux_sym_clone_expression_token1] = ACTIONS(1250), - [aux_sym_print_intrinsic_token1] = ACTIONS(1250), - [aux_sym_object_creation_expression_token1] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [aux_sym__list_destructing_token1] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_self] = ACTIONS(1250), - [anon_sym_parent] = ACTIONS(1250), - [anon_sym_POUND_LBRACK] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [aux_sym_encapsed_string_token1] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [aux_sym_string_token1] = ACTIONS(1248), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [sym_boolean] = ACTIONS(1250), - [sym_null] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1248), - [aux_sym_yield_expression_token1] = ACTIONS(1250), - [aux_sym_include_expression_token1] = ACTIONS(1250), - [aux_sym_include_once_expression_token1] = ACTIONS(1250), - [aux_sym_require_expression_token1] = ACTIONS(1250), - [aux_sym_require_once_expression_token1] = ACTIONS(1250), - [sym_comment] = ACTIONS(5), - }, - [496] = { - [sym_text_interpolation] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_name] = ACTIONS(1254), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1252), - [aux_sym_function_static_declaration_token1] = ACTIONS(1254), - [aux_sym_global_declaration_token1] = ACTIONS(1254), - [aux_sym_namespace_definition_token1] = ACTIONS(1254), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1254), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1254), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1254), - [anon_sym_BSLASH] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [aux_sym_trait_declaration_token1] = ACTIONS(1254), - [aux_sym_interface_declaration_token1] = ACTIONS(1254), - [aux_sym_enum_declaration_token1] = ACTIONS(1254), - [aux_sym_enum_case_token1] = ACTIONS(1254), - [aux_sym_class_declaration_token1] = ACTIONS(1254), - [aux_sym_final_modifier_token1] = ACTIONS(1254), - [aux_sym_abstract_modifier_token1] = ACTIONS(1254), - [aux_sym_readonly_modifier_token1] = ACTIONS(1254), - [aux_sym_visibility_modifier_token1] = ACTIONS(1254), - [aux_sym_visibility_modifier_token2] = ACTIONS(1254), - [aux_sym_visibility_modifier_token3] = ACTIONS(1254), - [aux_sym__arrow_function_header_token1] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1252), - [aux_sym_cast_type_token1] = ACTIONS(1254), - [aux_sym_echo_statement_token1] = ACTIONS(1254), - [anon_sym_unset] = ACTIONS(1254), - [aux_sym_declare_statement_token1] = ACTIONS(1254), - [aux_sym_declare_statement_token2] = ACTIONS(1254), - [sym_float] = ACTIONS(1254), - [aux_sym_try_statement_token1] = ACTIONS(1254), - [aux_sym_goto_statement_token1] = ACTIONS(1254), - [aux_sym_continue_statement_token1] = ACTIONS(1254), - [aux_sym_break_statement_token1] = ACTIONS(1254), - [sym_integer] = ACTIONS(1254), - [aux_sym_return_statement_token1] = ACTIONS(1254), - [aux_sym_throw_expression_token1] = ACTIONS(1254), - [aux_sym_while_statement_token1] = ACTIONS(1254), - [aux_sym_while_statement_token2] = ACTIONS(1254), - [aux_sym_do_statement_token1] = ACTIONS(1254), - [aux_sym_for_statement_token1] = ACTIONS(1254), - [aux_sym_for_statement_token2] = ACTIONS(1254), - [aux_sym_foreach_statement_token1] = ACTIONS(1254), - [aux_sym_foreach_statement_token2] = ACTIONS(1254), - [aux_sym_if_statement_token1] = ACTIONS(1254), - [aux_sym_if_statement_token2] = ACTIONS(1254), - [aux_sym_else_if_clause_token1] = ACTIONS(1254), - [aux_sym_else_clause_token1] = ACTIONS(1254), - [aux_sym_match_expression_token1] = ACTIONS(1254), - [aux_sym_match_default_expression_token1] = ACTIONS(1254), - [aux_sym_switch_statement_token1] = ACTIONS(1254), - [aux_sym_switch_block_token1] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [aux_sym_clone_expression_token1] = ACTIONS(1254), - [aux_sym_print_intrinsic_token1] = ACTIONS(1254), - [aux_sym_object_creation_expression_token1] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [aux_sym__list_destructing_token1] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_self] = ACTIONS(1254), - [anon_sym_parent] = ACTIONS(1254), - [anon_sym_POUND_LBRACK] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [aux_sym_encapsed_string_token1] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [aux_sym_string_token1] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [sym_boolean] = ACTIONS(1254), - [sym_null] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [aux_sym_yield_expression_token1] = ACTIONS(1254), - [aux_sym_include_expression_token1] = ACTIONS(1254), - [aux_sym_include_once_expression_token1] = ACTIONS(1254), - [aux_sym_require_expression_token1] = ACTIONS(1254), - [aux_sym_require_once_expression_token1] = ACTIONS(1254), - [sym_comment] = ACTIONS(5), - }, - [497] = { - [sym_text_interpolation] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_name] = ACTIONS(1258), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1256), - [aux_sym_function_static_declaration_token1] = ACTIONS(1258), - [aux_sym_global_declaration_token1] = ACTIONS(1258), - [aux_sym_namespace_definition_token1] = ACTIONS(1258), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1258), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1258), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1258), - [anon_sym_BSLASH] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [aux_sym_trait_declaration_token1] = ACTIONS(1258), - [aux_sym_interface_declaration_token1] = ACTIONS(1258), - [aux_sym_enum_declaration_token1] = ACTIONS(1258), - [aux_sym_enum_case_token1] = ACTIONS(1258), - [aux_sym_class_declaration_token1] = ACTIONS(1258), - [aux_sym_final_modifier_token1] = ACTIONS(1258), - [aux_sym_abstract_modifier_token1] = ACTIONS(1258), - [aux_sym_readonly_modifier_token1] = ACTIONS(1258), - [aux_sym_visibility_modifier_token1] = ACTIONS(1258), - [aux_sym_visibility_modifier_token2] = ACTIONS(1258), - [aux_sym_visibility_modifier_token3] = ACTIONS(1258), - [aux_sym__arrow_function_header_token1] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1256), - [aux_sym_cast_type_token1] = ACTIONS(1258), - [aux_sym_echo_statement_token1] = ACTIONS(1258), - [anon_sym_unset] = ACTIONS(1258), - [aux_sym_declare_statement_token1] = ACTIONS(1258), - [aux_sym_declare_statement_token2] = ACTIONS(1258), - [sym_float] = ACTIONS(1258), - [aux_sym_try_statement_token1] = ACTIONS(1258), - [aux_sym_goto_statement_token1] = ACTIONS(1258), - [aux_sym_continue_statement_token1] = ACTIONS(1258), - [aux_sym_break_statement_token1] = ACTIONS(1258), - [sym_integer] = ACTIONS(1258), - [aux_sym_return_statement_token1] = ACTIONS(1258), - [aux_sym_throw_expression_token1] = ACTIONS(1258), - [aux_sym_while_statement_token1] = ACTIONS(1258), - [aux_sym_while_statement_token2] = ACTIONS(1258), - [aux_sym_do_statement_token1] = ACTIONS(1258), - [aux_sym_for_statement_token1] = ACTIONS(1258), - [aux_sym_for_statement_token2] = ACTIONS(1258), - [aux_sym_foreach_statement_token1] = ACTIONS(1258), - [aux_sym_foreach_statement_token2] = ACTIONS(1258), - [aux_sym_if_statement_token1] = ACTIONS(1258), - [aux_sym_if_statement_token2] = ACTIONS(1258), - [aux_sym_else_if_clause_token1] = ACTIONS(1258), - [aux_sym_else_clause_token1] = ACTIONS(1258), - [aux_sym_match_expression_token1] = ACTIONS(1258), - [aux_sym_match_default_expression_token1] = ACTIONS(1258), - [aux_sym_switch_statement_token1] = ACTIONS(1258), - [aux_sym_switch_block_token1] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [aux_sym_clone_expression_token1] = ACTIONS(1258), - [aux_sym_print_intrinsic_token1] = ACTIONS(1258), - [aux_sym_object_creation_expression_token1] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [aux_sym__list_destructing_token1] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_self] = ACTIONS(1258), - [anon_sym_parent] = ACTIONS(1258), - [anon_sym_POUND_LBRACK] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [aux_sym_encapsed_string_token1] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [aux_sym_string_token1] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [sym_boolean] = ACTIONS(1258), - [sym_null] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1256), - [aux_sym_yield_expression_token1] = ACTIONS(1258), - [aux_sym_include_expression_token1] = ACTIONS(1258), - [aux_sym_include_once_expression_token1] = ACTIONS(1258), - [aux_sym_require_expression_token1] = ACTIONS(1258), - [aux_sym_require_once_expression_token1] = ACTIONS(1258), - [sym_comment] = ACTIONS(5), - }, - [498] = { - [sym_text_interpolation] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_name] = ACTIONS(1262), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1260), - [aux_sym_function_static_declaration_token1] = ACTIONS(1262), - [aux_sym_global_declaration_token1] = ACTIONS(1262), - [aux_sym_namespace_definition_token1] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1262), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1262), - [anon_sym_BSLASH] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [aux_sym_trait_declaration_token1] = ACTIONS(1262), - [aux_sym_interface_declaration_token1] = ACTIONS(1262), - [aux_sym_enum_declaration_token1] = ACTIONS(1262), - [aux_sym_enum_case_token1] = ACTIONS(1262), - [aux_sym_class_declaration_token1] = ACTIONS(1262), - [aux_sym_final_modifier_token1] = ACTIONS(1262), - [aux_sym_abstract_modifier_token1] = ACTIONS(1262), - [aux_sym_readonly_modifier_token1] = ACTIONS(1262), - [aux_sym_visibility_modifier_token1] = ACTIONS(1262), - [aux_sym_visibility_modifier_token2] = ACTIONS(1262), - [aux_sym_visibility_modifier_token3] = ACTIONS(1262), - [aux_sym__arrow_function_header_token1] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1260), - [aux_sym_cast_type_token1] = ACTIONS(1262), - [aux_sym_echo_statement_token1] = ACTIONS(1262), - [anon_sym_unset] = ACTIONS(1262), - [aux_sym_declare_statement_token1] = ACTIONS(1262), - [aux_sym_declare_statement_token2] = ACTIONS(1262), - [sym_float] = ACTIONS(1262), - [aux_sym_try_statement_token1] = ACTIONS(1262), - [aux_sym_goto_statement_token1] = ACTIONS(1262), - [aux_sym_continue_statement_token1] = ACTIONS(1262), - [aux_sym_break_statement_token1] = ACTIONS(1262), - [sym_integer] = ACTIONS(1262), - [aux_sym_return_statement_token1] = ACTIONS(1262), - [aux_sym_throw_expression_token1] = ACTIONS(1262), - [aux_sym_while_statement_token1] = ACTIONS(1262), - [aux_sym_while_statement_token2] = ACTIONS(1262), - [aux_sym_do_statement_token1] = ACTIONS(1262), - [aux_sym_for_statement_token1] = ACTIONS(1262), - [aux_sym_for_statement_token2] = ACTIONS(1262), - [aux_sym_foreach_statement_token1] = ACTIONS(1262), - [aux_sym_foreach_statement_token2] = ACTIONS(1262), - [aux_sym_if_statement_token1] = ACTIONS(1262), - [aux_sym_if_statement_token2] = ACTIONS(1262), - [aux_sym_else_if_clause_token1] = ACTIONS(1262), - [aux_sym_else_clause_token1] = ACTIONS(1262), - [aux_sym_match_expression_token1] = ACTIONS(1262), - [aux_sym_match_default_expression_token1] = ACTIONS(1262), - [aux_sym_switch_statement_token1] = ACTIONS(1262), - [aux_sym_switch_block_token1] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [aux_sym_clone_expression_token1] = ACTIONS(1262), - [aux_sym_print_intrinsic_token1] = ACTIONS(1262), - [aux_sym_object_creation_expression_token1] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [aux_sym__list_destructing_token1] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_self] = ACTIONS(1262), - [anon_sym_parent] = ACTIONS(1262), - [anon_sym_POUND_LBRACK] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [aux_sym_encapsed_string_token1] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [aux_sym_string_token1] = ACTIONS(1260), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [sym_boolean] = ACTIONS(1262), - [sym_null] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1260), - [aux_sym_yield_expression_token1] = ACTIONS(1262), - [aux_sym_include_expression_token1] = ACTIONS(1262), - [aux_sym_include_once_expression_token1] = ACTIONS(1262), - [aux_sym_require_expression_token1] = ACTIONS(1262), - [aux_sym_require_once_expression_token1] = ACTIONS(1262), - [sym_comment] = ACTIONS(5), - }, - [499] = { - [sym_text_interpolation] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_name] = ACTIONS(1266), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1264), - [aux_sym_function_static_declaration_token1] = ACTIONS(1266), - [aux_sym_global_declaration_token1] = ACTIONS(1266), - [aux_sym_namespace_definition_token1] = ACTIONS(1266), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1266), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1266), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1266), - [anon_sym_BSLASH] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [aux_sym_trait_declaration_token1] = ACTIONS(1266), - [aux_sym_interface_declaration_token1] = ACTIONS(1266), - [aux_sym_enum_declaration_token1] = ACTIONS(1266), - [aux_sym_enum_case_token1] = ACTIONS(1266), - [aux_sym_class_declaration_token1] = ACTIONS(1266), - [aux_sym_final_modifier_token1] = ACTIONS(1266), - [aux_sym_abstract_modifier_token1] = ACTIONS(1266), - [aux_sym_readonly_modifier_token1] = ACTIONS(1266), - [aux_sym_visibility_modifier_token1] = ACTIONS(1266), - [aux_sym_visibility_modifier_token2] = ACTIONS(1266), - [aux_sym_visibility_modifier_token3] = ACTIONS(1266), - [aux_sym__arrow_function_header_token1] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1264), - [aux_sym_cast_type_token1] = ACTIONS(1266), - [aux_sym_echo_statement_token1] = ACTIONS(1266), - [anon_sym_unset] = ACTIONS(1266), - [aux_sym_declare_statement_token1] = ACTIONS(1266), - [aux_sym_declare_statement_token2] = ACTIONS(1266), - [sym_float] = ACTIONS(1266), - [aux_sym_try_statement_token1] = ACTIONS(1266), - [aux_sym_goto_statement_token1] = ACTIONS(1266), - [aux_sym_continue_statement_token1] = ACTIONS(1266), - [aux_sym_break_statement_token1] = ACTIONS(1266), - [sym_integer] = ACTIONS(1266), - [aux_sym_return_statement_token1] = ACTIONS(1266), - [aux_sym_throw_expression_token1] = ACTIONS(1266), - [aux_sym_while_statement_token1] = ACTIONS(1266), - [aux_sym_while_statement_token2] = ACTIONS(1266), - [aux_sym_do_statement_token1] = ACTIONS(1266), - [aux_sym_for_statement_token1] = ACTIONS(1266), - [aux_sym_for_statement_token2] = ACTIONS(1266), - [aux_sym_foreach_statement_token1] = ACTIONS(1266), - [aux_sym_foreach_statement_token2] = ACTIONS(1266), - [aux_sym_if_statement_token1] = ACTIONS(1266), - [aux_sym_if_statement_token2] = ACTIONS(1266), - [aux_sym_else_if_clause_token1] = ACTIONS(1266), - [aux_sym_else_clause_token1] = ACTIONS(1266), - [aux_sym_match_expression_token1] = ACTIONS(1266), - [aux_sym_match_default_expression_token1] = ACTIONS(1266), - [aux_sym_switch_statement_token1] = ACTIONS(1266), - [aux_sym_switch_block_token1] = ACTIONS(1266), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [aux_sym_clone_expression_token1] = ACTIONS(1266), - [aux_sym_print_intrinsic_token1] = ACTIONS(1266), - [aux_sym_object_creation_expression_token1] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [aux_sym__list_destructing_token1] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_self] = ACTIONS(1266), - [anon_sym_parent] = ACTIONS(1266), - [anon_sym_POUND_LBRACK] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [aux_sym_encapsed_string_token1] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [aux_sym_string_token1] = ACTIONS(1264), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [sym_boolean] = ACTIONS(1266), - [sym_null] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1264), - [aux_sym_yield_expression_token1] = ACTIONS(1266), - [aux_sym_include_expression_token1] = ACTIONS(1266), - [aux_sym_include_once_expression_token1] = ACTIONS(1266), - [aux_sym_require_expression_token1] = ACTIONS(1266), - [aux_sym_require_once_expression_token1] = ACTIONS(1266), - [sym_comment] = ACTIONS(5), - }, - [500] = { - [sym_text_interpolation] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_name] = ACTIONS(1270), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1268), - [aux_sym_function_static_declaration_token1] = ACTIONS(1270), - [aux_sym_global_declaration_token1] = ACTIONS(1270), - [aux_sym_namespace_definition_token1] = ACTIONS(1270), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1270), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1270), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1270), - [anon_sym_BSLASH] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [aux_sym_trait_declaration_token1] = ACTIONS(1270), - [aux_sym_interface_declaration_token1] = ACTIONS(1270), - [aux_sym_enum_declaration_token1] = ACTIONS(1270), - [aux_sym_enum_case_token1] = ACTIONS(1270), - [aux_sym_class_declaration_token1] = ACTIONS(1270), - [aux_sym_final_modifier_token1] = ACTIONS(1270), - [aux_sym_abstract_modifier_token1] = ACTIONS(1270), - [aux_sym_readonly_modifier_token1] = ACTIONS(1270), - [aux_sym_visibility_modifier_token1] = ACTIONS(1270), - [aux_sym_visibility_modifier_token2] = ACTIONS(1270), - [aux_sym_visibility_modifier_token3] = ACTIONS(1270), - [aux_sym__arrow_function_header_token1] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1268), - [aux_sym_cast_type_token1] = ACTIONS(1270), - [aux_sym_echo_statement_token1] = ACTIONS(1270), - [anon_sym_unset] = ACTIONS(1270), - [aux_sym_declare_statement_token1] = ACTIONS(1270), - [aux_sym_declare_statement_token2] = ACTIONS(1270), - [sym_float] = ACTIONS(1270), - [aux_sym_try_statement_token1] = ACTIONS(1270), - [aux_sym_goto_statement_token1] = ACTIONS(1270), - [aux_sym_continue_statement_token1] = ACTIONS(1270), - [aux_sym_break_statement_token1] = ACTIONS(1270), - [sym_integer] = ACTIONS(1270), - [aux_sym_return_statement_token1] = ACTIONS(1270), - [aux_sym_throw_expression_token1] = ACTIONS(1270), - [aux_sym_while_statement_token1] = ACTIONS(1270), - [aux_sym_while_statement_token2] = ACTIONS(1270), - [aux_sym_do_statement_token1] = ACTIONS(1270), - [aux_sym_for_statement_token1] = ACTIONS(1270), - [aux_sym_for_statement_token2] = ACTIONS(1270), - [aux_sym_foreach_statement_token1] = ACTIONS(1270), - [aux_sym_foreach_statement_token2] = ACTIONS(1270), - [aux_sym_if_statement_token1] = ACTIONS(1270), - [aux_sym_if_statement_token2] = ACTIONS(1270), - [aux_sym_else_if_clause_token1] = ACTIONS(1270), - [aux_sym_else_clause_token1] = ACTIONS(1270), - [aux_sym_match_expression_token1] = ACTIONS(1270), - [aux_sym_match_default_expression_token1] = ACTIONS(1270), - [aux_sym_switch_statement_token1] = ACTIONS(1270), - [aux_sym_switch_block_token1] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [aux_sym_clone_expression_token1] = ACTIONS(1270), - [aux_sym_print_intrinsic_token1] = ACTIONS(1270), - [aux_sym_object_creation_expression_token1] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [aux_sym__list_destructing_token1] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_self] = ACTIONS(1270), - [anon_sym_parent] = ACTIONS(1270), - [anon_sym_POUND_LBRACK] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [aux_sym_encapsed_string_token1] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [aux_sym_string_token1] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [sym_boolean] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [aux_sym_yield_expression_token1] = ACTIONS(1270), - [aux_sym_include_expression_token1] = ACTIONS(1270), - [aux_sym_include_once_expression_token1] = ACTIONS(1270), - [aux_sym_require_expression_token1] = ACTIONS(1270), - [aux_sym_require_once_expression_token1] = ACTIONS(1270), - [sym_comment] = ACTIONS(5), - }, - [501] = { - [sym_text_interpolation] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_name] = ACTIONS(1274), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1272), - [aux_sym_function_static_declaration_token1] = ACTIONS(1274), - [aux_sym_global_declaration_token1] = ACTIONS(1274), - [aux_sym_namespace_definition_token1] = ACTIONS(1274), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1274), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1274), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1274), - [anon_sym_BSLASH] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [aux_sym_trait_declaration_token1] = ACTIONS(1274), - [aux_sym_interface_declaration_token1] = ACTIONS(1274), - [aux_sym_enum_declaration_token1] = ACTIONS(1274), - [aux_sym_enum_case_token1] = ACTIONS(1274), - [aux_sym_class_declaration_token1] = ACTIONS(1274), - [aux_sym_final_modifier_token1] = ACTIONS(1274), - [aux_sym_abstract_modifier_token1] = ACTIONS(1274), - [aux_sym_readonly_modifier_token1] = ACTIONS(1274), - [aux_sym_visibility_modifier_token1] = ACTIONS(1274), - [aux_sym_visibility_modifier_token2] = ACTIONS(1274), - [aux_sym_visibility_modifier_token3] = ACTIONS(1274), - [aux_sym__arrow_function_header_token1] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1272), - [aux_sym_cast_type_token1] = ACTIONS(1274), - [aux_sym_echo_statement_token1] = ACTIONS(1274), - [anon_sym_unset] = ACTIONS(1274), - [aux_sym_declare_statement_token1] = ACTIONS(1274), - [aux_sym_declare_statement_token2] = ACTIONS(1274), - [sym_float] = ACTIONS(1274), - [aux_sym_try_statement_token1] = ACTIONS(1274), - [aux_sym_goto_statement_token1] = ACTIONS(1274), - [aux_sym_continue_statement_token1] = ACTIONS(1274), - [aux_sym_break_statement_token1] = ACTIONS(1274), - [sym_integer] = ACTIONS(1274), - [aux_sym_return_statement_token1] = ACTIONS(1274), - [aux_sym_throw_expression_token1] = ACTIONS(1274), - [aux_sym_while_statement_token1] = ACTIONS(1274), - [aux_sym_while_statement_token2] = ACTIONS(1274), - [aux_sym_do_statement_token1] = ACTIONS(1274), - [aux_sym_for_statement_token1] = ACTIONS(1274), - [aux_sym_for_statement_token2] = ACTIONS(1274), - [aux_sym_foreach_statement_token1] = ACTIONS(1274), - [aux_sym_foreach_statement_token2] = ACTIONS(1274), - [aux_sym_if_statement_token1] = ACTIONS(1274), - [aux_sym_if_statement_token2] = ACTIONS(1274), - [aux_sym_else_if_clause_token1] = ACTIONS(1274), - [aux_sym_else_clause_token1] = ACTIONS(1274), - [aux_sym_match_expression_token1] = ACTIONS(1274), - [aux_sym_match_default_expression_token1] = ACTIONS(1274), - [aux_sym_switch_statement_token1] = ACTIONS(1274), - [aux_sym_switch_block_token1] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [aux_sym_clone_expression_token1] = ACTIONS(1274), - [aux_sym_print_intrinsic_token1] = ACTIONS(1274), - [aux_sym_object_creation_expression_token1] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [aux_sym__list_destructing_token1] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_self] = ACTIONS(1274), - [anon_sym_parent] = ACTIONS(1274), - [anon_sym_POUND_LBRACK] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [aux_sym_encapsed_string_token1] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [aux_sym_string_token1] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [sym_boolean] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [aux_sym_yield_expression_token1] = ACTIONS(1274), - [aux_sym_include_expression_token1] = ACTIONS(1274), - [aux_sym_include_once_expression_token1] = ACTIONS(1274), - [aux_sym_require_expression_token1] = ACTIONS(1274), - [aux_sym_require_once_expression_token1] = ACTIONS(1274), - [sym_comment] = ACTIONS(5), - }, - [502] = { - [sym_text_interpolation] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_name] = ACTIONS(1278), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1276), - [aux_sym_function_static_declaration_token1] = ACTIONS(1278), - [aux_sym_global_declaration_token1] = ACTIONS(1278), - [aux_sym_namespace_definition_token1] = ACTIONS(1278), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1278), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1278), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1278), - [anon_sym_BSLASH] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [aux_sym_trait_declaration_token1] = ACTIONS(1278), - [aux_sym_interface_declaration_token1] = ACTIONS(1278), - [aux_sym_enum_declaration_token1] = ACTIONS(1278), - [aux_sym_enum_case_token1] = ACTIONS(1278), - [aux_sym_class_declaration_token1] = ACTIONS(1278), - [aux_sym_final_modifier_token1] = ACTIONS(1278), - [aux_sym_abstract_modifier_token1] = ACTIONS(1278), - [aux_sym_readonly_modifier_token1] = ACTIONS(1278), - [aux_sym_visibility_modifier_token1] = ACTIONS(1278), - [aux_sym_visibility_modifier_token2] = ACTIONS(1278), - [aux_sym_visibility_modifier_token3] = ACTIONS(1278), - [aux_sym__arrow_function_header_token1] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1276), - [aux_sym_cast_type_token1] = ACTIONS(1278), - [aux_sym_echo_statement_token1] = ACTIONS(1278), - [anon_sym_unset] = ACTIONS(1278), - [aux_sym_declare_statement_token1] = ACTIONS(1278), - [aux_sym_declare_statement_token2] = ACTIONS(1278), - [sym_float] = ACTIONS(1278), - [aux_sym_try_statement_token1] = ACTIONS(1278), - [aux_sym_goto_statement_token1] = ACTIONS(1278), - [aux_sym_continue_statement_token1] = ACTIONS(1278), - [aux_sym_break_statement_token1] = ACTIONS(1278), - [sym_integer] = ACTIONS(1278), - [aux_sym_return_statement_token1] = ACTIONS(1278), - [aux_sym_throw_expression_token1] = ACTIONS(1278), - [aux_sym_while_statement_token1] = ACTIONS(1278), - [aux_sym_while_statement_token2] = ACTIONS(1278), - [aux_sym_do_statement_token1] = ACTIONS(1278), - [aux_sym_for_statement_token1] = ACTIONS(1278), - [aux_sym_for_statement_token2] = ACTIONS(1278), - [aux_sym_foreach_statement_token1] = ACTIONS(1278), - [aux_sym_foreach_statement_token2] = ACTIONS(1278), - [aux_sym_if_statement_token1] = ACTIONS(1278), - [aux_sym_if_statement_token2] = ACTIONS(1278), - [aux_sym_else_if_clause_token1] = ACTIONS(1278), - [aux_sym_else_clause_token1] = ACTIONS(1278), - [aux_sym_match_expression_token1] = ACTIONS(1278), - [aux_sym_match_default_expression_token1] = ACTIONS(1278), - [aux_sym_switch_statement_token1] = ACTIONS(1278), - [aux_sym_switch_block_token1] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [aux_sym_clone_expression_token1] = ACTIONS(1278), - [aux_sym_print_intrinsic_token1] = ACTIONS(1278), - [aux_sym_object_creation_expression_token1] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [aux_sym__list_destructing_token1] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_self] = ACTIONS(1278), - [anon_sym_parent] = ACTIONS(1278), - [anon_sym_POUND_LBRACK] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [aux_sym_encapsed_string_token1] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [sym_boolean] = ACTIONS(1278), - [sym_null] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [aux_sym_yield_expression_token1] = ACTIONS(1278), - [aux_sym_include_expression_token1] = ACTIONS(1278), - [aux_sym_include_once_expression_token1] = ACTIONS(1278), - [aux_sym_require_expression_token1] = ACTIONS(1278), - [aux_sym_require_once_expression_token1] = ACTIONS(1278), - [sym_comment] = ACTIONS(5), - }, - [503] = { - [sym_text_interpolation] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_name] = ACTIONS(1282), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1280), - [aux_sym_function_static_declaration_token1] = ACTIONS(1282), - [aux_sym_global_declaration_token1] = ACTIONS(1282), - [aux_sym_namespace_definition_token1] = ACTIONS(1282), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1282), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1282), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1282), - [anon_sym_BSLASH] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [aux_sym_trait_declaration_token1] = ACTIONS(1282), - [aux_sym_interface_declaration_token1] = ACTIONS(1282), - [aux_sym_enum_declaration_token1] = ACTIONS(1282), - [aux_sym_enum_case_token1] = ACTIONS(1282), - [aux_sym_class_declaration_token1] = ACTIONS(1282), - [aux_sym_final_modifier_token1] = ACTIONS(1282), - [aux_sym_abstract_modifier_token1] = ACTIONS(1282), - [aux_sym_readonly_modifier_token1] = ACTIONS(1282), - [aux_sym_visibility_modifier_token1] = ACTIONS(1282), - [aux_sym_visibility_modifier_token2] = ACTIONS(1282), - [aux_sym_visibility_modifier_token3] = ACTIONS(1282), - [aux_sym__arrow_function_header_token1] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [aux_sym_cast_type_token1] = ACTIONS(1282), - [aux_sym_echo_statement_token1] = ACTIONS(1282), - [anon_sym_unset] = ACTIONS(1282), - [aux_sym_declare_statement_token1] = ACTIONS(1282), - [aux_sym_declare_statement_token2] = ACTIONS(1282), - [sym_float] = ACTIONS(1282), - [aux_sym_try_statement_token1] = ACTIONS(1282), - [aux_sym_goto_statement_token1] = ACTIONS(1282), - [aux_sym_continue_statement_token1] = ACTIONS(1282), - [aux_sym_break_statement_token1] = ACTIONS(1282), - [sym_integer] = ACTIONS(1282), - [aux_sym_return_statement_token1] = ACTIONS(1282), - [aux_sym_throw_expression_token1] = ACTIONS(1282), - [aux_sym_while_statement_token1] = ACTIONS(1282), - [aux_sym_while_statement_token2] = ACTIONS(1282), - [aux_sym_do_statement_token1] = ACTIONS(1282), - [aux_sym_for_statement_token1] = ACTIONS(1282), - [aux_sym_for_statement_token2] = ACTIONS(1282), - [aux_sym_foreach_statement_token1] = ACTIONS(1282), - [aux_sym_foreach_statement_token2] = ACTIONS(1282), - [aux_sym_if_statement_token1] = ACTIONS(1282), - [aux_sym_if_statement_token2] = ACTIONS(1282), - [aux_sym_else_if_clause_token1] = ACTIONS(1282), - [aux_sym_else_clause_token1] = ACTIONS(1282), - [aux_sym_match_expression_token1] = ACTIONS(1282), - [aux_sym_match_default_expression_token1] = ACTIONS(1282), - [aux_sym_switch_statement_token1] = ACTIONS(1282), - [aux_sym_switch_block_token1] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [aux_sym_clone_expression_token1] = ACTIONS(1282), - [aux_sym_print_intrinsic_token1] = ACTIONS(1282), - [aux_sym_object_creation_expression_token1] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [aux_sym__list_destructing_token1] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_self] = ACTIONS(1282), - [anon_sym_parent] = ACTIONS(1282), - [anon_sym_POUND_LBRACK] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [aux_sym_encapsed_string_token1] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [aux_sym_string_token1] = ACTIONS(1280), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [sym_boolean] = ACTIONS(1282), - [sym_null] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [aux_sym_yield_expression_token1] = ACTIONS(1282), - [aux_sym_include_expression_token1] = ACTIONS(1282), - [aux_sym_include_once_expression_token1] = ACTIONS(1282), - [aux_sym_require_expression_token1] = ACTIONS(1282), - [aux_sym_require_once_expression_token1] = ACTIONS(1282), - [sym_comment] = ACTIONS(5), - }, - [504] = { - [sym_text_interpolation] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_name] = ACTIONS(1286), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1284), - [aux_sym_function_static_declaration_token1] = ACTIONS(1286), - [aux_sym_global_declaration_token1] = ACTIONS(1286), - [aux_sym_namespace_definition_token1] = ACTIONS(1286), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1286), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1286), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1286), - [anon_sym_BSLASH] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [aux_sym_trait_declaration_token1] = ACTIONS(1286), - [aux_sym_interface_declaration_token1] = ACTIONS(1286), - [aux_sym_enum_declaration_token1] = ACTIONS(1286), - [aux_sym_enum_case_token1] = ACTIONS(1286), - [aux_sym_class_declaration_token1] = ACTIONS(1286), - [aux_sym_final_modifier_token1] = ACTIONS(1286), - [aux_sym_abstract_modifier_token1] = ACTIONS(1286), - [aux_sym_readonly_modifier_token1] = ACTIONS(1286), - [aux_sym_visibility_modifier_token1] = ACTIONS(1286), - [aux_sym_visibility_modifier_token2] = ACTIONS(1286), - [aux_sym_visibility_modifier_token3] = ACTIONS(1286), - [aux_sym__arrow_function_header_token1] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1284), - [aux_sym_cast_type_token1] = ACTIONS(1286), - [aux_sym_echo_statement_token1] = ACTIONS(1286), - [anon_sym_unset] = ACTIONS(1286), - [aux_sym_declare_statement_token1] = ACTIONS(1286), - [aux_sym_declare_statement_token2] = ACTIONS(1286), - [sym_float] = ACTIONS(1286), - [aux_sym_try_statement_token1] = ACTIONS(1286), - [aux_sym_goto_statement_token1] = ACTIONS(1286), - [aux_sym_continue_statement_token1] = ACTIONS(1286), - [aux_sym_break_statement_token1] = ACTIONS(1286), - [sym_integer] = ACTIONS(1286), - [aux_sym_return_statement_token1] = ACTIONS(1286), - [aux_sym_throw_expression_token1] = ACTIONS(1286), - [aux_sym_while_statement_token1] = ACTIONS(1286), - [aux_sym_while_statement_token2] = ACTIONS(1286), - [aux_sym_do_statement_token1] = ACTIONS(1286), - [aux_sym_for_statement_token1] = ACTIONS(1286), - [aux_sym_for_statement_token2] = ACTIONS(1286), - [aux_sym_foreach_statement_token1] = ACTIONS(1286), - [aux_sym_foreach_statement_token2] = ACTIONS(1286), - [aux_sym_if_statement_token1] = ACTIONS(1286), - [aux_sym_if_statement_token2] = ACTIONS(1286), - [aux_sym_else_if_clause_token1] = ACTIONS(1286), - [aux_sym_else_clause_token1] = ACTIONS(1286), - [aux_sym_match_expression_token1] = ACTIONS(1286), - [aux_sym_match_default_expression_token1] = ACTIONS(1286), - [aux_sym_switch_statement_token1] = ACTIONS(1286), - [aux_sym_switch_block_token1] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [aux_sym_clone_expression_token1] = ACTIONS(1286), - [aux_sym_print_intrinsic_token1] = ACTIONS(1286), - [aux_sym_object_creation_expression_token1] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [aux_sym__list_destructing_token1] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_self] = ACTIONS(1286), - [anon_sym_parent] = ACTIONS(1286), - [anon_sym_POUND_LBRACK] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [aux_sym_encapsed_string_token1] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [aux_sym_string_token1] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [sym_boolean] = ACTIONS(1286), - [sym_null] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [aux_sym_yield_expression_token1] = ACTIONS(1286), - [aux_sym_include_expression_token1] = ACTIONS(1286), - [aux_sym_include_once_expression_token1] = ACTIONS(1286), - [aux_sym_require_expression_token1] = ACTIONS(1286), - [aux_sym_require_once_expression_token1] = ACTIONS(1286), - [sym_comment] = ACTIONS(5), - }, - [505] = { - [sym_text_interpolation] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_name] = ACTIONS(1290), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1288), - [aux_sym_function_static_declaration_token1] = ACTIONS(1290), - [aux_sym_global_declaration_token1] = ACTIONS(1290), - [aux_sym_namespace_definition_token1] = ACTIONS(1290), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1290), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1290), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1290), - [anon_sym_BSLASH] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [aux_sym_trait_declaration_token1] = ACTIONS(1290), - [aux_sym_interface_declaration_token1] = ACTIONS(1290), - [aux_sym_enum_declaration_token1] = ACTIONS(1290), - [aux_sym_enum_case_token1] = ACTIONS(1290), - [aux_sym_class_declaration_token1] = ACTIONS(1290), - [aux_sym_final_modifier_token1] = ACTIONS(1290), - [aux_sym_abstract_modifier_token1] = ACTIONS(1290), - [aux_sym_readonly_modifier_token1] = ACTIONS(1290), - [aux_sym_visibility_modifier_token1] = ACTIONS(1290), - [aux_sym_visibility_modifier_token2] = ACTIONS(1290), - [aux_sym_visibility_modifier_token3] = ACTIONS(1290), - [aux_sym__arrow_function_header_token1] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [aux_sym_cast_type_token1] = ACTIONS(1290), - [aux_sym_echo_statement_token1] = ACTIONS(1290), - [anon_sym_unset] = ACTIONS(1290), - [aux_sym_declare_statement_token1] = ACTIONS(1290), - [aux_sym_declare_statement_token2] = ACTIONS(1290), - [sym_float] = ACTIONS(1290), - [aux_sym_try_statement_token1] = ACTIONS(1290), - [aux_sym_goto_statement_token1] = ACTIONS(1290), - [aux_sym_continue_statement_token1] = ACTIONS(1290), - [aux_sym_break_statement_token1] = ACTIONS(1290), - [sym_integer] = ACTIONS(1290), - [aux_sym_return_statement_token1] = ACTIONS(1290), - [aux_sym_throw_expression_token1] = ACTIONS(1290), - [aux_sym_while_statement_token1] = ACTIONS(1290), - [aux_sym_while_statement_token2] = ACTIONS(1290), - [aux_sym_do_statement_token1] = ACTIONS(1290), - [aux_sym_for_statement_token1] = ACTIONS(1290), - [aux_sym_for_statement_token2] = ACTIONS(1290), - [aux_sym_foreach_statement_token1] = ACTIONS(1290), - [aux_sym_foreach_statement_token2] = ACTIONS(1290), - [aux_sym_if_statement_token1] = ACTIONS(1290), - [aux_sym_if_statement_token2] = ACTIONS(1290), - [aux_sym_else_if_clause_token1] = ACTIONS(1290), - [aux_sym_else_clause_token1] = ACTIONS(1290), - [aux_sym_match_expression_token1] = ACTIONS(1290), - [aux_sym_match_default_expression_token1] = ACTIONS(1290), - [aux_sym_switch_statement_token1] = ACTIONS(1290), - [aux_sym_switch_block_token1] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [aux_sym_clone_expression_token1] = ACTIONS(1290), - [aux_sym_print_intrinsic_token1] = ACTIONS(1290), - [aux_sym_object_creation_expression_token1] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [aux_sym__list_destructing_token1] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_self] = ACTIONS(1290), - [anon_sym_parent] = ACTIONS(1290), - [anon_sym_POUND_LBRACK] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [aux_sym_encapsed_string_token1] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [aux_sym_string_token1] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [sym_boolean] = ACTIONS(1290), - [sym_null] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1288), - [aux_sym_yield_expression_token1] = ACTIONS(1290), - [aux_sym_include_expression_token1] = ACTIONS(1290), - [aux_sym_include_once_expression_token1] = ACTIONS(1290), - [aux_sym_require_expression_token1] = ACTIONS(1290), - [aux_sym_require_once_expression_token1] = ACTIONS(1290), - [sym_comment] = ACTIONS(5), - }, - [506] = { - [sym_text_interpolation] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_name] = ACTIONS(1294), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1292), - [aux_sym_function_static_declaration_token1] = ACTIONS(1294), - [aux_sym_global_declaration_token1] = ACTIONS(1294), - [aux_sym_namespace_definition_token1] = ACTIONS(1294), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1294), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1294), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1294), - [anon_sym_BSLASH] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [aux_sym_trait_declaration_token1] = ACTIONS(1294), - [aux_sym_interface_declaration_token1] = ACTIONS(1294), - [aux_sym_enum_declaration_token1] = ACTIONS(1294), - [aux_sym_enum_case_token1] = ACTIONS(1294), - [aux_sym_class_declaration_token1] = ACTIONS(1294), - [aux_sym_final_modifier_token1] = ACTIONS(1294), - [aux_sym_abstract_modifier_token1] = ACTIONS(1294), - [aux_sym_readonly_modifier_token1] = ACTIONS(1294), - [aux_sym_visibility_modifier_token1] = ACTIONS(1294), - [aux_sym_visibility_modifier_token2] = ACTIONS(1294), - [aux_sym_visibility_modifier_token3] = ACTIONS(1294), - [aux_sym__arrow_function_header_token1] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1292), - [aux_sym_cast_type_token1] = ACTIONS(1294), - [aux_sym_echo_statement_token1] = ACTIONS(1294), - [anon_sym_unset] = ACTIONS(1294), - [aux_sym_declare_statement_token1] = ACTIONS(1294), - [aux_sym_declare_statement_token2] = ACTIONS(1294), - [sym_float] = ACTIONS(1294), - [aux_sym_try_statement_token1] = ACTIONS(1294), - [aux_sym_goto_statement_token1] = ACTIONS(1294), - [aux_sym_continue_statement_token1] = ACTIONS(1294), - [aux_sym_break_statement_token1] = ACTIONS(1294), - [sym_integer] = ACTIONS(1294), - [aux_sym_return_statement_token1] = ACTIONS(1294), - [aux_sym_throw_expression_token1] = ACTIONS(1294), - [aux_sym_while_statement_token1] = ACTIONS(1294), - [aux_sym_while_statement_token2] = ACTIONS(1294), - [aux_sym_do_statement_token1] = ACTIONS(1294), - [aux_sym_for_statement_token1] = ACTIONS(1294), - [aux_sym_for_statement_token2] = ACTIONS(1294), - [aux_sym_foreach_statement_token1] = ACTIONS(1294), - [aux_sym_foreach_statement_token2] = ACTIONS(1294), - [aux_sym_if_statement_token1] = ACTIONS(1294), - [aux_sym_if_statement_token2] = ACTIONS(1294), - [aux_sym_else_if_clause_token1] = ACTIONS(1294), - [aux_sym_else_clause_token1] = ACTIONS(1294), - [aux_sym_match_expression_token1] = ACTIONS(1294), - [aux_sym_match_default_expression_token1] = ACTIONS(1294), - [aux_sym_switch_statement_token1] = ACTIONS(1294), - [aux_sym_switch_block_token1] = ACTIONS(1294), - [anon_sym_AT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [aux_sym_clone_expression_token1] = ACTIONS(1294), - [aux_sym_print_intrinsic_token1] = ACTIONS(1294), - [aux_sym_object_creation_expression_token1] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [aux_sym__list_destructing_token1] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_self] = ACTIONS(1294), - [anon_sym_parent] = ACTIONS(1294), - [anon_sym_POUND_LBRACK] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [aux_sym_encapsed_string_token1] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [aux_sym_string_token1] = ACTIONS(1292), - [anon_sym_LT_LT_LT] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [sym_boolean] = ACTIONS(1294), - [sym_null] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [aux_sym_yield_expression_token1] = ACTIONS(1294), - [aux_sym_include_expression_token1] = ACTIONS(1294), - [aux_sym_include_once_expression_token1] = ACTIONS(1294), - [aux_sym_require_expression_token1] = ACTIONS(1294), - [aux_sym_require_once_expression_token1] = ACTIONS(1294), - [sym_comment] = ACTIONS(5), - }, - [507] = { - [sym_text_interpolation] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_name] = ACTIONS(1298), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1296), - [aux_sym_function_static_declaration_token1] = ACTIONS(1298), - [aux_sym_global_declaration_token1] = ACTIONS(1298), - [aux_sym_namespace_definition_token1] = ACTIONS(1298), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1298), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1298), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1298), - [anon_sym_BSLASH] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [aux_sym_trait_declaration_token1] = ACTIONS(1298), - [aux_sym_interface_declaration_token1] = ACTIONS(1298), - [aux_sym_enum_declaration_token1] = ACTIONS(1298), - [aux_sym_enum_case_token1] = ACTIONS(1298), - [aux_sym_class_declaration_token1] = ACTIONS(1298), - [aux_sym_final_modifier_token1] = ACTIONS(1298), - [aux_sym_abstract_modifier_token1] = ACTIONS(1298), - [aux_sym_readonly_modifier_token1] = ACTIONS(1298), - [aux_sym_visibility_modifier_token1] = ACTIONS(1298), - [aux_sym_visibility_modifier_token2] = ACTIONS(1298), - [aux_sym_visibility_modifier_token3] = ACTIONS(1298), - [aux_sym__arrow_function_header_token1] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [aux_sym_cast_type_token1] = ACTIONS(1298), - [aux_sym_echo_statement_token1] = ACTIONS(1298), - [anon_sym_unset] = ACTIONS(1298), - [aux_sym_declare_statement_token1] = ACTIONS(1298), - [aux_sym_declare_statement_token2] = ACTIONS(1298), - [sym_float] = ACTIONS(1298), - [aux_sym_try_statement_token1] = ACTIONS(1298), - [aux_sym_goto_statement_token1] = ACTIONS(1298), - [aux_sym_continue_statement_token1] = ACTIONS(1298), - [aux_sym_break_statement_token1] = ACTIONS(1298), - [sym_integer] = ACTIONS(1298), - [aux_sym_return_statement_token1] = ACTIONS(1298), - [aux_sym_throw_expression_token1] = ACTIONS(1298), - [aux_sym_while_statement_token1] = ACTIONS(1298), - [aux_sym_while_statement_token2] = ACTIONS(1298), - [aux_sym_do_statement_token1] = ACTIONS(1298), - [aux_sym_for_statement_token1] = ACTIONS(1298), - [aux_sym_for_statement_token2] = ACTIONS(1298), - [aux_sym_foreach_statement_token1] = ACTIONS(1298), - [aux_sym_foreach_statement_token2] = ACTIONS(1298), - [aux_sym_if_statement_token1] = ACTIONS(1298), - [aux_sym_if_statement_token2] = ACTIONS(1298), - [aux_sym_else_if_clause_token1] = ACTIONS(1298), - [aux_sym_else_clause_token1] = ACTIONS(1298), - [aux_sym_match_expression_token1] = ACTIONS(1298), - [aux_sym_match_default_expression_token1] = ACTIONS(1298), - [aux_sym_switch_statement_token1] = ACTIONS(1298), - [aux_sym_switch_block_token1] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [aux_sym_clone_expression_token1] = ACTIONS(1298), - [aux_sym_print_intrinsic_token1] = ACTIONS(1298), - [aux_sym_object_creation_expression_token1] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [aux_sym__list_destructing_token1] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_self] = ACTIONS(1298), - [anon_sym_parent] = ACTIONS(1298), - [anon_sym_POUND_LBRACK] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [aux_sym_encapsed_string_token1] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [aux_sym_string_token1] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [sym_boolean] = ACTIONS(1298), - [sym_null] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [aux_sym_yield_expression_token1] = ACTIONS(1298), - [aux_sym_include_expression_token1] = ACTIONS(1298), - [aux_sym_include_once_expression_token1] = ACTIONS(1298), - [aux_sym_require_expression_token1] = ACTIONS(1298), - [aux_sym_require_once_expression_token1] = ACTIONS(1298), - [sym_comment] = ACTIONS(5), - }, - [508] = { - [sym_text_interpolation] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_name] = ACTIONS(1302), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1300), - [aux_sym_function_static_declaration_token1] = ACTIONS(1302), - [aux_sym_global_declaration_token1] = ACTIONS(1302), - [aux_sym_namespace_definition_token1] = ACTIONS(1302), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1302), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1302), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1302), - [anon_sym_BSLASH] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [aux_sym_trait_declaration_token1] = ACTIONS(1302), - [aux_sym_interface_declaration_token1] = ACTIONS(1302), - [aux_sym_enum_declaration_token1] = ACTIONS(1302), - [aux_sym_enum_case_token1] = ACTIONS(1302), - [aux_sym_class_declaration_token1] = ACTIONS(1302), - [aux_sym_final_modifier_token1] = ACTIONS(1302), - [aux_sym_abstract_modifier_token1] = ACTIONS(1302), - [aux_sym_readonly_modifier_token1] = ACTIONS(1302), - [aux_sym_visibility_modifier_token1] = ACTIONS(1302), - [aux_sym_visibility_modifier_token2] = ACTIONS(1302), - [aux_sym_visibility_modifier_token3] = ACTIONS(1302), - [aux_sym__arrow_function_header_token1] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1300), - [aux_sym_cast_type_token1] = ACTIONS(1302), - [aux_sym_echo_statement_token1] = ACTIONS(1302), - [anon_sym_unset] = ACTIONS(1302), - [aux_sym_declare_statement_token1] = ACTIONS(1302), - [aux_sym_declare_statement_token2] = ACTIONS(1302), - [sym_float] = ACTIONS(1302), - [aux_sym_try_statement_token1] = ACTIONS(1302), - [aux_sym_goto_statement_token1] = ACTIONS(1302), - [aux_sym_continue_statement_token1] = ACTIONS(1302), - [aux_sym_break_statement_token1] = ACTIONS(1302), - [sym_integer] = ACTIONS(1302), - [aux_sym_return_statement_token1] = ACTIONS(1302), - [aux_sym_throw_expression_token1] = ACTIONS(1302), - [aux_sym_while_statement_token1] = ACTIONS(1302), - [aux_sym_while_statement_token2] = ACTIONS(1302), - [aux_sym_do_statement_token1] = ACTIONS(1302), - [aux_sym_for_statement_token1] = ACTIONS(1302), - [aux_sym_for_statement_token2] = ACTIONS(1302), - [aux_sym_foreach_statement_token1] = ACTIONS(1302), - [aux_sym_foreach_statement_token2] = ACTIONS(1302), - [aux_sym_if_statement_token1] = ACTIONS(1302), - [aux_sym_if_statement_token2] = ACTIONS(1302), - [aux_sym_else_if_clause_token1] = ACTIONS(1302), - [aux_sym_else_clause_token1] = ACTIONS(1302), - [aux_sym_match_expression_token1] = ACTIONS(1302), - [aux_sym_match_default_expression_token1] = ACTIONS(1302), - [aux_sym_switch_statement_token1] = ACTIONS(1302), - [aux_sym_switch_block_token1] = ACTIONS(1302), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [aux_sym_clone_expression_token1] = ACTIONS(1302), - [aux_sym_print_intrinsic_token1] = ACTIONS(1302), - [aux_sym_object_creation_expression_token1] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [aux_sym__list_destructing_token1] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_self] = ACTIONS(1302), - [anon_sym_parent] = ACTIONS(1302), - [anon_sym_POUND_LBRACK] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [aux_sym_encapsed_string_token1] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [sym_boolean] = ACTIONS(1302), - [sym_null] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [aux_sym_yield_expression_token1] = ACTIONS(1302), - [aux_sym_include_expression_token1] = ACTIONS(1302), - [aux_sym_include_once_expression_token1] = ACTIONS(1302), - [aux_sym_require_expression_token1] = ACTIONS(1302), - [aux_sym_require_once_expression_token1] = ACTIONS(1302), - [sym_comment] = ACTIONS(5), - }, - [509] = { - [sym_text_interpolation] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_name] = ACTIONS(1306), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1304), - [aux_sym_function_static_declaration_token1] = ACTIONS(1306), - [aux_sym_global_declaration_token1] = ACTIONS(1306), - [aux_sym_namespace_definition_token1] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1306), - [anon_sym_BSLASH] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [aux_sym_trait_declaration_token1] = ACTIONS(1306), - [aux_sym_interface_declaration_token1] = ACTIONS(1306), - [aux_sym_enum_declaration_token1] = ACTIONS(1306), - [aux_sym_enum_case_token1] = ACTIONS(1306), - [aux_sym_class_declaration_token1] = ACTIONS(1306), - [aux_sym_final_modifier_token1] = ACTIONS(1306), - [aux_sym_abstract_modifier_token1] = ACTIONS(1306), - [aux_sym_readonly_modifier_token1] = ACTIONS(1306), - [aux_sym_visibility_modifier_token1] = ACTIONS(1306), - [aux_sym_visibility_modifier_token2] = ACTIONS(1306), - [aux_sym_visibility_modifier_token3] = ACTIONS(1306), - [aux_sym__arrow_function_header_token1] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [aux_sym_cast_type_token1] = ACTIONS(1306), - [aux_sym_echo_statement_token1] = ACTIONS(1306), - [anon_sym_unset] = ACTIONS(1306), - [aux_sym_declare_statement_token1] = ACTIONS(1306), - [aux_sym_declare_statement_token2] = ACTIONS(1306), - [sym_float] = ACTIONS(1306), - [aux_sym_try_statement_token1] = ACTIONS(1306), - [aux_sym_goto_statement_token1] = ACTIONS(1306), - [aux_sym_continue_statement_token1] = ACTIONS(1306), - [aux_sym_break_statement_token1] = ACTIONS(1306), - [sym_integer] = ACTIONS(1306), - [aux_sym_return_statement_token1] = ACTIONS(1306), - [aux_sym_throw_expression_token1] = ACTIONS(1306), - [aux_sym_while_statement_token1] = ACTIONS(1306), - [aux_sym_while_statement_token2] = ACTIONS(1306), - [aux_sym_do_statement_token1] = ACTIONS(1306), - [aux_sym_for_statement_token1] = ACTIONS(1306), - [aux_sym_for_statement_token2] = ACTIONS(1306), - [aux_sym_foreach_statement_token1] = ACTIONS(1306), - [aux_sym_foreach_statement_token2] = ACTIONS(1306), - [aux_sym_if_statement_token1] = ACTIONS(1306), - [aux_sym_if_statement_token2] = ACTIONS(1306), - [aux_sym_else_if_clause_token1] = ACTIONS(1306), - [aux_sym_else_clause_token1] = ACTIONS(1306), - [aux_sym_match_expression_token1] = ACTIONS(1306), - [aux_sym_match_default_expression_token1] = ACTIONS(1306), - [aux_sym_switch_statement_token1] = ACTIONS(1306), - [aux_sym_switch_block_token1] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [aux_sym_clone_expression_token1] = ACTIONS(1306), - [aux_sym_print_intrinsic_token1] = ACTIONS(1306), - [aux_sym_object_creation_expression_token1] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [aux_sym__list_destructing_token1] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_self] = ACTIONS(1306), - [anon_sym_parent] = ACTIONS(1306), - [anon_sym_POUND_LBRACK] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [aux_sym_encapsed_string_token1] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [aux_sym_string_token1] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [sym_boolean] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [aux_sym_yield_expression_token1] = ACTIONS(1306), - [aux_sym_include_expression_token1] = ACTIONS(1306), - [aux_sym_include_once_expression_token1] = ACTIONS(1306), - [aux_sym_require_expression_token1] = ACTIONS(1306), - [aux_sym_require_once_expression_token1] = ACTIONS(1306), - [sym_comment] = ACTIONS(5), - }, - [510] = { - [sym_text_interpolation] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_name] = ACTIONS(1310), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1308), - [aux_sym_function_static_declaration_token1] = ACTIONS(1310), - [aux_sym_global_declaration_token1] = ACTIONS(1310), - [aux_sym_namespace_definition_token1] = ACTIONS(1310), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1310), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1310), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1310), - [anon_sym_BSLASH] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [aux_sym_trait_declaration_token1] = ACTIONS(1310), - [aux_sym_interface_declaration_token1] = ACTIONS(1310), - [aux_sym_enum_declaration_token1] = ACTIONS(1310), - [aux_sym_enum_case_token1] = ACTIONS(1310), - [aux_sym_class_declaration_token1] = ACTIONS(1310), - [aux_sym_final_modifier_token1] = ACTIONS(1310), - [aux_sym_abstract_modifier_token1] = ACTIONS(1310), - [aux_sym_readonly_modifier_token1] = ACTIONS(1310), - [aux_sym_visibility_modifier_token1] = ACTIONS(1310), - [aux_sym_visibility_modifier_token2] = ACTIONS(1310), - [aux_sym_visibility_modifier_token3] = ACTIONS(1310), - [aux_sym__arrow_function_header_token1] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1308), - [aux_sym_cast_type_token1] = ACTIONS(1310), - [aux_sym_echo_statement_token1] = ACTIONS(1310), - [anon_sym_unset] = ACTIONS(1310), - [aux_sym_declare_statement_token1] = ACTIONS(1310), - [aux_sym_declare_statement_token2] = ACTIONS(1310), - [sym_float] = ACTIONS(1310), - [aux_sym_try_statement_token1] = ACTIONS(1310), - [aux_sym_goto_statement_token1] = ACTIONS(1310), - [aux_sym_continue_statement_token1] = ACTIONS(1310), - [aux_sym_break_statement_token1] = ACTIONS(1310), - [sym_integer] = ACTIONS(1310), - [aux_sym_return_statement_token1] = ACTIONS(1310), - [aux_sym_throw_expression_token1] = ACTIONS(1310), - [aux_sym_while_statement_token1] = ACTIONS(1310), - [aux_sym_while_statement_token2] = ACTIONS(1310), - [aux_sym_do_statement_token1] = ACTIONS(1310), - [aux_sym_for_statement_token1] = ACTIONS(1310), - [aux_sym_for_statement_token2] = ACTIONS(1310), - [aux_sym_foreach_statement_token1] = ACTIONS(1310), - [aux_sym_foreach_statement_token2] = ACTIONS(1310), - [aux_sym_if_statement_token1] = ACTIONS(1310), - [aux_sym_if_statement_token2] = ACTIONS(1310), - [aux_sym_else_if_clause_token1] = ACTIONS(1310), - [aux_sym_else_clause_token1] = ACTIONS(1310), - [aux_sym_match_expression_token1] = ACTIONS(1310), - [aux_sym_match_default_expression_token1] = ACTIONS(1310), - [aux_sym_switch_statement_token1] = ACTIONS(1310), - [aux_sym_switch_block_token1] = ACTIONS(1310), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [aux_sym_clone_expression_token1] = ACTIONS(1310), - [aux_sym_print_intrinsic_token1] = ACTIONS(1310), - [aux_sym_object_creation_expression_token1] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [aux_sym__list_destructing_token1] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_self] = ACTIONS(1310), - [anon_sym_parent] = ACTIONS(1310), - [anon_sym_POUND_LBRACK] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [aux_sym_encapsed_string_token1] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [aux_sym_string_token1] = ACTIONS(1308), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [sym_boolean] = ACTIONS(1310), - [sym_null] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [aux_sym_yield_expression_token1] = ACTIONS(1310), - [aux_sym_include_expression_token1] = ACTIONS(1310), - [aux_sym_include_once_expression_token1] = ACTIONS(1310), - [aux_sym_require_expression_token1] = ACTIONS(1310), - [aux_sym_require_once_expression_token1] = ACTIONS(1310), - [sym_comment] = ACTIONS(5), - }, - [511] = { - [sym_text_interpolation] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_name] = ACTIONS(1314), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1312), - [aux_sym_function_static_declaration_token1] = ACTIONS(1314), - [aux_sym_global_declaration_token1] = ACTIONS(1314), - [aux_sym_namespace_definition_token1] = ACTIONS(1314), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1314), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1314), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1314), - [anon_sym_BSLASH] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [aux_sym_trait_declaration_token1] = ACTIONS(1314), - [aux_sym_interface_declaration_token1] = ACTIONS(1314), - [aux_sym_enum_declaration_token1] = ACTIONS(1314), - [aux_sym_enum_case_token1] = ACTIONS(1314), - [aux_sym_class_declaration_token1] = ACTIONS(1314), - [aux_sym_final_modifier_token1] = ACTIONS(1314), - [aux_sym_abstract_modifier_token1] = ACTIONS(1314), - [aux_sym_readonly_modifier_token1] = ACTIONS(1314), - [aux_sym_visibility_modifier_token1] = ACTIONS(1314), - [aux_sym_visibility_modifier_token2] = ACTIONS(1314), - [aux_sym_visibility_modifier_token3] = ACTIONS(1314), - [aux_sym__arrow_function_header_token1] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1312), - [aux_sym_cast_type_token1] = ACTIONS(1314), - [aux_sym_echo_statement_token1] = ACTIONS(1314), - [anon_sym_unset] = ACTIONS(1314), - [aux_sym_declare_statement_token1] = ACTIONS(1314), - [aux_sym_declare_statement_token2] = ACTIONS(1314), - [sym_float] = ACTIONS(1314), - [aux_sym_try_statement_token1] = ACTIONS(1314), - [aux_sym_goto_statement_token1] = ACTIONS(1314), - [aux_sym_continue_statement_token1] = ACTIONS(1314), - [aux_sym_break_statement_token1] = ACTIONS(1314), - [sym_integer] = ACTIONS(1314), - [aux_sym_return_statement_token1] = ACTIONS(1314), - [aux_sym_throw_expression_token1] = ACTIONS(1314), - [aux_sym_while_statement_token1] = ACTIONS(1314), - [aux_sym_while_statement_token2] = ACTIONS(1314), - [aux_sym_do_statement_token1] = ACTIONS(1314), - [aux_sym_for_statement_token1] = ACTIONS(1314), - [aux_sym_for_statement_token2] = ACTIONS(1314), - [aux_sym_foreach_statement_token1] = ACTIONS(1314), - [aux_sym_foreach_statement_token2] = ACTIONS(1314), - [aux_sym_if_statement_token1] = ACTIONS(1314), - [aux_sym_if_statement_token2] = ACTIONS(1314), - [aux_sym_else_if_clause_token1] = ACTIONS(1314), - [aux_sym_else_clause_token1] = ACTIONS(1314), - [aux_sym_match_expression_token1] = ACTIONS(1314), - [aux_sym_match_default_expression_token1] = ACTIONS(1314), - [aux_sym_switch_statement_token1] = ACTIONS(1314), - [aux_sym_switch_block_token1] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [aux_sym_clone_expression_token1] = ACTIONS(1314), - [aux_sym_print_intrinsic_token1] = ACTIONS(1314), - [aux_sym_object_creation_expression_token1] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [aux_sym__list_destructing_token1] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_self] = ACTIONS(1314), - [anon_sym_parent] = ACTIONS(1314), - [anon_sym_POUND_LBRACK] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [aux_sym_encapsed_string_token1] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [aux_sym_string_token1] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [sym_boolean] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [aux_sym_yield_expression_token1] = ACTIONS(1314), - [aux_sym_include_expression_token1] = ACTIONS(1314), - [aux_sym_include_once_expression_token1] = ACTIONS(1314), - [aux_sym_require_expression_token1] = ACTIONS(1314), - [aux_sym_require_once_expression_token1] = ACTIONS(1314), - [sym_comment] = ACTIONS(5), - }, - [512] = { - [sym_text_interpolation] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_name] = ACTIONS(1318), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1316), - [aux_sym_function_static_declaration_token1] = ACTIONS(1318), - [aux_sym_global_declaration_token1] = ACTIONS(1318), - [aux_sym_namespace_definition_token1] = ACTIONS(1318), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1318), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1318), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1318), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [aux_sym_trait_declaration_token1] = ACTIONS(1318), - [aux_sym_interface_declaration_token1] = ACTIONS(1318), - [aux_sym_enum_declaration_token1] = ACTIONS(1318), - [aux_sym_enum_case_token1] = ACTIONS(1318), - [aux_sym_class_declaration_token1] = ACTIONS(1318), - [aux_sym_final_modifier_token1] = ACTIONS(1318), - [aux_sym_abstract_modifier_token1] = ACTIONS(1318), - [aux_sym_readonly_modifier_token1] = ACTIONS(1318), - [aux_sym_visibility_modifier_token1] = ACTIONS(1318), - [aux_sym_visibility_modifier_token2] = ACTIONS(1318), - [aux_sym_visibility_modifier_token3] = ACTIONS(1318), - [aux_sym__arrow_function_header_token1] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [aux_sym_cast_type_token1] = ACTIONS(1318), - [aux_sym_echo_statement_token1] = ACTIONS(1318), - [anon_sym_unset] = ACTIONS(1318), - [aux_sym_declare_statement_token1] = ACTIONS(1318), - [aux_sym_declare_statement_token2] = ACTIONS(1318), - [sym_float] = ACTIONS(1318), - [aux_sym_try_statement_token1] = ACTIONS(1318), - [aux_sym_goto_statement_token1] = ACTIONS(1318), - [aux_sym_continue_statement_token1] = ACTIONS(1318), - [aux_sym_break_statement_token1] = ACTIONS(1318), - [sym_integer] = ACTIONS(1318), - [aux_sym_return_statement_token1] = ACTIONS(1318), - [aux_sym_throw_expression_token1] = ACTIONS(1318), - [aux_sym_while_statement_token1] = ACTIONS(1318), - [aux_sym_while_statement_token2] = ACTIONS(1318), - [aux_sym_do_statement_token1] = ACTIONS(1318), - [aux_sym_for_statement_token1] = ACTIONS(1318), - [aux_sym_for_statement_token2] = ACTIONS(1318), - [aux_sym_foreach_statement_token1] = ACTIONS(1318), - [aux_sym_foreach_statement_token2] = ACTIONS(1318), - [aux_sym_if_statement_token1] = ACTIONS(1318), - [aux_sym_if_statement_token2] = ACTIONS(1318), - [aux_sym_else_if_clause_token1] = ACTIONS(1318), - [aux_sym_else_clause_token1] = ACTIONS(1318), - [aux_sym_match_expression_token1] = ACTIONS(1318), - [aux_sym_match_default_expression_token1] = ACTIONS(1318), - [aux_sym_switch_statement_token1] = ACTIONS(1318), - [aux_sym_switch_block_token1] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [aux_sym_clone_expression_token1] = ACTIONS(1318), - [aux_sym_print_intrinsic_token1] = ACTIONS(1318), - [aux_sym_object_creation_expression_token1] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [aux_sym__list_destructing_token1] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_self] = ACTIONS(1318), - [anon_sym_parent] = ACTIONS(1318), - [anon_sym_POUND_LBRACK] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [aux_sym_encapsed_string_token1] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [aux_sym_string_token1] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [sym_boolean] = ACTIONS(1318), - [sym_null] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), - [aux_sym_yield_expression_token1] = ACTIONS(1318), - [aux_sym_include_expression_token1] = ACTIONS(1318), - [aux_sym_include_once_expression_token1] = ACTIONS(1318), - [aux_sym_require_expression_token1] = ACTIONS(1318), - [aux_sym_require_once_expression_token1] = ACTIONS(1318), - [sym_comment] = ACTIONS(5), - }, - [513] = { - [sym_text_interpolation] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_name] = ACTIONS(1322), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1320), - [aux_sym_function_static_declaration_token1] = ACTIONS(1322), - [aux_sym_global_declaration_token1] = ACTIONS(1322), - [aux_sym_namespace_definition_token1] = ACTIONS(1322), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1322), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1322), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1322), - [anon_sym_BSLASH] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [aux_sym_trait_declaration_token1] = ACTIONS(1322), - [aux_sym_interface_declaration_token1] = ACTIONS(1322), - [aux_sym_enum_declaration_token1] = ACTIONS(1322), - [aux_sym_enum_case_token1] = ACTIONS(1322), - [aux_sym_class_declaration_token1] = ACTIONS(1322), - [aux_sym_final_modifier_token1] = ACTIONS(1322), - [aux_sym_abstract_modifier_token1] = ACTIONS(1322), - [aux_sym_readonly_modifier_token1] = ACTIONS(1322), - [aux_sym_visibility_modifier_token1] = ACTIONS(1322), - [aux_sym_visibility_modifier_token2] = ACTIONS(1322), - [aux_sym_visibility_modifier_token3] = ACTIONS(1322), - [aux_sym__arrow_function_header_token1] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1320), - [aux_sym_cast_type_token1] = ACTIONS(1322), - [aux_sym_echo_statement_token1] = ACTIONS(1322), - [anon_sym_unset] = ACTIONS(1322), - [aux_sym_declare_statement_token1] = ACTIONS(1322), - [aux_sym_declare_statement_token2] = ACTIONS(1322), - [sym_float] = ACTIONS(1322), - [aux_sym_try_statement_token1] = ACTIONS(1322), - [aux_sym_goto_statement_token1] = ACTIONS(1322), - [aux_sym_continue_statement_token1] = ACTIONS(1322), - [aux_sym_break_statement_token1] = ACTIONS(1322), - [sym_integer] = ACTIONS(1322), - [aux_sym_return_statement_token1] = ACTIONS(1322), - [aux_sym_throw_expression_token1] = ACTIONS(1322), - [aux_sym_while_statement_token1] = ACTIONS(1322), - [aux_sym_while_statement_token2] = ACTIONS(1322), - [aux_sym_do_statement_token1] = ACTIONS(1322), - [aux_sym_for_statement_token1] = ACTIONS(1322), - [aux_sym_for_statement_token2] = ACTIONS(1322), - [aux_sym_foreach_statement_token1] = ACTIONS(1322), - [aux_sym_foreach_statement_token2] = ACTIONS(1322), - [aux_sym_if_statement_token1] = ACTIONS(1322), - [aux_sym_if_statement_token2] = ACTIONS(1322), - [aux_sym_else_if_clause_token1] = ACTIONS(1322), - [aux_sym_else_clause_token1] = ACTIONS(1322), - [aux_sym_match_expression_token1] = ACTIONS(1322), - [aux_sym_match_default_expression_token1] = ACTIONS(1322), - [aux_sym_switch_statement_token1] = ACTIONS(1322), - [aux_sym_switch_block_token1] = ACTIONS(1322), - [anon_sym_AT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [aux_sym_clone_expression_token1] = ACTIONS(1322), - [aux_sym_print_intrinsic_token1] = ACTIONS(1322), - [aux_sym_object_creation_expression_token1] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [aux_sym__list_destructing_token1] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_self] = ACTIONS(1322), - [anon_sym_parent] = ACTIONS(1322), - [anon_sym_POUND_LBRACK] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [aux_sym_encapsed_string_token1] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [aux_sym_string_token1] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [sym_boolean] = ACTIONS(1322), - [sym_null] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1320), - [aux_sym_yield_expression_token1] = ACTIONS(1322), - [aux_sym_include_expression_token1] = ACTIONS(1322), - [aux_sym_include_once_expression_token1] = ACTIONS(1322), - [aux_sym_require_expression_token1] = ACTIONS(1322), - [aux_sym_require_once_expression_token1] = ACTIONS(1322), - [sym_comment] = ACTIONS(5), - }, - [514] = { - [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_name] = ACTIONS(1326), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1324), - [aux_sym_function_static_declaration_token1] = ACTIONS(1326), - [aux_sym_global_declaration_token1] = ACTIONS(1326), - [aux_sym_namespace_definition_token1] = ACTIONS(1326), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1326), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1326), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [aux_sym_trait_declaration_token1] = ACTIONS(1326), - [aux_sym_interface_declaration_token1] = ACTIONS(1326), - [aux_sym_enum_declaration_token1] = ACTIONS(1326), - [aux_sym_enum_case_token1] = ACTIONS(1326), - [aux_sym_class_declaration_token1] = ACTIONS(1326), - [aux_sym_final_modifier_token1] = ACTIONS(1326), - [aux_sym_abstract_modifier_token1] = ACTIONS(1326), - [aux_sym_readonly_modifier_token1] = ACTIONS(1326), - [aux_sym_visibility_modifier_token1] = ACTIONS(1326), - [aux_sym_visibility_modifier_token2] = ACTIONS(1326), - [aux_sym_visibility_modifier_token3] = ACTIONS(1326), - [aux_sym__arrow_function_header_token1] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [aux_sym_cast_type_token1] = ACTIONS(1326), - [aux_sym_echo_statement_token1] = ACTIONS(1326), - [anon_sym_unset] = ACTIONS(1326), - [aux_sym_declare_statement_token1] = ACTIONS(1326), - [aux_sym_declare_statement_token2] = ACTIONS(1326), - [sym_float] = ACTIONS(1326), - [aux_sym_try_statement_token1] = ACTIONS(1326), - [aux_sym_goto_statement_token1] = ACTIONS(1326), - [aux_sym_continue_statement_token1] = ACTIONS(1326), - [aux_sym_break_statement_token1] = ACTIONS(1326), - [sym_integer] = ACTIONS(1326), - [aux_sym_return_statement_token1] = ACTIONS(1326), - [aux_sym_throw_expression_token1] = ACTIONS(1326), - [aux_sym_while_statement_token1] = ACTIONS(1326), - [aux_sym_while_statement_token2] = ACTIONS(1326), - [aux_sym_do_statement_token1] = ACTIONS(1326), - [aux_sym_for_statement_token1] = ACTIONS(1326), - [aux_sym_for_statement_token2] = ACTIONS(1326), - [aux_sym_foreach_statement_token1] = ACTIONS(1326), - [aux_sym_foreach_statement_token2] = ACTIONS(1326), - [aux_sym_if_statement_token1] = ACTIONS(1326), - [aux_sym_if_statement_token2] = ACTIONS(1326), - [aux_sym_else_if_clause_token1] = ACTIONS(1326), - [aux_sym_else_clause_token1] = ACTIONS(1326), - [aux_sym_match_expression_token1] = ACTIONS(1326), - [aux_sym_match_default_expression_token1] = ACTIONS(1326), - [aux_sym_switch_statement_token1] = ACTIONS(1326), - [aux_sym_switch_block_token1] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [aux_sym_clone_expression_token1] = ACTIONS(1326), - [aux_sym_print_intrinsic_token1] = ACTIONS(1326), - [aux_sym_object_creation_expression_token1] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [aux_sym__list_destructing_token1] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_self] = ACTIONS(1326), - [anon_sym_parent] = ACTIONS(1326), - [anon_sym_POUND_LBRACK] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [aux_sym_encapsed_string_token1] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [aux_sym_string_token1] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [sym_boolean] = ACTIONS(1326), - [sym_null] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1324), - [aux_sym_yield_expression_token1] = ACTIONS(1326), - [aux_sym_include_expression_token1] = ACTIONS(1326), - [aux_sym_include_once_expression_token1] = ACTIONS(1326), - [aux_sym_require_expression_token1] = ACTIONS(1326), - [aux_sym_require_once_expression_token1] = ACTIONS(1326), - [sym_comment] = ACTIONS(5), - }, - [515] = { - [sym_text_interpolation] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_name] = ACTIONS(1330), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1328), - [aux_sym_function_static_declaration_token1] = ACTIONS(1330), - [aux_sym_global_declaration_token1] = ACTIONS(1330), - [aux_sym_namespace_definition_token1] = ACTIONS(1330), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1330), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1330), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1330), - [anon_sym_BSLASH] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [aux_sym_trait_declaration_token1] = ACTIONS(1330), - [aux_sym_interface_declaration_token1] = ACTIONS(1330), - [aux_sym_enum_declaration_token1] = ACTIONS(1330), - [aux_sym_enum_case_token1] = ACTIONS(1330), - [aux_sym_class_declaration_token1] = ACTIONS(1330), - [aux_sym_final_modifier_token1] = ACTIONS(1330), - [aux_sym_abstract_modifier_token1] = ACTIONS(1330), - [aux_sym_readonly_modifier_token1] = ACTIONS(1330), - [aux_sym_visibility_modifier_token1] = ACTIONS(1330), - [aux_sym_visibility_modifier_token2] = ACTIONS(1330), - [aux_sym_visibility_modifier_token3] = ACTIONS(1330), - [aux_sym__arrow_function_header_token1] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [aux_sym_cast_type_token1] = ACTIONS(1330), - [aux_sym_echo_statement_token1] = ACTIONS(1330), - [anon_sym_unset] = ACTIONS(1330), - [aux_sym_declare_statement_token1] = ACTIONS(1330), - [aux_sym_declare_statement_token2] = ACTIONS(1330), - [sym_float] = ACTIONS(1330), - [aux_sym_try_statement_token1] = ACTIONS(1330), - [aux_sym_goto_statement_token1] = ACTIONS(1330), - [aux_sym_continue_statement_token1] = ACTIONS(1330), - [aux_sym_break_statement_token1] = ACTIONS(1330), - [sym_integer] = ACTIONS(1330), - [aux_sym_return_statement_token1] = ACTIONS(1330), - [aux_sym_throw_expression_token1] = ACTIONS(1330), - [aux_sym_while_statement_token1] = ACTIONS(1330), - [aux_sym_while_statement_token2] = ACTIONS(1330), - [aux_sym_do_statement_token1] = ACTIONS(1330), - [aux_sym_for_statement_token1] = ACTIONS(1330), - [aux_sym_for_statement_token2] = ACTIONS(1330), - [aux_sym_foreach_statement_token1] = ACTIONS(1330), - [aux_sym_foreach_statement_token2] = ACTIONS(1330), - [aux_sym_if_statement_token1] = ACTIONS(1330), - [aux_sym_if_statement_token2] = ACTIONS(1330), - [aux_sym_else_if_clause_token1] = ACTIONS(1330), - [aux_sym_else_clause_token1] = ACTIONS(1330), - [aux_sym_match_expression_token1] = ACTIONS(1330), - [aux_sym_match_default_expression_token1] = ACTIONS(1330), - [aux_sym_switch_statement_token1] = ACTIONS(1330), - [aux_sym_switch_block_token1] = ACTIONS(1330), - [anon_sym_AT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [aux_sym_clone_expression_token1] = ACTIONS(1330), - [aux_sym_print_intrinsic_token1] = ACTIONS(1330), - [aux_sym_object_creation_expression_token1] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [aux_sym__list_destructing_token1] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_self] = ACTIONS(1330), - [anon_sym_parent] = ACTIONS(1330), - [anon_sym_POUND_LBRACK] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [aux_sym_encapsed_string_token1] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [aux_sym_string_token1] = ACTIONS(1328), - [anon_sym_LT_LT_LT] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [sym_boolean] = ACTIONS(1330), - [sym_null] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1328), - [aux_sym_yield_expression_token1] = ACTIONS(1330), - [aux_sym_include_expression_token1] = ACTIONS(1330), - [aux_sym_include_once_expression_token1] = ACTIONS(1330), - [aux_sym_require_expression_token1] = ACTIONS(1330), - [aux_sym_require_once_expression_token1] = ACTIONS(1330), - [sym_comment] = ACTIONS(5), - }, - [516] = { - [sym_text_interpolation] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_name] = ACTIONS(1334), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1332), - [aux_sym_function_static_declaration_token1] = ACTIONS(1334), - [aux_sym_global_declaration_token1] = ACTIONS(1334), - [aux_sym_namespace_definition_token1] = ACTIONS(1334), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1334), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1334), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [aux_sym_trait_declaration_token1] = ACTIONS(1334), - [aux_sym_interface_declaration_token1] = ACTIONS(1334), - [aux_sym_enum_declaration_token1] = ACTIONS(1334), - [aux_sym_enum_case_token1] = ACTIONS(1334), - [aux_sym_class_declaration_token1] = ACTIONS(1334), - [aux_sym_final_modifier_token1] = ACTIONS(1334), - [aux_sym_abstract_modifier_token1] = ACTIONS(1334), - [aux_sym_readonly_modifier_token1] = ACTIONS(1334), - [aux_sym_visibility_modifier_token1] = ACTIONS(1334), - [aux_sym_visibility_modifier_token2] = ACTIONS(1334), - [aux_sym_visibility_modifier_token3] = ACTIONS(1334), - [aux_sym__arrow_function_header_token1] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1332), - [aux_sym_cast_type_token1] = ACTIONS(1334), - [aux_sym_echo_statement_token1] = ACTIONS(1334), - [anon_sym_unset] = ACTIONS(1334), - [aux_sym_declare_statement_token1] = ACTIONS(1334), - [aux_sym_declare_statement_token2] = ACTIONS(1334), - [sym_float] = ACTIONS(1334), - [aux_sym_try_statement_token1] = ACTIONS(1334), - [aux_sym_goto_statement_token1] = ACTIONS(1334), - [aux_sym_continue_statement_token1] = ACTIONS(1334), - [aux_sym_break_statement_token1] = ACTIONS(1334), - [sym_integer] = ACTIONS(1334), - [aux_sym_return_statement_token1] = ACTIONS(1334), - [aux_sym_throw_expression_token1] = ACTIONS(1334), - [aux_sym_while_statement_token1] = ACTIONS(1334), - [aux_sym_while_statement_token2] = ACTIONS(1334), - [aux_sym_do_statement_token1] = ACTIONS(1334), - [aux_sym_for_statement_token1] = ACTIONS(1334), - [aux_sym_for_statement_token2] = ACTIONS(1334), - [aux_sym_foreach_statement_token1] = ACTIONS(1334), - [aux_sym_foreach_statement_token2] = ACTIONS(1334), - [aux_sym_if_statement_token1] = ACTIONS(1334), - [aux_sym_if_statement_token2] = ACTIONS(1334), - [aux_sym_else_if_clause_token1] = ACTIONS(1334), - [aux_sym_else_clause_token1] = ACTIONS(1334), - [aux_sym_match_expression_token1] = ACTIONS(1334), - [aux_sym_match_default_expression_token1] = ACTIONS(1334), - [aux_sym_switch_statement_token1] = ACTIONS(1334), - [aux_sym_switch_block_token1] = ACTIONS(1334), - [anon_sym_AT] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [aux_sym_clone_expression_token1] = ACTIONS(1334), - [aux_sym_print_intrinsic_token1] = ACTIONS(1334), - [aux_sym_object_creation_expression_token1] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [aux_sym__list_destructing_token1] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_self] = ACTIONS(1334), - [anon_sym_parent] = ACTIONS(1334), - [anon_sym_POUND_LBRACK] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [aux_sym_encapsed_string_token1] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [aux_sym_string_token1] = ACTIONS(1332), - [anon_sym_LT_LT_LT] = ACTIONS(1332), - [anon_sym_BQUOTE] = ACTIONS(1332), - [sym_boolean] = ACTIONS(1334), - [sym_null] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1332), - [aux_sym_yield_expression_token1] = ACTIONS(1334), - [aux_sym_include_expression_token1] = ACTIONS(1334), - [aux_sym_include_once_expression_token1] = ACTIONS(1334), - [aux_sym_require_expression_token1] = ACTIONS(1334), - [aux_sym_require_once_expression_token1] = ACTIONS(1334), - [sym_comment] = ACTIONS(5), - }, - [517] = { - [sym_text_interpolation] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_name] = ACTIONS(1306), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1304), - [aux_sym_function_static_declaration_token1] = ACTIONS(1306), - [aux_sym_global_declaration_token1] = ACTIONS(1306), - [aux_sym_namespace_definition_token1] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1306), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1306), - [anon_sym_BSLASH] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [aux_sym_trait_declaration_token1] = ACTIONS(1306), - [aux_sym_interface_declaration_token1] = ACTIONS(1306), - [aux_sym_enum_declaration_token1] = ACTIONS(1306), - [aux_sym_enum_case_token1] = ACTIONS(1306), - [aux_sym_class_declaration_token1] = ACTIONS(1306), - [aux_sym_final_modifier_token1] = ACTIONS(1306), - [aux_sym_abstract_modifier_token1] = ACTIONS(1306), - [aux_sym_readonly_modifier_token1] = ACTIONS(1306), - [aux_sym_visibility_modifier_token1] = ACTIONS(1306), - [aux_sym_visibility_modifier_token2] = ACTIONS(1306), - [aux_sym_visibility_modifier_token3] = ACTIONS(1306), - [aux_sym__arrow_function_header_token1] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [aux_sym_cast_type_token1] = ACTIONS(1306), - [aux_sym_echo_statement_token1] = ACTIONS(1306), - [anon_sym_unset] = ACTIONS(1306), - [aux_sym_declare_statement_token1] = ACTIONS(1306), - [aux_sym_declare_statement_token2] = ACTIONS(1306), - [sym_float] = ACTIONS(1306), - [aux_sym_try_statement_token1] = ACTIONS(1306), - [aux_sym_goto_statement_token1] = ACTIONS(1306), - [aux_sym_continue_statement_token1] = ACTIONS(1306), - [aux_sym_break_statement_token1] = ACTIONS(1306), - [sym_integer] = ACTIONS(1306), - [aux_sym_return_statement_token1] = ACTIONS(1306), - [aux_sym_throw_expression_token1] = ACTIONS(1306), - [aux_sym_while_statement_token1] = ACTIONS(1306), - [aux_sym_while_statement_token2] = ACTIONS(1306), - [aux_sym_do_statement_token1] = ACTIONS(1306), - [aux_sym_for_statement_token1] = ACTIONS(1306), - [aux_sym_for_statement_token2] = ACTIONS(1306), - [aux_sym_foreach_statement_token1] = ACTIONS(1306), - [aux_sym_foreach_statement_token2] = ACTIONS(1306), - [aux_sym_if_statement_token1] = ACTIONS(1306), - [aux_sym_if_statement_token2] = ACTIONS(1306), - [aux_sym_else_if_clause_token1] = ACTIONS(1306), - [aux_sym_else_clause_token1] = ACTIONS(1306), - [aux_sym_match_expression_token1] = ACTIONS(1306), - [aux_sym_match_default_expression_token1] = ACTIONS(1306), - [aux_sym_switch_statement_token1] = ACTIONS(1306), - [aux_sym_switch_block_token1] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [aux_sym_clone_expression_token1] = ACTIONS(1306), - [aux_sym_print_intrinsic_token1] = ACTIONS(1306), - [aux_sym_object_creation_expression_token1] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [aux_sym__list_destructing_token1] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_self] = ACTIONS(1306), - [anon_sym_parent] = ACTIONS(1306), - [anon_sym_POUND_LBRACK] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [aux_sym_encapsed_string_token1] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [aux_sym_string_token1] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [sym_boolean] = ACTIONS(1306), - [sym_null] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [aux_sym_yield_expression_token1] = ACTIONS(1306), - [aux_sym_include_expression_token1] = ACTIONS(1306), - [aux_sym_include_once_expression_token1] = ACTIONS(1306), - [aux_sym_require_expression_token1] = ACTIONS(1306), - [aux_sym_require_once_expression_token1] = ACTIONS(1306), - [sym_comment] = ACTIONS(5), - }, - [518] = { - [sym_text_interpolation] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_name] = ACTIONS(1338), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1336), - [aux_sym_function_static_declaration_token1] = ACTIONS(1338), - [aux_sym_global_declaration_token1] = ACTIONS(1338), - [aux_sym_namespace_definition_token1] = ACTIONS(1338), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1338), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1338), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1338), - [anon_sym_BSLASH] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [aux_sym_trait_declaration_token1] = ACTIONS(1338), - [aux_sym_interface_declaration_token1] = ACTIONS(1338), - [aux_sym_enum_declaration_token1] = ACTIONS(1338), - [aux_sym_enum_case_token1] = ACTIONS(1338), - [aux_sym_class_declaration_token1] = ACTIONS(1338), - [aux_sym_final_modifier_token1] = ACTIONS(1338), - [aux_sym_abstract_modifier_token1] = ACTIONS(1338), - [aux_sym_readonly_modifier_token1] = ACTIONS(1338), - [aux_sym_visibility_modifier_token1] = ACTIONS(1338), - [aux_sym_visibility_modifier_token2] = ACTIONS(1338), - [aux_sym_visibility_modifier_token3] = ACTIONS(1338), - [aux_sym__arrow_function_header_token1] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1336), - [aux_sym_cast_type_token1] = ACTIONS(1338), - [aux_sym_echo_statement_token1] = ACTIONS(1338), - [anon_sym_unset] = ACTIONS(1338), - [aux_sym_declare_statement_token1] = ACTIONS(1338), - [aux_sym_declare_statement_token2] = ACTIONS(1338), - [sym_float] = ACTIONS(1338), - [aux_sym_try_statement_token1] = ACTIONS(1338), - [aux_sym_goto_statement_token1] = ACTIONS(1338), - [aux_sym_continue_statement_token1] = ACTIONS(1338), - [aux_sym_break_statement_token1] = ACTIONS(1338), - [sym_integer] = ACTIONS(1338), - [aux_sym_return_statement_token1] = ACTIONS(1338), - [aux_sym_throw_expression_token1] = ACTIONS(1338), - [aux_sym_while_statement_token1] = ACTIONS(1338), - [aux_sym_while_statement_token2] = ACTIONS(1338), - [aux_sym_do_statement_token1] = ACTIONS(1338), - [aux_sym_for_statement_token1] = ACTIONS(1338), - [aux_sym_for_statement_token2] = ACTIONS(1338), - [aux_sym_foreach_statement_token1] = ACTIONS(1338), - [aux_sym_foreach_statement_token2] = ACTIONS(1338), - [aux_sym_if_statement_token1] = ACTIONS(1338), - [aux_sym_if_statement_token2] = ACTIONS(1338), - [aux_sym_else_if_clause_token1] = ACTIONS(1338), - [aux_sym_else_clause_token1] = ACTIONS(1338), - [aux_sym_match_expression_token1] = ACTIONS(1338), - [aux_sym_match_default_expression_token1] = ACTIONS(1338), - [aux_sym_switch_statement_token1] = ACTIONS(1338), - [aux_sym_switch_block_token1] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [aux_sym_clone_expression_token1] = ACTIONS(1338), - [aux_sym_print_intrinsic_token1] = ACTIONS(1338), - [aux_sym_object_creation_expression_token1] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [aux_sym__list_destructing_token1] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_self] = ACTIONS(1338), - [anon_sym_parent] = ACTIONS(1338), - [anon_sym_POUND_LBRACK] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [aux_sym_encapsed_string_token1] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [aux_sym_string_token1] = ACTIONS(1336), - [anon_sym_LT_LT_LT] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [sym_boolean] = ACTIONS(1338), - [sym_null] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1336), - [aux_sym_yield_expression_token1] = ACTIONS(1338), - [aux_sym_include_expression_token1] = ACTIONS(1338), - [aux_sym_include_once_expression_token1] = ACTIONS(1338), - [aux_sym_require_expression_token1] = ACTIONS(1338), - [aux_sym_require_once_expression_token1] = ACTIONS(1338), - [sym_comment] = ACTIONS(5), - }, - [519] = { - [sym_text_interpolation] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_name] = ACTIONS(1342), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1340), - [aux_sym_function_static_declaration_token1] = ACTIONS(1342), - [aux_sym_global_declaration_token1] = ACTIONS(1342), - [aux_sym_namespace_definition_token1] = ACTIONS(1342), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1342), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1342), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [aux_sym_trait_declaration_token1] = ACTIONS(1342), - [aux_sym_interface_declaration_token1] = ACTIONS(1342), - [aux_sym_enum_declaration_token1] = ACTIONS(1342), - [aux_sym_enum_case_token1] = ACTIONS(1342), - [aux_sym_class_declaration_token1] = ACTIONS(1342), - [aux_sym_final_modifier_token1] = ACTIONS(1342), - [aux_sym_abstract_modifier_token1] = ACTIONS(1342), - [aux_sym_readonly_modifier_token1] = ACTIONS(1342), - [aux_sym_visibility_modifier_token1] = ACTIONS(1342), - [aux_sym_visibility_modifier_token2] = ACTIONS(1342), - [aux_sym_visibility_modifier_token3] = ACTIONS(1342), - [aux_sym__arrow_function_header_token1] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [aux_sym_cast_type_token1] = ACTIONS(1342), - [aux_sym_echo_statement_token1] = ACTIONS(1342), - [anon_sym_unset] = ACTIONS(1342), - [aux_sym_declare_statement_token1] = ACTIONS(1342), - [aux_sym_declare_statement_token2] = ACTIONS(1342), - [sym_float] = ACTIONS(1342), - [aux_sym_try_statement_token1] = ACTIONS(1342), - [aux_sym_goto_statement_token1] = ACTIONS(1342), - [aux_sym_continue_statement_token1] = ACTIONS(1342), - [aux_sym_break_statement_token1] = ACTIONS(1342), - [sym_integer] = ACTIONS(1342), - [aux_sym_return_statement_token1] = ACTIONS(1342), - [aux_sym_throw_expression_token1] = ACTIONS(1342), - [aux_sym_while_statement_token1] = ACTIONS(1342), - [aux_sym_while_statement_token2] = ACTIONS(1342), - [aux_sym_do_statement_token1] = ACTIONS(1342), - [aux_sym_for_statement_token1] = ACTIONS(1342), - [aux_sym_for_statement_token2] = ACTIONS(1342), - [aux_sym_foreach_statement_token1] = ACTIONS(1342), - [aux_sym_foreach_statement_token2] = ACTIONS(1342), - [aux_sym_if_statement_token1] = ACTIONS(1342), - [aux_sym_if_statement_token2] = ACTIONS(1342), - [aux_sym_else_if_clause_token1] = ACTIONS(1342), - [aux_sym_else_clause_token1] = ACTIONS(1342), - [aux_sym_match_expression_token1] = ACTIONS(1342), - [aux_sym_match_default_expression_token1] = ACTIONS(1342), - [aux_sym_switch_statement_token1] = ACTIONS(1342), - [aux_sym_switch_block_token1] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [aux_sym_clone_expression_token1] = ACTIONS(1342), - [aux_sym_print_intrinsic_token1] = ACTIONS(1342), - [aux_sym_object_creation_expression_token1] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [aux_sym__list_destructing_token1] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_self] = ACTIONS(1342), - [anon_sym_parent] = ACTIONS(1342), - [anon_sym_POUND_LBRACK] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [aux_sym_encapsed_string_token1] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [aux_sym_string_token1] = ACTIONS(1340), - [anon_sym_LT_LT_LT] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [sym_boolean] = ACTIONS(1342), - [sym_null] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1340), - [aux_sym_yield_expression_token1] = ACTIONS(1342), - [aux_sym_include_expression_token1] = ACTIONS(1342), - [aux_sym_include_once_expression_token1] = ACTIONS(1342), - [aux_sym_require_expression_token1] = ACTIONS(1342), - [aux_sym_require_once_expression_token1] = ACTIONS(1342), - [sym_comment] = ACTIONS(5), - }, - [520] = { - [sym_text_interpolation] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_name] = ACTIONS(1346), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1344), - [aux_sym_function_static_declaration_token1] = ACTIONS(1346), - [aux_sym_global_declaration_token1] = ACTIONS(1346), - [aux_sym_namespace_definition_token1] = ACTIONS(1346), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1346), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1346), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1346), - [anon_sym_BSLASH] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [aux_sym_trait_declaration_token1] = ACTIONS(1346), - [aux_sym_interface_declaration_token1] = ACTIONS(1346), - [aux_sym_enum_declaration_token1] = ACTIONS(1346), - [aux_sym_enum_case_token1] = ACTIONS(1346), - [aux_sym_class_declaration_token1] = ACTIONS(1346), - [aux_sym_final_modifier_token1] = ACTIONS(1346), - [aux_sym_abstract_modifier_token1] = ACTIONS(1346), - [aux_sym_readonly_modifier_token1] = ACTIONS(1346), - [aux_sym_visibility_modifier_token1] = ACTIONS(1346), - [aux_sym_visibility_modifier_token2] = ACTIONS(1346), - [aux_sym_visibility_modifier_token3] = ACTIONS(1346), - [aux_sym__arrow_function_header_token1] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [aux_sym_cast_type_token1] = ACTIONS(1346), - [aux_sym_echo_statement_token1] = ACTIONS(1346), - [anon_sym_unset] = ACTIONS(1346), - [aux_sym_declare_statement_token1] = ACTIONS(1346), - [aux_sym_declare_statement_token2] = ACTIONS(1346), - [sym_float] = ACTIONS(1346), - [aux_sym_try_statement_token1] = ACTIONS(1346), - [aux_sym_goto_statement_token1] = ACTIONS(1346), - [aux_sym_continue_statement_token1] = ACTIONS(1346), - [aux_sym_break_statement_token1] = ACTIONS(1346), - [sym_integer] = ACTIONS(1346), - [aux_sym_return_statement_token1] = ACTIONS(1346), - [aux_sym_throw_expression_token1] = ACTIONS(1346), - [aux_sym_while_statement_token1] = ACTIONS(1346), - [aux_sym_while_statement_token2] = ACTIONS(1346), - [aux_sym_do_statement_token1] = ACTIONS(1346), - [aux_sym_for_statement_token1] = ACTIONS(1346), - [aux_sym_for_statement_token2] = ACTIONS(1346), - [aux_sym_foreach_statement_token1] = ACTIONS(1346), - [aux_sym_foreach_statement_token2] = ACTIONS(1346), - [aux_sym_if_statement_token1] = ACTIONS(1346), - [aux_sym_if_statement_token2] = ACTIONS(1346), - [aux_sym_else_if_clause_token1] = ACTIONS(1346), - [aux_sym_else_clause_token1] = ACTIONS(1346), - [aux_sym_match_expression_token1] = ACTIONS(1346), - [aux_sym_match_default_expression_token1] = ACTIONS(1346), - [aux_sym_switch_statement_token1] = ACTIONS(1346), - [aux_sym_switch_block_token1] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [aux_sym_clone_expression_token1] = ACTIONS(1346), - [aux_sym_print_intrinsic_token1] = ACTIONS(1346), - [aux_sym_object_creation_expression_token1] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [aux_sym__list_destructing_token1] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_self] = ACTIONS(1346), - [anon_sym_parent] = ACTIONS(1346), - [anon_sym_POUND_LBRACK] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [aux_sym_encapsed_string_token1] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [aux_sym_string_token1] = ACTIONS(1344), - [anon_sym_LT_LT_LT] = ACTIONS(1344), - [anon_sym_BQUOTE] = ACTIONS(1344), - [sym_boolean] = ACTIONS(1346), - [sym_null] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1344), - [aux_sym_yield_expression_token1] = ACTIONS(1346), - [aux_sym_include_expression_token1] = ACTIONS(1346), - [aux_sym_include_once_expression_token1] = ACTIONS(1346), - [aux_sym_require_expression_token1] = ACTIONS(1346), - [aux_sym_require_once_expression_token1] = ACTIONS(1346), - [sym_comment] = ACTIONS(5), - }, - [521] = { - [sym_text_interpolation] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_name] = ACTIONS(1350), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1348), - [aux_sym_function_static_declaration_token1] = ACTIONS(1350), - [aux_sym_global_declaration_token1] = ACTIONS(1350), - [aux_sym_namespace_definition_token1] = ACTIONS(1350), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1350), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1350), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1350), - [anon_sym_BSLASH] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [aux_sym_trait_declaration_token1] = ACTIONS(1350), - [aux_sym_interface_declaration_token1] = ACTIONS(1350), - [aux_sym_enum_declaration_token1] = ACTIONS(1350), - [aux_sym_enum_case_token1] = ACTIONS(1350), - [aux_sym_class_declaration_token1] = ACTIONS(1350), - [aux_sym_final_modifier_token1] = ACTIONS(1350), - [aux_sym_abstract_modifier_token1] = ACTIONS(1350), - [aux_sym_readonly_modifier_token1] = ACTIONS(1350), - [aux_sym_visibility_modifier_token1] = ACTIONS(1350), - [aux_sym_visibility_modifier_token2] = ACTIONS(1350), - [aux_sym_visibility_modifier_token3] = ACTIONS(1350), - [aux_sym__arrow_function_header_token1] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1348), - [aux_sym_cast_type_token1] = ACTIONS(1350), - [aux_sym_echo_statement_token1] = ACTIONS(1350), - [anon_sym_unset] = ACTIONS(1350), - [aux_sym_declare_statement_token1] = ACTIONS(1350), - [aux_sym_declare_statement_token2] = ACTIONS(1350), - [sym_float] = ACTIONS(1350), - [aux_sym_try_statement_token1] = ACTIONS(1350), - [aux_sym_goto_statement_token1] = ACTIONS(1350), - [aux_sym_continue_statement_token1] = ACTIONS(1350), - [aux_sym_break_statement_token1] = ACTIONS(1350), - [sym_integer] = ACTIONS(1350), - [aux_sym_return_statement_token1] = ACTIONS(1350), - [aux_sym_throw_expression_token1] = ACTIONS(1350), - [aux_sym_while_statement_token1] = ACTIONS(1350), - [aux_sym_while_statement_token2] = ACTIONS(1350), - [aux_sym_do_statement_token1] = ACTIONS(1350), - [aux_sym_for_statement_token1] = ACTIONS(1350), - [aux_sym_for_statement_token2] = ACTIONS(1350), - [aux_sym_foreach_statement_token1] = ACTIONS(1350), - [aux_sym_foreach_statement_token2] = ACTIONS(1350), - [aux_sym_if_statement_token1] = ACTIONS(1350), - [aux_sym_if_statement_token2] = ACTIONS(1350), - [aux_sym_else_if_clause_token1] = ACTIONS(1350), - [aux_sym_else_clause_token1] = ACTIONS(1350), - [aux_sym_match_expression_token1] = ACTIONS(1350), - [aux_sym_match_default_expression_token1] = ACTIONS(1350), - [aux_sym_switch_statement_token1] = ACTIONS(1350), - [aux_sym_switch_block_token1] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [aux_sym_clone_expression_token1] = ACTIONS(1350), - [aux_sym_print_intrinsic_token1] = ACTIONS(1350), - [aux_sym_object_creation_expression_token1] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [aux_sym__list_destructing_token1] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_self] = ACTIONS(1350), - [anon_sym_parent] = ACTIONS(1350), - [anon_sym_POUND_LBRACK] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [aux_sym_encapsed_string_token1] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [aux_sym_string_token1] = ACTIONS(1348), - [anon_sym_LT_LT_LT] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [sym_boolean] = ACTIONS(1350), - [sym_null] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1348), - [aux_sym_yield_expression_token1] = ACTIONS(1350), - [aux_sym_include_expression_token1] = ACTIONS(1350), - [aux_sym_include_once_expression_token1] = ACTIONS(1350), - [aux_sym_require_expression_token1] = ACTIONS(1350), - [aux_sym_require_once_expression_token1] = ACTIONS(1350), - [sym_comment] = ACTIONS(5), - }, - [522] = { - [sym_text_interpolation] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_name] = ACTIONS(1354), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1352), - [aux_sym_function_static_declaration_token1] = ACTIONS(1354), - [aux_sym_global_declaration_token1] = ACTIONS(1354), - [aux_sym_namespace_definition_token1] = ACTIONS(1354), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1354), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1354), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1354), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [aux_sym_trait_declaration_token1] = ACTIONS(1354), - [aux_sym_interface_declaration_token1] = ACTIONS(1354), - [aux_sym_enum_declaration_token1] = ACTIONS(1354), - [aux_sym_enum_case_token1] = ACTIONS(1354), - [aux_sym_class_declaration_token1] = ACTIONS(1354), - [aux_sym_final_modifier_token1] = ACTIONS(1354), - [aux_sym_abstract_modifier_token1] = ACTIONS(1354), - [aux_sym_readonly_modifier_token1] = ACTIONS(1354), - [aux_sym_visibility_modifier_token1] = ACTIONS(1354), - [aux_sym_visibility_modifier_token2] = ACTIONS(1354), - [aux_sym_visibility_modifier_token3] = ACTIONS(1354), - [aux_sym__arrow_function_header_token1] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [aux_sym_cast_type_token1] = ACTIONS(1354), - [aux_sym_echo_statement_token1] = ACTIONS(1354), - [anon_sym_unset] = ACTIONS(1354), - [aux_sym_declare_statement_token1] = ACTIONS(1354), - [aux_sym_declare_statement_token2] = ACTIONS(1354), - [sym_float] = ACTIONS(1354), - [aux_sym_try_statement_token1] = ACTIONS(1354), - [aux_sym_goto_statement_token1] = ACTIONS(1354), - [aux_sym_continue_statement_token1] = ACTIONS(1354), - [aux_sym_break_statement_token1] = ACTIONS(1354), - [sym_integer] = ACTIONS(1354), - [aux_sym_return_statement_token1] = ACTIONS(1354), - [aux_sym_throw_expression_token1] = ACTIONS(1354), - [aux_sym_while_statement_token1] = ACTIONS(1354), - [aux_sym_while_statement_token2] = ACTIONS(1354), - [aux_sym_do_statement_token1] = ACTIONS(1354), - [aux_sym_for_statement_token1] = ACTIONS(1354), - [aux_sym_for_statement_token2] = ACTIONS(1354), - [aux_sym_foreach_statement_token1] = ACTIONS(1354), - [aux_sym_foreach_statement_token2] = ACTIONS(1354), - [aux_sym_if_statement_token1] = ACTIONS(1354), - [aux_sym_if_statement_token2] = ACTIONS(1354), - [aux_sym_else_if_clause_token1] = ACTIONS(1354), - [aux_sym_else_clause_token1] = ACTIONS(1354), - [aux_sym_match_expression_token1] = ACTIONS(1354), - [aux_sym_match_default_expression_token1] = ACTIONS(1354), - [aux_sym_switch_statement_token1] = ACTIONS(1354), - [aux_sym_switch_block_token1] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [aux_sym_clone_expression_token1] = ACTIONS(1354), - [aux_sym_print_intrinsic_token1] = ACTIONS(1354), - [aux_sym_object_creation_expression_token1] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [aux_sym__list_destructing_token1] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_self] = ACTIONS(1354), - [anon_sym_parent] = ACTIONS(1354), - [anon_sym_POUND_LBRACK] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [aux_sym_encapsed_string_token1] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [aux_sym_string_token1] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [sym_boolean] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1352), - [aux_sym_yield_expression_token1] = ACTIONS(1354), - [aux_sym_include_expression_token1] = ACTIONS(1354), - [aux_sym_include_once_expression_token1] = ACTIONS(1354), - [aux_sym_require_expression_token1] = ACTIONS(1354), - [aux_sym_require_once_expression_token1] = ACTIONS(1354), - [sym_comment] = ACTIONS(5), - }, - [523] = { - [sym_text_interpolation] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_name] = ACTIONS(1358), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1356), - [aux_sym_function_static_declaration_token1] = ACTIONS(1358), - [aux_sym_global_declaration_token1] = ACTIONS(1358), - [aux_sym_namespace_definition_token1] = ACTIONS(1358), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1358), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1358), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1358), - [anon_sym_BSLASH] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [aux_sym_trait_declaration_token1] = ACTIONS(1358), - [aux_sym_interface_declaration_token1] = ACTIONS(1358), - [aux_sym_enum_declaration_token1] = ACTIONS(1358), - [aux_sym_enum_case_token1] = ACTIONS(1358), - [aux_sym_class_declaration_token1] = ACTIONS(1358), - [aux_sym_final_modifier_token1] = ACTIONS(1358), - [aux_sym_abstract_modifier_token1] = ACTIONS(1358), - [aux_sym_readonly_modifier_token1] = ACTIONS(1358), - [aux_sym_visibility_modifier_token1] = ACTIONS(1358), - [aux_sym_visibility_modifier_token2] = ACTIONS(1358), - [aux_sym_visibility_modifier_token3] = ACTIONS(1358), - [aux_sym__arrow_function_header_token1] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1356), - [aux_sym_cast_type_token1] = ACTIONS(1358), - [aux_sym_echo_statement_token1] = ACTIONS(1358), - [anon_sym_unset] = ACTIONS(1358), - [aux_sym_declare_statement_token1] = ACTIONS(1358), - [aux_sym_declare_statement_token2] = ACTIONS(1358), - [sym_float] = ACTIONS(1358), - [aux_sym_try_statement_token1] = ACTIONS(1358), - [aux_sym_goto_statement_token1] = ACTIONS(1358), - [aux_sym_continue_statement_token1] = ACTIONS(1358), - [aux_sym_break_statement_token1] = ACTIONS(1358), - [sym_integer] = ACTIONS(1358), - [aux_sym_return_statement_token1] = ACTIONS(1358), - [aux_sym_throw_expression_token1] = ACTIONS(1358), - [aux_sym_while_statement_token1] = ACTIONS(1358), - [aux_sym_while_statement_token2] = ACTIONS(1358), - [aux_sym_do_statement_token1] = ACTIONS(1358), - [aux_sym_for_statement_token1] = ACTIONS(1358), - [aux_sym_for_statement_token2] = ACTIONS(1358), - [aux_sym_foreach_statement_token1] = ACTIONS(1358), - [aux_sym_foreach_statement_token2] = ACTIONS(1358), - [aux_sym_if_statement_token1] = ACTIONS(1358), - [aux_sym_if_statement_token2] = ACTIONS(1358), - [aux_sym_else_if_clause_token1] = ACTIONS(1358), - [aux_sym_else_clause_token1] = ACTIONS(1358), - [aux_sym_match_expression_token1] = ACTIONS(1358), - [aux_sym_match_default_expression_token1] = ACTIONS(1358), - [aux_sym_switch_statement_token1] = ACTIONS(1358), - [aux_sym_switch_block_token1] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [aux_sym_clone_expression_token1] = ACTIONS(1358), - [aux_sym_print_intrinsic_token1] = ACTIONS(1358), - [aux_sym_object_creation_expression_token1] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [aux_sym__list_destructing_token1] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_self] = ACTIONS(1358), - [anon_sym_parent] = ACTIONS(1358), - [anon_sym_POUND_LBRACK] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [aux_sym_encapsed_string_token1] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [aux_sym_string_token1] = ACTIONS(1356), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [sym_boolean] = ACTIONS(1358), - [sym_null] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), - [aux_sym_yield_expression_token1] = ACTIONS(1358), - [aux_sym_include_expression_token1] = ACTIONS(1358), - [aux_sym_include_once_expression_token1] = ACTIONS(1358), - [aux_sym_require_expression_token1] = ACTIONS(1358), - [aux_sym_require_once_expression_token1] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - }, - [524] = { - [sym_text_interpolation] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_name] = ACTIONS(1362), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1360), - [aux_sym_function_static_declaration_token1] = ACTIONS(1362), - [aux_sym_global_declaration_token1] = ACTIONS(1362), - [aux_sym_namespace_definition_token1] = ACTIONS(1362), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1362), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1362), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [aux_sym_trait_declaration_token1] = ACTIONS(1362), - [aux_sym_interface_declaration_token1] = ACTIONS(1362), - [aux_sym_enum_declaration_token1] = ACTIONS(1362), - [aux_sym_enum_case_token1] = ACTIONS(1362), - [aux_sym_class_declaration_token1] = ACTIONS(1362), - [aux_sym_final_modifier_token1] = ACTIONS(1362), - [aux_sym_abstract_modifier_token1] = ACTIONS(1362), - [aux_sym_readonly_modifier_token1] = ACTIONS(1362), - [aux_sym_visibility_modifier_token1] = ACTIONS(1362), - [aux_sym_visibility_modifier_token2] = ACTIONS(1362), - [aux_sym_visibility_modifier_token3] = ACTIONS(1362), - [aux_sym__arrow_function_header_token1] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1360), - [aux_sym_cast_type_token1] = ACTIONS(1362), - [aux_sym_echo_statement_token1] = ACTIONS(1362), - [anon_sym_unset] = ACTIONS(1362), - [aux_sym_declare_statement_token1] = ACTIONS(1362), - [aux_sym_declare_statement_token2] = ACTIONS(1362), - [sym_float] = ACTIONS(1362), - [aux_sym_try_statement_token1] = ACTIONS(1362), - [aux_sym_goto_statement_token1] = ACTIONS(1362), - [aux_sym_continue_statement_token1] = ACTIONS(1362), - [aux_sym_break_statement_token1] = ACTIONS(1362), - [sym_integer] = ACTIONS(1362), - [aux_sym_return_statement_token1] = ACTIONS(1362), - [aux_sym_throw_expression_token1] = ACTIONS(1362), - [aux_sym_while_statement_token1] = ACTIONS(1362), - [aux_sym_while_statement_token2] = ACTIONS(1362), - [aux_sym_do_statement_token1] = ACTIONS(1362), - [aux_sym_for_statement_token1] = ACTIONS(1362), - [aux_sym_for_statement_token2] = ACTIONS(1362), - [aux_sym_foreach_statement_token1] = ACTIONS(1362), - [aux_sym_foreach_statement_token2] = ACTIONS(1362), - [aux_sym_if_statement_token1] = ACTIONS(1362), - [aux_sym_if_statement_token2] = ACTIONS(1362), - [aux_sym_else_if_clause_token1] = ACTIONS(1362), - [aux_sym_else_clause_token1] = ACTIONS(1362), - [aux_sym_match_expression_token1] = ACTIONS(1362), - [aux_sym_match_default_expression_token1] = ACTIONS(1362), - [aux_sym_switch_statement_token1] = ACTIONS(1362), - [aux_sym_switch_block_token1] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [aux_sym_clone_expression_token1] = ACTIONS(1362), - [aux_sym_print_intrinsic_token1] = ACTIONS(1362), - [aux_sym_object_creation_expression_token1] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [aux_sym__list_destructing_token1] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_self] = ACTIONS(1362), - [anon_sym_parent] = ACTIONS(1362), - [anon_sym_POUND_LBRACK] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [aux_sym_encapsed_string_token1] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [aux_sym_string_token1] = ACTIONS(1360), - [anon_sym_LT_LT_LT] = ACTIONS(1360), - [anon_sym_BQUOTE] = ACTIONS(1360), - [sym_boolean] = ACTIONS(1362), - [sym_null] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1360), - [aux_sym_yield_expression_token1] = ACTIONS(1362), - [aux_sym_include_expression_token1] = ACTIONS(1362), - [aux_sym_include_once_expression_token1] = ACTIONS(1362), - [aux_sym_require_expression_token1] = ACTIONS(1362), - [aux_sym_require_once_expression_token1] = ACTIONS(1362), - [sym_comment] = ACTIONS(5), - }, - [525] = { - [sym_text_interpolation] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_name] = ACTIONS(1366), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1364), - [aux_sym_function_static_declaration_token1] = ACTIONS(1366), - [aux_sym_global_declaration_token1] = ACTIONS(1366), - [aux_sym_namespace_definition_token1] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1366), - [anon_sym_BSLASH] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [aux_sym_trait_declaration_token1] = ACTIONS(1366), - [aux_sym_interface_declaration_token1] = ACTIONS(1366), - [aux_sym_enum_declaration_token1] = ACTIONS(1366), - [aux_sym_enum_case_token1] = ACTIONS(1366), - [aux_sym_class_declaration_token1] = ACTIONS(1366), - [aux_sym_final_modifier_token1] = ACTIONS(1366), - [aux_sym_abstract_modifier_token1] = ACTIONS(1366), - [aux_sym_readonly_modifier_token1] = ACTIONS(1366), - [aux_sym_visibility_modifier_token1] = ACTIONS(1366), - [aux_sym_visibility_modifier_token2] = ACTIONS(1366), - [aux_sym_visibility_modifier_token3] = ACTIONS(1366), - [aux_sym__arrow_function_header_token1] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [aux_sym_cast_type_token1] = ACTIONS(1366), - [aux_sym_echo_statement_token1] = ACTIONS(1366), - [anon_sym_unset] = ACTIONS(1366), - [aux_sym_declare_statement_token1] = ACTIONS(1366), - [aux_sym_declare_statement_token2] = ACTIONS(1366), - [sym_float] = ACTIONS(1366), - [aux_sym_try_statement_token1] = ACTIONS(1366), - [aux_sym_goto_statement_token1] = ACTIONS(1366), - [aux_sym_continue_statement_token1] = ACTIONS(1366), - [aux_sym_break_statement_token1] = ACTIONS(1366), - [sym_integer] = ACTIONS(1366), - [aux_sym_return_statement_token1] = ACTIONS(1366), - [aux_sym_throw_expression_token1] = ACTIONS(1366), - [aux_sym_while_statement_token1] = ACTIONS(1366), - [aux_sym_while_statement_token2] = ACTIONS(1366), - [aux_sym_do_statement_token1] = ACTIONS(1366), - [aux_sym_for_statement_token1] = ACTIONS(1366), - [aux_sym_for_statement_token2] = ACTIONS(1366), - [aux_sym_foreach_statement_token1] = ACTIONS(1366), - [aux_sym_foreach_statement_token2] = ACTIONS(1366), - [aux_sym_if_statement_token1] = ACTIONS(1366), - [aux_sym_if_statement_token2] = ACTIONS(1366), - [aux_sym_else_if_clause_token1] = ACTIONS(1366), - [aux_sym_else_clause_token1] = ACTIONS(1366), - [aux_sym_match_expression_token1] = ACTIONS(1366), - [aux_sym_match_default_expression_token1] = ACTIONS(1366), - [aux_sym_switch_statement_token1] = ACTIONS(1366), - [aux_sym_switch_block_token1] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [aux_sym_clone_expression_token1] = ACTIONS(1366), - [aux_sym_print_intrinsic_token1] = ACTIONS(1366), - [aux_sym_object_creation_expression_token1] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [aux_sym__list_destructing_token1] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_self] = ACTIONS(1366), - [anon_sym_parent] = ACTIONS(1366), - [anon_sym_POUND_LBRACK] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [aux_sym_encapsed_string_token1] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [aux_sym_string_token1] = ACTIONS(1364), - [anon_sym_LT_LT_LT] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_boolean] = ACTIONS(1366), - [sym_null] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1364), - [aux_sym_yield_expression_token1] = ACTIONS(1366), - [aux_sym_include_expression_token1] = ACTIONS(1366), - [aux_sym_include_once_expression_token1] = ACTIONS(1366), - [aux_sym_require_expression_token1] = ACTIONS(1366), - [aux_sym_require_once_expression_token1] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [526] = { - [sym_text_interpolation] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_name] = ACTIONS(1370), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1368), - [aux_sym_function_static_declaration_token1] = ACTIONS(1370), - [aux_sym_global_declaration_token1] = ACTIONS(1370), - [aux_sym_namespace_definition_token1] = ACTIONS(1370), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1370), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1370), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [aux_sym_trait_declaration_token1] = ACTIONS(1370), - [aux_sym_interface_declaration_token1] = ACTIONS(1370), - [aux_sym_enum_declaration_token1] = ACTIONS(1370), - [aux_sym_enum_case_token1] = ACTIONS(1370), - [aux_sym_class_declaration_token1] = ACTIONS(1370), - [aux_sym_final_modifier_token1] = ACTIONS(1370), - [aux_sym_abstract_modifier_token1] = ACTIONS(1370), - [aux_sym_readonly_modifier_token1] = ACTIONS(1370), - [aux_sym_visibility_modifier_token1] = ACTIONS(1370), - [aux_sym_visibility_modifier_token2] = ACTIONS(1370), - [aux_sym_visibility_modifier_token3] = ACTIONS(1370), - [aux_sym__arrow_function_header_token1] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [aux_sym_cast_type_token1] = ACTIONS(1370), - [aux_sym_echo_statement_token1] = ACTIONS(1370), - [anon_sym_unset] = ACTIONS(1370), - [aux_sym_declare_statement_token1] = ACTIONS(1370), - [aux_sym_declare_statement_token2] = ACTIONS(1370), - [sym_float] = ACTIONS(1370), - [aux_sym_try_statement_token1] = ACTIONS(1370), - [aux_sym_goto_statement_token1] = ACTIONS(1370), - [aux_sym_continue_statement_token1] = ACTIONS(1370), - [aux_sym_break_statement_token1] = ACTIONS(1370), - [sym_integer] = ACTIONS(1370), - [aux_sym_return_statement_token1] = ACTIONS(1370), - [aux_sym_throw_expression_token1] = ACTIONS(1370), - [aux_sym_while_statement_token1] = ACTIONS(1370), - [aux_sym_while_statement_token2] = ACTIONS(1370), - [aux_sym_do_statement_token1] = ACTIONS(1370), - [aux_sym_for_statement_token1] = ACTIONS(1370), - [aux_sym_for_statement_token2] = ACTIONS(1370), - [aux_sym_foreach_statement_token1] = ACTIONS(1370), - [aux_sym_foreach_statement_token2] = ACTIONS(1370), - [aux_sym_if_statement_token1] = ACTIONS(1370), - [aux_sym_if_statement_token2] = ACTIONS(1370), - [aux_sym_else_if_clause_token1] = ACTIONS(1370), - [aux_sym_else_clause_token1] = ACTIONS(1370), - [aux_sym_match_expression_token1] = ACTIONS(1370), - [aux_sym_match_default_expression_token1] = ACTIONS(1370), - [aux_sym_switch_statement_token1] = ACTIONS(1370), - [aux_sym_switch_block_token1] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [aux_sym_clone_expression_token1] = ACTIONS(1370), - [aux_sym_print_intrinsic_token1] = ACTIONS(1370), - [aux_sym_object_creation_expression_token1] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [aux_sym__list_destructing_token1] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_self] = ACTIONS(1370), - [anon_sym_parent] = ACTIONS(1370), - [anon_sym_POUND_LBRACK] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [aux_sym_encapsed_string_token1] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [aux_sym_string_token1] = ACTIONS(1368), - [anon_sym_LT_LT_LT] = ACTIONS(1368), - [anon_sym_BQUOTE] = ACTIONS(1368), - [sym_boolean] = ACTIONS(1370), - [sym_null] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [aux_sym_yield_expression_token1] = ACTIONS(1370), - [aux_sym_include_expression_token1] = ACTIONS(1370), - [aux_sym_include_once_expression_token1] = ACTIONS(1370), - [aux_sym_require_expression_token1] = ACTIONS(1370), - [aux_sym_require_once_expression_token1] = ACTIONS(1370), - [sym_comment] = ACTIONS(5), - }, - [527] = { - [sym_text_interpolation] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1078), - [sym_name] = ACTIONS(1080), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1078), - [aux_sym_function_static_declaration_token1] = ACTIONS(1080), - [aux_sym_global_declaration_token1] = ACTIONS(1080), - [aux_sym_namespace_definition_token1] = ACTIONS(1080), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1080), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1080), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1080), - [anon_sym_BSLASH] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [aux_sym_trait_declaration_token1] = ACTIONS(1080), - [aux_sym_interface_declaration_token1] = ACTIONS(1080), - [aux_sym_enum_declaration_token1] = ACTIONS(1080), - [aux_sym_enum_case_token1] = ACTIONS(1080), - [aux_sym_class_declaration_token1] = ACTIONS(1080), - [aux_sym_final_modifier_token1] = ACTIONS(1080), - [aux_sym_abstract_modifier_token1] = ACTIONS(1080), - [aux_sym_readonly_modifier_token1] = ACTIONS(1080), - [aux_sym_visibility_modifier_token1] = ACTIONS(1080), - [aux_sym_visibility_modifier_token2] = ACTIONS(1080), - [aux_sym_visibility_modifier_token3] = ACTIONS(1080), - [aux_sym__arrow_function_header_token1] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1078), - [aux_sym_cast_type_token1] = ACTIONS(1080), - [aux_sym_echo_statement_token1] = ACTIONS(1080), - [anon_sym_unset] = ACTIONS(1080), - [aux_sym_declare_statement_token1] = ACTIONS(1080), - [aux_sym_declare_statement_token2] = ACTIONS(1080), - [sym_float] = ACTIONS(1080), - [aux_sym_try_statement_token1] = ACTIONS(1080), - [aux_sym_goto_statement_token1] = ACTIONS(1080), - [aux_sym_continue_statement_token1] = ACTIONS(1080), - [aux_sym_break_statement_token1] = ACTIONS(1080), - [sym_integer] = ACTIONS(1080), - [aux_sym_return_statement_token1] = ACTIONS(1080), - [aux_sym_throw_expression_token1] = ACTIONS(1080), - [aux_sym_while_statement_token1] = ACTIONS(1080), - [aux_sym_while_statement_token2] = ACTIONS(1080), - [aux_sym_do_statement_token1] = ACTIONS(1080), - [aux_sym_for_statement_token1] = ACTIONS(1080), - [aux_sym_for_statement_token2] = ACTIONS(1080), - [aux_sym_foreach_statement_token1] = ACTIONS(1080), - [aux_sym_foreach_statement_token2] = ACTIONS(1080), - [aux_sym_if_statement_token1] = ACTIONS(1080), - [aux_sym_if_statement_token2] = ACTIONS(1080), - [aux_sym_else_if_clause_token1] = ACTIONS(1080), - [aux_sym_else_clause_token1] = ACTIONS(1080), - [aux_sym_match_expression_token1] = ACTIONS(1080), - [aux_sym_match_default_expression_token1] = ACTIONS(1080), - [aux_sym_switch_statement_token1] = ACTIONS(1080), - [aux_sym_switch_block_token1] = ACTIONS(1080), - [anon_sym_AT] = ACTIONS(1078), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [aux_sym_clone_expression_token1] = ACTIONS(1080), - [aux_sym_print_intrinsic_token1] = ACTIONS(1080), - [aux_sym_object_creation_expression_token1] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [aux_sym__list_destructing_token1] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_self] = ACTIONS(1080), - [anon_sym_parent] = ACTIONS(1080), - [anon_sym_POUND_LBRACK] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [aux_sym_encapsed_string_token1] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [aux_sym_string_token1] = ACTIONS(1078), - [anon_sym_LT_LT_LT] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1078), - [sym_boolean] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1078), - [aux_sym_yield_expression_token1] = ACTIONS(1080), - [aux_sym_include_expression_token1] = ACTIONS(1080), - [aux_sym_include_once_expression_token1] = ACTIONS(1080), - [aux_sym_require_expression_token1] = ACTIONS(1080), - [aux_sym_require_once_expression_token1] = ACTIONS(1080), - [sym_comment] = ACTIONS(5), - }, - [528] = { - [sym_text_interpolation] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_name] = ACTIONS(1374), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1372), - [aux_sym_function_static_declaration_token1] = ACTIONS(1374), - [aux_sym_global_declaration_token1] = ACTIONS(1374), - [aux_sym_namespace_definition_token1] = ACTIONS(1374), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1374), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1374), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1374), - [anon_sym_BSLASH] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [aux_sym_trait_declaration_token1] = ACTIONS(1374), - [aux_sym_interface_declaration_token1] = ACTIONS(1374), - [aux_sym_enum_declaration_token1] = ACTIONS(1374), - [aux_sym_enum_case_token1] = ACTIONS(1374), - [aux_sym_class_declaration_token1] = ACTIONS(1374), - [aux_sym_final_modifier_token1] = ACTIONS(1374), - [aux_sym_abstract_modifier_token1] = ACTIONS(1374), - [aux_sym_readonly_modifier_token1] = ACTIONS(1374), - [aux_sym_visibility_modifier_token1] = ACTIONS(1374), - [aux_sym_visibility_modifier_token2] = ACTIONS(1374), - [aux_sym_visibility_modifier_token3] = ACTIONS(1374), - [aux_sym__arrow_function_header_token1] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1372), - [aux_sym_cast_type_token1] = ACTIONS(1374), - [aux_sym_echo_statement_token1] = ACTIONS(1374), - [anon_sym_unset] = ACTIONS(1374), - [aux_sym_declare_statement_token1] = ACTIONS(1374), - [aux_sym_declare_statement_token2] = ACTIONS(1374), - [sym_float] = ACTIONS(1374), - [aux_sym_try_statement_token1] = ACTIONS(1374), - [aux_sym_goto_statement_token1] = ACTIONS(1374), - [aux_sym_continue_statement_token1] = ACTIONS(1374), - [aux_sym_break_statement_token1] = ACTIONS(1374), - [sym_integer] = ACTIONS(1374), - [aux_sym_return_statement_token1] = ACTIONS(1374), - [aux_sym_throw_expression_token1] = ACTIONS(1374), - [aux_sym_while_statement_token1] = ACTIONS(1374), - [aux_sym_while_statement_token2] = ACTIONS(1374), - [aux_sym_do_statement_token1] = ACTIONS(1374), - [aux_sym_for_statement_token1] = ACTIONS(1374), - [aux_sym_for_statement_token2] = ACTIONS(1374), - [aux_sym_foreach_statement_token1] = ACTIONS(1374), - [aux_sym_foreach_statement_token2] = ACTIONS(1374), - [aux_sym_if_statement_token1] = ACTIONS(1374), - [aux_sym_if_statement_token2] = ACTIONS(1374), - [aux_sym_else_if_clause_token1] = ACTIONS(1374), - [aux_sym_else_clause_token1] = ACTIONS(1374), - [aux_sym_match_expression_token1] = ACTIONS(1374), - [aux_sym_match_default_expression_token1] = ACTIONS(1374), - [aux_sym_switch_statement_token1] = ACTIONS(1374), - [aux_sym_switch_block_token1] = ACTIONS(1374), - [anon_sym_AT] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [aux_sym_clone_expression_token1] = ACTIONS(1374), - [aux_sym_print_intrinsic_token1] = ACTIONS(1374), - [aux_sym_object_creation_expression_token1] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [aux_sym__list_destructing_token1] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_self] = ACTIONS(1374), - [anon_sym_parent] = ACTIONS(1374), - [anon_sym_POUND_LBRACK] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [aux_sym_encapsed_string_token1] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [aux_sym_string_token1] = ACTIONS(1372), - [anon_sym_LT_LT_LT] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_boolean] = ACTIONS(1374), - [sym_null] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1372), - [aux_sym_yield_expression_token1] = ACTIONS(1374), - [aux_sym_include_expression_token1] = ACTIONS(1374), - [aux_sym_include_once_expression_token1] = ACTIONS(1374), - [aux_sym_require_expression_token1] = ACTIONS(1374), - [aux_sym_require_once_expression_token1] = ACTIONS(1374), - [sym_comment] = ACTIONS(5), - }, - [529] = { - [sym_text_interpolation] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(996), - [sym_name] = ACTIONS(998), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(996), - [aux_sym_function_static_declaration_token1] = ACTIONS(998), - [aux_sym_global_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_definition_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(998), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [aux_sym_trait_declaration_token1] = ACTIONS(998), - [aux_sym_interface_declaration_token1] = ACTIONS(998), - [aux_sym_enum_declaration_token1] = ACTIONS(998), - [aux_sym_enum_case_token1] = ACTIONS(998), - [aux_sym_class_declaration_token1] = ACTIONS(998), - [aux_sym_final_modifier_token1] = ACTIONS(998), - [aux_sym_abstract_modifier_token1] = ACTIONS(998), - [aux_sym_readonly_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token1] = ACTIONS(998), - [aux_sym_visibility_modifier_token2] = ACTIONS(998), - [aux_sym_visibility_modifier_token3] = ACTIONS(998), - [aux_sym__arrow_function_header_token1] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(996), - [aux_sym_cast_type_token1] = ACTIONS(998), - [aux_sym_echo_statement_token1] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(998), - [aux_sym_declare_statement_token1] = ACTIONS(998), - [aux_sym_declare_statement_token2] = ACTIONS(998), - [sym_float] = ACTIONS(998), - [aux_sym_try_statement_token1] = ACTIONS(998), - [aux_sym_goto_statement_token1] = ACTIONS(998), - [aux_sym_continue_statement_token1] = ACTIONS(998), - [aux_sym_break_statement_token1] = ACTIONS(998), - [sym_integer] = ACTIONS(998), - [aux_sym_return_statement_token1] = ACTIONS(998), - [aux_sym_throw_expression_token1] = ACTIONS(998), - [aux_sym_while_statement_token1] = ACTIONS(998), - [aux_sym_while_statement_token2] = ACTIONS(998), - [aux_sym_do_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token1] = ACTIONS(998), - [aux_sym_for_statement_token2] = ACTIONS(998), - [aux_sym_foreach_statement_token1] = ACTIONS(998), - [aux_sym_foreach_statement_token2] = ACTIONS(998), - [aux_sym_if_statement_token1] = ACTIONS(998), - [aux_sym_if_statement_token2] = ACTIONS(998), - [aux_sym_else_if_clause_token1] = ACTIONS(998), - [aux_sym_else_clause_token1] = ACTIONS(998), - [aux_sym_match_expression_token1] = ACTIONS(998), - [aux_sym_match_default_expression_token1] = ACTIONS(998), - [aux_sym_switch_statement_token1] = ACTIONS(998), - [aux_sym_switch_block_token1] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [aux_sym_clone_expression_token1] = ACTIONS(998), - [aux_sym_print_intrinsic_token1] = ACTIONS(998), - [aux_sym_object_creation_expression_token1] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(996), - [aux_sym__list_destructing_token1] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_self] = ACTIONS(998), - [anon_sym_parent] = ACTIONS(998), - [anon_sym_POUND_LBRACK] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [aux_sym_encapsed_string_token1] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [aux_sym_string_token1] = ACTIONS(996), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [anon_sym_BQUOTE] = ACTIONS(996), - [sym_boolean] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [aux_sym_yield_expression_token1] = ACTIONS(998), - [aux_sym_include_expression_token1] = ACTIONS(998), - [aux_sym_include_once_expression_token1] = ACTIONS(998), - [aux_sym_require_expression_token1] = ACTIONS(998), - [aux_sym_require_once_expression_token1] = ACTIONS(998), - [sym_comment] = ACTIONS(5), - }, - [530] = { - [sym_text_interpolation] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_name] = ACTIONS(1378), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1376), - [aux_sym_function_static_declaration_token1] = ACTIONS(1378), - [aux_sym_global_declaration_token1] = ACTIONS(1378), - [aux_sym_namespace_definition_token1] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1378), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1378), - [anon_sym_BSLASH] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [aux_sym_trait_declaration_token1] = ACTIONS(1378), - [aux_sym_interface_declaration_token1] = ACTIONS(1378), - [aux_sym_enum_declaration_token1] = ACTIONS(1378), - [aux_sym_enum_case_token1] = ACTIONS(1378), - [aux_sym_class_declaration_token1] = ACTIONS(1378), - [aux_sym_final_modifier_token1] = ACTIONS(1378), - [aux_sym_abstract_modifier_token1] = ACTIONS(1378), - [aux_sym_readonly_modifier_token1] = ACTIONS(1378), - [aux_sym_visibility_modifier_token1] = ACTIONS(1378), - [aux_sym_visibility_modifier_token2] = ACTIONS(1378), - [aux_sym_visibility_modifier_token3] = ACTIONS(1378), - [aux_sym__arrow_function_header_token1] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [aux_sym_cast_type_token1] = ACTIONS(1378), - [aux_sym_echo_statement_token1] = ACTIONS(1378), - [anon_sym_unset] = ACTIONS(1378), - [aux_sym_declare_statement_token1] = ACTIONS(1378), - [aux_sym_declare_statement_token2] = ACTIONS(1378), - [sym_float] = ACTIONS(1378), - [aux_sym_try_statement_token1] = ACTIONS(1378), - [aux_sym_goto_statement_token1] = ACTIONS(1378), - [aux_sym_continue_statement_token1] = ACTIONS(1378), - [aux_sym_break_statement_token1] = ACTIONS(1378), - [sym_integer] = ACTIONS(1378), - [aux_sym_return_statement_token1] = ACTIONS(1378), - [aux_sym_throw_expression_token1] = ACTIONS(1378), - [aux_sym_while_statement_token1] = ACTIONS(1378), - [aux_sym_while_statement_token2] = ACTIONS(1378), - [aux_sym_do_statement_token1] = ACTIONS(1378), - [aux_sym_for_statement_token1] = ACTIONS(1378), - [aux_sym_for_statement_token2] = ACTIONS(1378), - [aux_sym_foreach_statement_token1] = ACTIONS(1378), - [aux_sym_foreach_statement_token2] = ACTIONS(1378), - [aux_sym_if_statement_token1] = ACTIONS(1378), - [aux_sym_if_statement_token2] = ACTIONS(1378), - [aux_sym_else_if_clause_token1] = ACTIONS(1378), - [aux_sym_else_clause_token1] = ACTIONS(1378), - [aux_sym_match_expression_token1] = ACTIONS(1378), - [aux_sym_match_default_expression_token1] = ACTIONS(1378), - [aux_sym_switch_statement_token1] = ACTIONS(1378), - [aux_sym_switch_block_token1] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [aux_sym_clone_expression_token1] = ACTIONS(1378), - [aux_sym_print_intrinsic_token1] = ACTIONS(1378), - [aux_sym_object_creation_expression_token1] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [aux_sym__list_destructing_token1] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_self] = ACTIONS(1378), - [anon_sym_parent] = ACTIONS(1378), - [anon_sym_POUND_LBRACK] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [aux_sym_encapsed_string_token1] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1376), - [anon_sym_LT_LT_LT] = ACTIONS(1376), - [anon_sym_BQUOTE] = ACTIONS(1376), - [sym_boolean] = ACTIONS(1378), - [sym_null] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [aux_sym_yield_expression_token1] = ACTIONS(1378), - [aux_sym_include_expression_token1] = ACTIONS(1378), - [aux_sym_include_once_expression_token1] = ACTIONS(1378), - [aux_sym_require_expression_token1] = ACTIONS(1378), - [aux_sym_require_once_expression_token1] = ACTIONS(1378), - [sym_comment] = ACTIONS(5), - }, - [531] = { - [sym_text_interpolation] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_name] = ACTIONS(1366), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1364), - [aux_sym_function_static_declaration_token1] = ACTIONS(1366), - [aux_sym_global_declaration_token1] = ACTIONS(1366), - [aux_sym_namespace_definition_token1] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1366), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1366), - [anon_sym_BSLASH] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [aux_sym_trait_declaration_token1] = ACTIONS(1366), - [aux_sym_interface_declaration_token1] = ACTIONS(1366), - [aux_sym_enum_declaration_token1] = ACTIONS(1366), - [aux_sym_enum_case_token1] = ACTIONS(1366), - [aux_sym_class_declaration_token1] = ACTIONS(1366), - [aux_sym_final_modifier_token1] = ACTIONS(1366), - [aux_sym_abstract_modifier_token1] = ACTIONS(1366), - [aux_sym_readonly_modifier_token1] = ACTIONS(1366), - [aux_sym_visibility_modifier_token1] = ACTIONS(1366), - [aux_sym_visibility_modifier_token2] = ACTIONS(1366), - [aux_sym_visibility_modifier_token3] = ACTIONS(1366), - [aux_sym__arrow_function_header_token1] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [aux_sym_cast_type_token1] = ACTIONS(1366), - [aux_sym_echo_statement_token1] = ACTIONS(1366), - [anon_sym_unset] = ACTIONS(1366), - [aux_sym_declare_statement_token1] = ACTIONS(1366), - [aux_sym_declare_statement_token2] = ACTIONS(1366), - [sym_float] = ACTIONS(1366), - [aux_sym_try_statement_token1] = ACTIONS(1366), - [aux_sym_goto_statement_token1] = ACTIONS(1366), - [aux_sym_continue_statement_token1] = ACTIONS(1366), - [aux_sym_break_statement_token1] = ACTIONS(1366), - [sym_integer] = ACTIONS(1366), - [aux_sym_return_statement_token1] = ACTIONS(1366), - [aux_sym_throw_expression_token1] = ACTIONS(1366), - [aux_sym_while_statement_token1] = ACTIONS(1366), - [aux_sym_while_statement_token2] = ACTIONS(1366), - [aux_sym_do_statement_token1] = ACTIONS(1366), - [aux_sym_for_statement_token1] = ACTIONS(1366), - [aux_sym_for_statement_token2] = ACTIONS(1366), - [aux_sym_foreach_statement_token1] = ACTIONS(1366), - [aux_sym_foreach_statement_token2] = ACTIONS(1366), - [aux_sym_if_statement_token1] = ACTIONS(1366), - [aux_sym_if_statement_token2] = ACTIONS(1366), - [aux_sym_else_if_clause_token1] = ACTIONS(1366), - [aux_sym_else_clause_token1] = ACTIONS(1366), - [aux_sym_match_expression_token1] = ACTIONS(1366), - [aux_sym_match_default_expression_token1] = ACTIONS(1366), - [aux_sym_switch_statement_token1] = ACTIONS(1366), - [aux_sym_switch_block_token1] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [aux_sym_clone_expression_token1] = ACTIONS(1366), - [aux_sym_print_intrinsic_token1] = ACTIONS(1366), - [aux_sym_object_creation_expression_token1] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [aux_sym__list_destructing_token1] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_self] = ACTIONS(1366), - [anon_sym_parent] = ACTIONS(1366), - [anon_sym_POUND_LBRACK] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [aux_sym_encapsed_string_token1] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [aux_sym_string_token1] = ACTIONS(1364), - [anon_sym_LT_LT_LT] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_boolean] = ACTIONS(1366), - [sym_null] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1364), - [aux_sym_yield_expression_token1] = ACTIONS(1366), - [aux_sym_include_expression_token1] = ACTIONS(1366), - [aux_sym_include_once_expression_token1] = ACTIONS(1366), - [aux_sym_require_expression_token1] = ACTIONS(1366), - [aux_sym_require_once_expression_token1] = ACTIONS(1366), - [sym_comment] = ACTIONS(5), - }, - [532] = { - [sym_text_interpolation] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_name] = ACTIONS(1382), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1380), - [aux_sym_function_static_declaration_token1] = ACTIONS(1382), - [aux_sym_global_declaration_token1] = ACTIONS(1382), - [aux_sym_namespace_definition_token1] = ACTIONS(1382), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1382), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1382), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1382), - [anon_sym_BSLASH] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [aux_sym_trait_declaration_token1] = ACTIONS(1382), - [aux_sym_interface_declaration_token1] = ACTIONS(1382), - [aux_sym_enum_declaration_token1] = ACTIONS(1382), - [aux_sym_enum_case_token1] = ACTIONS(1382), - [aux_sym_class_declaration_token1] = ACTIONS(1382), - [aux_sym_final_modifier_token1] = ACTIONS(1382), - [aux_sym_abstract_modifier_token1] = ACTIONS(1382), - [aux_sym_readonly_modifier_token1] = ACTIONS(1382), - [aux_sym_visibility_modifier_token1] = ACTIONS(1382), - [aux_sym_visibility_modifier_token2] = ACTIONS(1382), - [aux_sym_visibility_modifier_token3] = ACTIONS(1382), - [aux_sym__arrow_function_header_token1] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [aux_sym_cast_type_token1] = ACTIONS(1382), - [aux_sym_echo_statement_token1] = ACTIONS(1382), - [anon_sym_unset] = ACTIONS(1382), - [aux_sym_declare_statement_token1] = ACTIONS(1382), - [aux_sym_declare_statement_token2] = ACTIONS(1382), - [sym_float] = ACTIONS(1382), - [aux_sym_try_statement_token1] = ACTIONS(1382), - [aux_sym_goto_statement_token1] = ACTIONS(1382), - [aux_sym_continue_statement_token1] = ACTIONS(1382), - [aux_sym_break_statement_token1] = ACTIONS(1382), - [sym_integer] = ACTIONS(1382), - [aux_sym_return_statement_token1] = ACTIONS(1382), - [aux_sym_throw_expression_token1] = ACTIONS(1382), - [aux_sym_while_statement_token1] = ACTIONS(1382), - [aux_sym_while_statement_token2] = ACTIONS(1382), - [aux_sym_do_statement_token1] = ACTIONS(1382), - [aux_sym_for_statement_token1] = ACTIONS(1382), - [aux_sym_for_statement_token2] = ACTIONS(1382), - [aux_sym_foreach_statement_token1] = ACTIONS(1382), - [aux_sym_foreach_statement_token2] = ACTIONS(1382), - [aux_sym_if_statement_token1] = ACTIONS(1382), - [aux_sym_if_statement_token2] = ACTIONS(1382), - [aux_sym_else_if_clause_token1] = ACTIONS(1382), - [aux_sym_else_clause_token1] = ACTIONS(1382), - [aux_sym_match_expression_token1] = ACTIONS(1382), - [aux_sym_match_default_expression_token1] = ACTIONS(1382), - [aux_sym_switch_statement_token1] = ACTIONS(1382), - [aux_sym_switch_block_token1] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [aux_sym_clone_expression_token1] = ACTIONS(1382), - [aux_sym_print_intrinsic_token1] = ACTIONS(1382), - [aux_sym_object_creation_expression_token1] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [aux_sym__list_destructing_token1] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_self] = ACTIONS(1382), - [anon_sym_parent] = ACTIONS(1382), - [anon_sym_POUND_LBRACK] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [aux_sym_encapsed_string_token1] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [aux_sym_string_token1] = ACTIONS(1380), - [anon_sym_LT_LT_LT] = ACTIONS(1380), - [anon_sym_BQUOTE] = ACTIONS(1380), - [sym_boolean] = ACTIONS(1382), - [sym_null] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1380), - [aux_sym_yield_expression_token1] = ACTIONS(1382), - [aux_sym_include_expression_token1] = ACTIONS(1382), - [aux_sym_include_once_expression_token1] = ACTIONS(1382), - [aux_sym_require_expression_token1] = ACTIONS(1382), - [aux_sym_require_once_expression_token1] = ACTIONS(1382), - [sym_comment] = ACTIONS(5), - }, - [533] = { - [sym_text_interpolation] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_name] = ACTIONS(1386), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1384), - [aux_sym_function_static_declaration_token1] = ACTIONS(1386), - [aux_sym_global_declaration_token1] = ACTIONS(1386), - [aux_sym_namespace_definition_token1] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [aux_sym_trait_declaration_token1] = ACTIONS(1386), - [aux_sym_interface_declaration_token1] = ACTIONS(1386), - [aux_sym_enum_declaration_token1] = ACTIONS(1386), - [aux_sym_enum_case_token1] = ACTIONS(1386), - [aux_sym_class_declaration_token1] = ACTIONS(1386), - [aux_sym_final_modifier_token1] = ACTIONS(1386), - [aux_sym_abstract_modifier_token1] = ACTIONS(1386), - [aux_sym_readonly_modifier_token1] = ACTIONS(1386), - [aux_sym_visibility_modifier_token1] = ACTIONS(1386), - [aux_sym_visibility_modifier_token2] = ACTIONS(1386), - [aux_sym_visibility_modifier_token3] = ACTIONS(1386), - [aux_sym__arrow_function_header_token1] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [aux_sym_cast_type_token1] = ACTIONS(1386), - [aux_sym_echo_statement_token1] = ACTIONS(1386), - [anon_sym_unset] = ACTIONS(1386), - [aux_sym_declare_statement_token1] = ACTIONS(1386), - [aux_sym_declare_statement_token2] = ACTIONS(1386), - [sym_float] = ACTIONS(1386), - [aux_sym_try_statement_token1] = ACTIONS(1386), - [aux_sym_goto_statement_token1] = ACTIONS(1386), - [aux_sym_continue_statement_token1] = ACTIONS(1386), - [aux_sym_break_statement_token1] = ACTIONS(1386), - [sym_integer] = ACTIONS(1386), - [aux_sym_return_statement_token1] = ACTIONS(1386), - [aux_sym_throw_expression_token1] = ACTIONS(1386), - [aux_sym_while_statement_token1] = ACTIONS(1386), - [aux_sym_while_statement_token2] = ACTIONS(1386), - [aux_sym_do_statement_token1] = ACTIONS(1386), - [aux_sym_for_statement_token1] = ACTIONS(1386), - [aux_sym_for_statement_token2] = ACTIONS(1386), - [aux_sym_foreach_statement_token1] = ACTIONS(1386), - [aux_sym_foreach_statement_token2] = ACTIONS(1386), - [aux_sym_if_statement_token1] = ACTIONS(1386), - [aux_sym_if_statement_token2] = ACTIONS(1386), - [aux_sym_else_if_clause_token1] = ACTIONS(1386), - [aux_sym_else_clause_token1] = ACTIONS(1386), - [aux_sym_match_expression_token1] = ACTIONS(1386), - [aux_sym_match_default_expression_token1] = ACTIONS(1386), - [aux_sym_switch_statement_token1] = ACTIONS(1386), - [aux_sym_switch_block_token1] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [aux_sym_clone_expression_token1] = ACTIONS(1386), - [aux_sym_print_intrinsic_token1] = ACTIONS(1386), - [aux_sym_object_creation_expression_token1] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [aux_sym__list_destructing_token1] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_self] = ACTIONS(1386), - [anon_sym_parent] = ACTIONS(1386), - [anon_sym_POUND_LBRACK] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [aux_sym_encapsed_string_token1] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [aux_sym_string_token1] = ACTIONS(1384), - [anon_sym_LT_LT_LT] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_boolean] = ACTIONS(1386), - [sym_null] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1384), - [aux_sym_yield_expression_token1] = ACTIONS(1386), - [aux_sym_include_expression_token1] = ACTIONS(1386), - [aux_sym_include_once_expression_token1] = ACTIONS(1386), - [aux_sym_require_expression_token1] = ACTIONS(1386), - [aux_sym_require_once_expression_token1] = ACTIONS(1386), - [sym_comment] = ACTIONS(5), - }, - [534] = { - [sym_text_interpolation] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_name] = ACTIONS(1386), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1384), - [aux_sym_function_static_declaration_token1] = ACTIONS(1386), - [aux_sym_global_declaration_token1] = ACTIONS(1386), - [aux_sym_namespace_definition_token1] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1386), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [aux_sym_trait_declaration_token1] = ACTIONS(1386), - [aux_sym_interface_declaration_token1] = ACTIONS(1386), - [aux_sym_enum_declaration_token1] = ACTIONS(1386), - [aux_sym_enum_case_token1] = ACTIONS(1386), - [aux_sym_class_declaration_token1] = ACTIONS(1386), - [aux_sym_final_modifier_token1] = ACTIONS(1386), - [aux_sym_abstract_modifier_token1] = ACTIONS(1386), - [aux_sym_readonly_modifier_token1] = ACTIONS(1386), - [aux_sym_visibility_modifier_token1] = ACTIONS(1386), - [aux_sym_visibility_modifier_token2] = ACTIONS(1386), - [aux_sym_visibility_modifier_token3] = ACTIONS(1386), - [aux_sym__arrow_function_header_token1] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [aux_sym_cast_type_token1] = ACTIONS(1386), - [aux_sym_echo_statement_token1] = ACTIONS(1386), - [anon_sym_unset] = ACTIONS(1386), - [aux_sym_declare_statement_token1] = ACTIONS(1386), - [aux_sym_declare_statement_token2] = ACTIONS(1386), - [sym_float] = ACTIONS(1386), - [aux_sym_try_statement_token1] = ACTIONS(1386), - [aux_sym_goto_statement_token1] = ACTIONS(1386), - [aux_sym_continue_statement_token1] = ACTIONS(1386), - [aux_sym_break_statement_token1] = ACTIONS(1386), - [sym_integer] = ACTIONS(1386), - [aux_sym_return_statement_token1] = ACTIONS(1386), - [aux_sym_throw_expression_token1] = ACTIONS(1386), - [aux_sym_while_statement_token1] = ACTIONS(1386), - [aux_sym_while_statement_token2] = ACTIONS(1386), - [aux_sym_do_statement_token1] = ACTIONS(1386), - [aux_sym_for_statement_token1] = ACTIONS(1386), - [aux_sym_for_statement_token2] = ACTIONS(1386), - [aux_sym_foreach_statement_token1] = ACTIONS(1386), - [aux_sym_foreach_statement_token2] = ACTIONS(1386), - [aux_sym_if_statement_token1] = ACTIONS(1386), - [aux_sym_if_statement_token2] = ACTIONS(1386), - [aux_sym_else_if_clause_token1] = ACTIONS(1386), - [aux_sym_else_clause_token1] = ACTIONS(1386), - [aux_sym_match_expression_token1] = ACTIONS(1386), - [aux_sym_match_default_expression_token1] = ACTIONS(1386), - [aux_sym_switch_statement_token1] = ACTIONS(1386), - [aux_sym_switch_block_token1] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [aux_sym_clone_expression_token1] = ACTIONS(1386), - [aux_sym_print_intrinsic_token1] = ACTIONS(1386), - [aux_sym_object_creation_expression_token1] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [aux_sym__list_destructing_token1] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_self] = ACTIONS(1386), - [anon_sym_parent] = ACTIONS(1386), - [anon_sym_POUND_LBRACK] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [aux_sym_encapsed_string_token1] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [aux_sym_string_token1] = ACTIONS(1384), - [anon_sym_LT_LT_LT] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_boolean] = ACTIONS(1386), - [sym_null] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1384), - [aux_sym_yield_expression_token1] = ACTIONS(1386), - [aux_sym_include_expression_token1] = ACTIONS(1386), - [aux_sym_include_once_expression_token1] = ACTIONS(1386), - [aux_sym_require_expression_token1] = ACTIONS(1386), - [aux_sym_require_once_expression_token1] = ACTIONS(1386), - [sym_comment] = ACTIONS(5), - }, - [535] = { - [sym_text_interpolation] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_name] = ACTIONS(1390), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1388), - [aux_sym_function_static_declaration_token1] = ACTIONS(1390), - [aux_sym_global_declaration_token1] = ACTIONS(1390), - [aux_sym_namespace_definition_token1] = ACTIONS(1390), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1390), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1390), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [aux_sym_trait_declaration_token1] = ACTIONS(1390), - [aux_sym_interface_declaration_token1] = ACTIONS(1390), - [aux_sym_enum_declaration_token1] = ACTIONS(1390), - [aux_sym_enum_case_token1] = ACTIONS(1390), - [aux_sym_class_declaration_token1] = ACTIONS(1390), - [aux_sym_final_modifier_token1] = ACTIONS(1390), - [aux_sym_abstract_modifier_token1] = ACTIONS(1390), - [aux_sym_readonly_modifier_token1] = ACTIONS(1390), - [aux_sym_visibility_modifier_token1] = ACTIONS(1390), - [aux_sym_visibility_modifier_token2] = ACTIONS(1390), - [aux_sym_visibility_modifier_token3] = ACTIONS(1390), - [aux_sym__arrow_function_header_token1] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [aux_sym_cast_type_token1] = ACTIONS(1390), - [aux_sym_echo_statement_token1] = ACTIONS(1390), - [anon_sym_unset] = ACTIONS(1390), - [aux_sym_declare_statement_token1] = ACTIONS(1390), - [aux_sym_declare_statement_token2] = ACTIONS(1390), - [sym_float] = ACTIONS(1390), - [aux_sym_try_statement_token1] = ACTIONS(1390), - [aux_sym_goto_statement_token1] = ACTIONS(1390), - [aux_sym_continue_statement_token1] = ACTIONS(1390), - [aux_sym_break_statement_token1] = ACTIONS(1390), - [sym_integer] = ACTIONS(1390), - [aux_sym_return_statement_token1] = ACTIONS(1390), - [aux_sym_throw_expression_token1] = ACTIONS(1390), - [aux_sym_while_statement_token1] = ACTIONS(1390), - [aux_sym_while_statement_token2] = ACTIONS(1390), - [aux_sym_do_statement_token1] = ACTIONS(1390), - [aux_sym_for_statement_token1] = ACTIONS(1390), - [aux_sym_for_statement_token2] = ACTIONS(1390), - [aux_sym_foreach_statement_token1] = ACTIONS(1390), - [aux_sym_foreach_statement_token2] = ACTIONS(1390), - [aux_sym_if_statement_token1] = ACTIONS(1390), - [aux_sym_if_statement_token2] = ACTIONS(1390), - [aux_sym_else_if_clause_token1] = ACTIONS(1390), - [aux_sym_else_clause_token1] = ACTIONS(1390), - [aux_sym_match_expression_token1] = ACTIONS(1390), - [aux_sym_match_default_expression_token1] = ACTIONS(1390), - [aux_sym_switch_statement_token1] = ACTIONS(1390), - [aux_sym_switch_block_token1] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [aux_sym_clone_expression_token1] = ACTIONS(1390), - [aux_sym_print_intrinsic_token1] = ACTIONS(1390), - [aux_sym_object_creation_expression_token1] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [aux_sym__list_destructing_token1] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_self] = ACTIONS(1390), - [anon_sym_parent] = ACTIONS(1390), - [anon_sym_POUND_LBRACK] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [aux_sym_encapsed_string_token1] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [aux_sym_string_token1] = ACTIONS(1388), - [anon_sym_LT_LT_LT] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_boolean] = ACTIONS(1390), - [sym_null] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1388), - [aux_sym_yield_expression_token1] = ACTIONS(1390), - [aux_sym_include_expression_token1] = ACTIONS(1390), - [aux_sym_include_once_expression_token1] = ACTIONS(1390), - [aux_sym_require_expression_token1] = ACTIONS(1390), - [aux_sym_require_once_expression_token1] = ACTIONS(1390), - [sym_comment] = ACTIONS(5), - }, - [536] = { - [sym_text_interpolation] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_name] = ACTIONS(1394), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1392), - [aux_sym_function_static_declaration_token1] = ACTIONS(1394), - [aux_sym_global_declaration_token1] = ACTIONS(1394), - [aux_sym_namespace_definition_token1] = ACTIONS(1394), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1394), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1394), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [aux_sym_trait_declaration_token1] = ACTIONS(1394), - [aux_sym_interface_declaration_token1] = ACTIONS(1394), - [aux_sym_enum_declaration_token1] = ACTIONS(1394), - [aux_sym_enum_case_token1] = ACTIONS(1394), - [aux_sym_class_declaration_token1] = ACTIONS(1394), - [aux_sym_final_modifier_token1] = ACTIONS(1394), - [aux_sym_abstract_modifier_token1] = ACTIONS(1394), - [aux_sym_readonly_modifier_token1] = ACTIONS(1394), - [aux_sym_visibility_modifier_token1] = ACTIONS(1394), - [aux_sym_visibility_modifier_token2] = ACTIONS(1394), - [aux_sym_visibility_modifier_token3] = ACTIONS(1394), - [aux_sym__arrow_function_header_token1] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [aux_sym_cast_type_token1] = ACTIONS(1394), - [aux_sym_echo_statement_token1] = ACTIONS(1394), - [anon_sym_unset] = ACTIONS(1394), - [aux_sym_declare_statement_token1] = ACTIONS(1394), - [aux_sym_declare_statement_token2] = ACTIONS(1394), - [sym_float] = ACTIONS(1394), - [aux_sym_try_statement_token1] = ACTIONS(1394), - [aux_sym_goto_statement_token1] = ACTIONS(1394), - [aux_sym_continue_statement_token1] = ACTIONS(1394), - [aux_sym_break_statement_token1] = ACTIONS(1394), - [sym_integer] = ACTIONS(1394), - [aux_sym_return_statement_token1] = ACTIONS(1394), - [aux_sym_throw_expression_token1] = ACTIONS(1394), - [aux_sym_while_statement_token1] = ACTIONS(1394), - [aux_sym_while_statement_token2] = ACTIONS(1394), - [aux_sym_do_statement_token1] = ACTIONS(1394), - [aux_sym_for_statement_token1] = ACTIONS(1394), - [aux_sym_for_statement_token2] = ACTIONS(1394), - [aux_sym_foreach_statement_token1] = ACTIONS(1394), - [aux_sym_foreach_statement_token2] = ACTIONS(1394), - [aux_sym_if_statement_token1] = ACTIONS(1394), - [aux_sym_if_statement_token2] = ACTIONS(1394), - [aux_sym_else_if_clause_token1] = ACTIONS(1394), - [aux_sym_else_clause_token1] = ACTIONS(1394), - [aux_sym_match_expression_token1] = ACTIONS(1394), - [aux_sym_match_default_expression_token1] = ACTIONS(1394), - [aux_sym_switch_statement_token1] = ACTIONS(1394), - [aux_sym_switch_block_token1] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [aux_sym_clone_expression_token1] = ACTIONS(1394), - [aux_sym_print_intrinsic_token1] = ACTIONS(1394), - [aux_sym_object_creation_expression_token1] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [aux_sym__list_destructing_token1] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_self] = ACTIONS(1394), - [anon_sym_parent] = ACTIONS(1394), - [anon_sym_POUND_LBRACK] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [aux_sym_encapsed_string_token1] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [aux_sym_string_token1] = ACTIONS(1392), - [anon_sym_LT_LT_LT] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_boolean] = ACTIONS(1394), - [sym_null] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1392), - [aux_sym_yield_expression_token1] = ACTIONS(1394), - [aux_sym_include_expression_token1] = ACTIONS(1394), - [aux_sym_include_once_expression_token1] = ACTIONS(1394), - [aux_sym_require_expression_token1] = ACTIONS(1394), - [aux_sym_require_once_expression_token1] = ACTIONS(1394), - [sym_comment] = ACTIONS(5), - }, - [537] = { - [sym_text_interpolation] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_name] = ACTIONS(1398), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1396), - [aux_sym_function_static_declaration_token1] = ACTIONS(1398), - [aux_sym_global_declaration_token1] = ACTIONS(1398), - [aux_sym_namespace_definition_token1] = ACTIONS(1398), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1398), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1398), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1398), - [anon_sym_BSLASH] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [aux_sym_trait_declaration_token1] = ACTIONS(1398), - [aux_sym_interface_declaration_token1] = ACTIONS(1398), - [aux_sym_enum_declaration_token1] = ACTIONS(1398), - [aux_sym_enum_case_token1] = ACTIONS(1398), - [aux_sym_class_declaration_token1] = ACTIONS(1398), - [aux_sym_final_modifier_token1] = ACTIONS(1398), - [aux_sym_abstract_modifier_token1] = ACTIONS(1398), - [aux_sym_readonly_modifier_token1] = ACTIONS(1398), - [aux_sym_visibility_modifier_token1] = ACTIONS(1398), - [aux_sym_visibility_modifier_token2] = ACTIONS(1398), - [aux_sym_visibility_modifier_token3] = ACTIONS(1398), - [aux_sym__arrow_function_header_token1] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [aux_sym_cast_type_token1] = ACTIONS(1398), - [aux_sym_echo_statement_token1] = ACTIONS(1398), - [anon_sym_unset] = ACTIONS(1398), - [aux_sym_declare_statement_token1] = ACTIONS(1398), - [aux_sym_declare_statement_token2] = ACTIONS(1398), - [sym_float] = ACTIONS(1398), - [aux_sym_try_statement_token1] = ACTIONS(1398), - [aux_sym_goto_statement_token1] = ACTIONS(1398), - [aux_sym_continue_statement_token1] = ACTIONS(1398), - [aux_sym_break_statement_token1] = ACTIONS(1398), - [sym_integer] = ACTIONS(1398), - [aux_sym_return_statement_token1] = ACTIONS(1398), - [aux_sym_throw_expression_token1] = ACTIONS(1398), - [aux_sym_while_statement_token1] = ACTIONS(1398), - [aux_sym_while_statement_token2] = ACTIONS(1398), - [aux_sym_do_statement_token1] = ACTIONS(1398), - [aux_sym_for_statement_token1] = ACTIONS(1398), - [aux_sym_for_statement_token2] = ACTIONS(1398), - [aux_sym_foreach_statement_token1] = ACTIONS(1398), - [aux_sym_foreach_statement_token2] = ACTIONS(1398), - [aux_sym_if_statement_token1] = ACTIONS(1398), - [aux_sym_if_statement_token2] = ACTIONS(1398), - [aux_sym_else_if_clause_token1] = ACTIONS(1398), - [aux_sym_else_clause_token1] = ACTIONS(1398), - [aux_sym_match_expression_token1] = ACTIONS(1398), - [aux_sym_match_default_expression_token1] = ACTIONS(1398), - [aux_sym_switch_statement_token1] = ACTIONS(1398), - [aux_sym_switch_block_token1] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [aux_sym_clone_expression_token1] = ACTIONS(1398), - [aux_sym_print_intrinsic_token1] = ACTIONS(1398), - [aux_sym_object_creation_expression_token1] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [aux_sym__list_destructing_token1] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_self] = ACTIONS(1398), - [anon_sym_parent] = ACTIONS(1398), - [anon_sym_POUND_LBRACK] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [aux_sym_encapsed_string_token1] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [aux_sym_string_token1] = ACTIONS(1396), - [anon_sym_LT_LT_LT] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_boolean] = ACTIONS(1398), - [sym_null] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1396), - [aux_sym_yield_expression_token1] = ACTIONS(1398), - [aux_sym_include_expression_token1] = ACTIONS(1398), - [aux_sym_include_once_expression_token1] = ACTIONS(1398), - [aux_sym_require_expression_token1] = ACTIONS(1398), - [aux_sym_require_once_expression_token1] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - }, - [538] = { - [sym_text_interpolation] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_name] = ACTIONS(1202), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1200), - [aux_sym_function_static_declaration_token1] = ACTIONS(1202), - [aux_sym_global_declaration_token1] = ACTIONS(1202), - [aux_sym_namespace_definition_token1] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1202), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1202), - [anon_sym_BSLASH] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [aux_sym_trait_declaration_token1] = ACTIONS(1202), - [aux_sym_interface_declaration_token1] = ACTIONS(1202), - [aux_sym_enum_declaration_token1] = ACTIONS(1202), - [aux_sym_enum_case_token1] = ACTIONS(1202), - [aux_sym_class_declaration_token1] = ACTIONS(1202), - [aux_sym_final_modifier_token1] = ACTIONS(1202), - [aux_sym_abstract_modifier_token1] = ACTIONS(1202), - [aux_sym_readonly_modifier_token1] = ACTIONS(1202), - [aux_sym_visibility_modifier_token1] = ACTIONS(1202), - [aux_sym_visibility_modifier_token2] = ACTIONS(1202), - [aux_sym_visibility_modifier_token3] = ACTIONS(1202), - [aux_sym__arrow_function_header_token1] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1200), - [aux_sym_cast_type_token1] = ACTIONS(1202), - [aux_sym_echo_statement_token1] = ACTIONS(1202), - [anon_sym_unset] = ACTIONS(1202), - [aux_sym_declare_statement_token1] = ACTIONS(1202), - [aux_sym_declare_statement_token2] = ACTIONS(1202), - [sym_float] = ACTIONS(1202), - [aux_sym_try_statement_token1] = ACTIONS(1202), - [aux_sym_goto_statement_token1] = ACTIONS(1202), - [aux_sym_continue_statement_token1] = ACTIONS(1202), - [aux_sym_break_statement_token1] = ACTIONS(1202), - [sym_integer] = ACTIONS(1202), - [aux_sym_return_statement_token1] = ACTIONS(1202), - [aux_sym_throw_expression_token1] = ACTIONS(1202), - [aux_sym_while_statement_token1] = ACTIONS(1202), - [aux_sym_while_statement_token2] = ACTIONS(1202), - [aux_sym_do_statement_token1] = ACTIONS(1202), - [aux_sym_for_statement_token1] = ACTIONS(1202), - [aux_sym_for_statement_token2] = ACTIONS(1202), - [aux_sym_foreach_statement_token1] = ACTIONS(1202), - [aux_sym_foreach_statement_token2] = ACTIONS(1202), - [aux_sym_if_statement_token1] = ACTIONS(1202), - [aux_sym_if_statement_token2] = ACTIONS(1202), - [aux_sym_else_if_clause_token1] = ACTIONS(1202), - [aux_sym_else_clause_token1] = ACTIONS(1202), - [aux_sym_match_expression_token1] = ACTIONS(1202), - [aux_sym_match_default_expression_token1] = ACTIONS(1202), - [aux_sym_switch_statement_token1] = ACTIONS(1202), - [aux_sym_switch_block_token1] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [aux_sym_clone_expression_token1] = ACTIONS(1202), - [aux_sym_print_intrinsic_token1] = ACTIONS(1202), - [aux_sym_object_creation_expression_token1] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [aux_sym__list_destructing_token1] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_self] = ACTIONS(1202), - [anon_sym_parent] = ACTIONS(1202), - [anon_sym_POUND_LBRACK] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [aux_sym_encapsed_string_token1] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [aux_sym_string_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_BQUOTE] = ACTIONS(1200), - [sym_boolean] = ACTIONS(1202), - [sym_null] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1200), - [aux_sym_yield_expression_token1] = ACTIONS(1202), - [aux_sym_include_expression_token1] = ACTIONS(1202), - [aux_sym_include_once_expression_token1] = ACTIONS(1202), - [aux_sym_require_expression_token1] = ACTIONS(1202), - [aux_sym_require_once_expression_token1] = ACTIONS(1202), - [sym_comment] = ACTIONS(5), - }, - [539] = { - [sym_text_interpolation] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_name] = ACTIONS(1402), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1400), - [aux_sym_function_static_declaration_token1] = ACTIONS(1402), - [aux_sym_global_declaration_token1] = ACTIONS(1402), - [aux_sym_namespace_definition_token1] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1402), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1402), - [anon_sym_BSLASH] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [aux_sym_trait_declaration_token1] = ACTIONS(1402), - [aux_sym_interface_declaration_token1] = ACTIONS(1402), - [aux_sym_enum_declaration_token1] = ACTIONS(1402), - [aux_sym_enum_case_token1] = ACTIONS(1402), - [aux_sym_class_declaration_token1] = ACTIONS(1402), - [aux_sym_final_modifier_token1] = ACTIONS(1402), - [aux_sym_abstract_modifier_token1] = ACTIONS(1402), - [aux_sym_readonly_modifier_token1] = ACTIONS(1402), - [aux_sym_visibility_modifier_token1] = ACTIONS(1402), - [aux_sym_visibility_modifier_token2] = ACTIONS(1402), - [aux_sym_visibility_modifier_token3] = ACTIONS(1402), - [aux_sym__arrow_function_header_token1] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [aux_sym_cast_type_token1] = ACTIONS(1402), - [aux_sym_echo_statement_token1] = ACTIONS(1402), - [anon_sym_unset] = ACTIONS(1402), - [aux_sym_declare_statement_token1] = ACTIONS(1402), - [aux_sym_declare_statement_token2] = ACTIONS(1402), - [sym_float] = ACTIONS(1402), - [aux_sym_try_statement_token1] = ACTIONS(1402), - [aux_sym_goto_statement_token1] = ACTIONS(1402), - [aux_sym_continue_statement_token1] = ACTIONS(1402), - [aux_sym_break_statement_token1] = ACTIONS(1402), - [sym_integer] = ACTIONS(1402), - [aux_sym_return_statement_token1] = ACTIONS(1402), - [aux_sym_throw_expression_token1] = ACTIONS(1402), - [aux_sym_while_statement_token1] = ACTIONS(1402), - [aux_sym_while_statement_token2] = ACTIONS(1402), - [aux_sym_do_statement_token1] = ACTIONS(1402), - [aux_sym_for_statement_token1] = ACTIONS(1402), - [aux_sym_for_statement_token2] = ACTIONS(1402), - [aux_sym_foreach_statement_token1] = ACTIONS(1402), - [aux_sym_foreach_statement_token2] = ACTIONS(1402), - [aux_sym_if_statement_token1] = ACTIONS(1402), - [aux_sym_if_statement_token2] = ACTIONS(1402), - [aux_sym_else_if_clause_token1] = ACTIONS(1402), - [aux_sym_else_clause_token1] = ACTIONS(1402), - [aux_sym_match_expression_token1] = ACTIONS(1402), - [aux_sym_match_default_expression_token1] = ACTIONS(1402), - [aux_sym_switch_statement_token1] = ACTIONS(1402), - [aux_sym_switch_block_token1] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_clone_expression_token1] = ACTIONS(1402), - [aux_sym_print_intrinsic_token1] = ACTIONS(1402), - [aux_sym_object_creation_expression_token1] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [aux_sym__list_destructing_token1] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_self] = ACTIONS(1402), - [anon_sym_parent] = ACTIONS(1402), - [anon_sym_POUND_LBRACK] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [aux_sym_encapsed_string_token1] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [aux_sym_string_token1] = ACTIONS(1400), - [anon_sym_LT_LT_LT] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_boolean] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [aux_sym_yield_expression_token1] = ACTIONS(1402), - [aux_sym_include_expression_token1] = ACTIONS(1402), - [aux_sym_include_once_expression_token1] = ACTIONS(1402), - [aux_sym_require_expression_token1] = ACTIONS(1402), - [aux_sym_require_once_expression_token1] = ACTIONS(1402), - [sym_comment] = ACTIONS(5), - }, - [540] = { - [sym_text_interpolation] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_name] = ACTIONS(1406), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1404), - [aux_sym_function_static_declaration_token1] = ACTIONS(1406), - [aux_sym_global_declaration_token1] = ACTIONS(1406), - [aux_sym_namespace_definition_token1] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1406), - [anon_sym_BSLASH] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [aux_sym_trait_declaration_token1] = ACTIONS(1406), - [aux_sym_interface_declaration_token1] = ACTIONS(1406), - [aux_sym_enum_declaration_token1] = ACTIONS(1406), - [aux_sym_enum_case_token1] = ACTIONS(1406), - [aux_sym_class_declaration_token1] = ACTIONS(1406), - [aux_sym_final_modifier_token1] = ACTIONS(1406), - [aux_sym_abstract_modifier_token1] = ACTIONS(1406), - [aux_sym_readonly_modifier_token1] = ACTIONS(1406), - [aux_sym_visibility_modifier_token1] = ACTIONS(1406), - [aux_sym_visibility_modifier_token2] = ACTIONS(1406), - [aux_sym_visibility_modifier_token3] = ACTIONS(1406), - [aux_sym__arrow_function_header_token1] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [aux_sym_cast_type_token1] = ACTIONS(1406), - [aux_sym_echo_statement_token1] = ACTIONS(1406), - [anon_sym_unset] = ACTIONS(1406), - [aux_sym_declare_statement_token1] = ACTIONS(1406), - [aux_sym_declare_statement_token2] = ACTIONS(1406), - [sym_float] = ACTIONS(1406), - [aux_sym_try_statement_token1] = ACTIONS(1406), - [aux_sym_goto_statement_token1] = ACTIONS(1406), - [aux_sym_continue_statement_token1] = ACTIONS(1406), - [aux_sym_break_statement_token1] = ACTIONS(1406), - [sym_integer] = ACTIONS(1406), - [aux_sym_return_statement_token1] = ACTIONS(1406), - [aux_sym_throw_expression_token1] = ACTIONS(1406), - [aux_sym_while_statement_token1] = ACTIONS(1406), - [aux_sym_while_statement_token2] = ACTIONS(1406), - [aux_sym_do_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token2] = ACTIONS(1406), - [aux_sym_foreach_statement_token1] = ACTIONS(1406), - [aux_sym_foreach_statement_token2] = ACTIONS(1406), - [aux_sym_if_statement_token1] = ACTIONS(1406), - [aux_sym_if_statement_token2] = ACTIONS(1406), - [aux_sym_else_if_clause_token1] = ACTIONS(1406), - [aux_sym_else_clause_token1] = ACTIONS(1406), - [aux_sym_match_expression_token1] = ACTIONS(1406), - [aux_sym_match_default_expression_token1] = ACTIONS(1406), - [aux_sym_switch_statement_token1] = ACTIONS(1406), - [aux_sym_switch_block_token1] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [aux_sym_clone_expression_token1] = ACTIONS(1406), - [aux_sym_print_intrinsic_token1] = ACTIONS(1406), - [aux_sym_object_creation_expression_token1] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [aux_sym__list_destructing_token1] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_self] = ACTIONS(1406), - [anon_sym_parent] = ACTIONS(1406), - [anon_sym_POUND_LBRACK] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [aux_sym_encapsed_string_token1] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [aux_sym_string_token1] = ACTIONS(1404), - [anon_sym_LT_LT_LT] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_boolean] = ACTIONS(1406), - [sym_null] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1404), - [aux_sym_yield_expression_token1] = ACTIONS(1406), - [aux_sym_include_expression_token1] = ACTIONS(1406), - [aux_sym_include_once_expression_token1] = ACTIONS(1406), - [aux_sym_require_expression_token1] = ACTIONS(1406), - [aux_sym_require_once_expression_token1] = ACTIONS(1406), - [sym_comment] = ACTIONS(5), - }, - [541] = { - [sym_text_interpolation] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_name] = ACTIONS(1406), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1404), - [aux_sym_function_static_declaration_token1] = ACTIONS(1406), - [aux_sym_global_declaration_token1] = ACTIONS(1406), - [aux_sym_namespace_definition_token1] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1406), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1406), - [anon_sym_BSLASH] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [aux_sym_trait_declaration_token1] = ACTIONS(1406), - [aux_sym_interface_declaration_token1] = ACTIONS(1406), - [aux_sym_enum_declaration_token1] = ACTIONS(1406), - [aux_sym_enum_case_token1] = ACTIONS(1406), - [aux_sym_class_declaration_token1] = ACTIONS(1406), - [aux_sym_final_modifier_token1] = ACTIONS(1406), - [aux_sym_abstract_modifier_token1] = ACTIONS(1406), - [aux_sym_readonly_modifier_token1] = ACTIONS(1406), - [aux_sym_visibility_modifier_token1] = ACTIONS(1406), - [aux_sym_visibility_modifier_token2] = ACTIONS(1406), - [aux_sym_visibility_modifier_token3] = ACTIONS(1406), - [aux_sym__arrow_function_header_token1] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [aux_sym_cast_type_token1] = ACTIONS(1406), - [aux_sym_echo_statement_token1] = ACTIONS(1406), - [anon_sym_unset] = ACTIONS(1406), - [aux_sym_declare_statement_token1] = ACTIONS(1406), - [aux_sym_declare_statement_token2] = ACTIONS(1406), - [sym_float] = ACTIONS(1406), - [aux_sym_try_statement_token1] = ACTIONS(1406), - [aux_sym_goto_statement_token1] = ACTIONS(1406), - [aux_sym_continue_statement_token1] = ACTIONS(1406), - [aux_sym_break_statement_token1] = ACTIONS(1406), - [sym_integer] = ACTIONS(1406), - [aux_sym_return_statement_token1] = ACTIONS(1406), - [aux_sym_throw_expression_token1] = ACTIONS(1406), - [aux_sym_while_statement_token1] = ACTIONS(1406), - [aux_sym_while_statement_token2] = ACTIONS(1406), - [aux_sym_do_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token2] = ACTIONS(1406), - [aux_sym_foreach_statement_token1] = ACTIONS(1406), - [aux_sym_foreach_statement_token2] = ACTIONS(1406), - [aux_sym_if_statement_token1] = ACTIONS(1406), - [aux_sym_if_statement_token2] = ACTIONS(1406), - [aux_sym_else_if_clause_token1] = ACTIONS(1406), - [aux_sym_else_clause_token1] = ACTIONS(1406), - [aux_sym_match_expression_token1] = ACTIONS(1406), - [aux_sym_match_default_expression_token1] = ACTIONS(1406), - [aux_sym_switch_statement_token1] = ACTIONS(1406), - [aux_sym_switch_block_token1] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [aux_sym_clone_expression_token1] = ACTIONS(1406), - [aux_sym_print_intrinsic_token1] = ACTIONS(1406), - [aux_sym_object_creation_expression_token1] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [aux_sym__list_destructing_token1] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_self] = ACTIONS(1406), - [anon_sym_parent] = ACTIONS(1406), - [anon_sym_POUND_LBRACK] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [aux_sym_encapsed_string_token1] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [aux_sym_string_token1] = ACTIONS(1404), - [anon_sym_LT_LT_LT] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_boolean] = ACTIONS(1406), - [sym_null] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1404), - [aux_sym_yield_expression_token1] = ACTIONS(1406), - [aux_sym_include_expression_token1] = ACTIONS(1406), - [aux_sym_include_once_expression_token1] = ACTIONS(1406), - [aux_sym_require_expression_token1] = ACTIONS(1406), - [aux_sym_require_once_expression_token1] = ACTIONS(1406), - [sym_comment] = ACTIONS(5), - }, - [542] = { - [sym_text_interpolation] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_name] = ACTIONS(1410), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1408), - [aux_sym_function_static_declaration_token1] = ACTIONS(1410), - [aux_sym_global_declaration_token1] = ACTIONS(1410), - [aux_sym_namespace_definition_token1] = ACTIONS(1410), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1410), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1410), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1410), - [anon_sym_BSLASH] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [aux_sym_trait_declaration_token1] = ACTIONS(1410), - [aux_sym_interface_declaration_token1] = ACTIONS(1410), - [aux_sym_enum_declaration_token1] = ACTIONS(1410), - [aux_sym_enum_case_token1] = ACTIONS(1410), - [aux_sym_class_declaration_token1] = ACTIONS(1410), - [aux_sym_final_modifier_token1] = ACTIONS(1410), - [aux_sym_abstract_modifier_token1] = ACTIONS(1410), - [aux_sym_readonly_modifier_token1] = ACTIONS(1410), - [aux_sym_visibility_modifier_token1] = ACTIONS(1410), - [aux_sym_visibility_modifier_token2] = ACTIONS(1410), - [aux_sym_visibility_modifier_token3] = ACTIONS(1410), - [aux_sym__arrow_function_header_token1] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [aux_sym_cast_type_token1] = ACTIONS(1410), - [aux_sym_echo_statement_token1] = ACTIONS(1410), - [anon_sym_unset] = ACTIONS(1410), - [aux_sym_declare_statement_token1] = ACTIONS(1410), - [aux_sym_declare_statement_token2] = ACTIONS(1410), - [sym_float] = ACTIONS(1410), - [aux_sym_try_statement_token1] = ACTIONS(1410), - [aux_sym_goto_statement_token1] = ACTIONS(1410), - [aux_sym_continue_statement_token1] = ACTIONS(1410), - [aux_sym_break_statement_token1] = ACTIONS(1410), - [sym_integer] = ACTIONS(1410), - [aux_sym_return_statement_token1] = ACTIONS(1410), - [aux_sym_throw_expression_token1] = ACTIONS(1410), - [aux_sym_while_statement_token1] = ACTIONS(1410), - [aux_sym_while_statement_token2] = ACTIONS(1410), - [aux_sym_do_statement_token1] = ACTIONS(1410), - [aux_sym_for_statement_token1] = ACTIONS(1410), - [aux_sym_for_statement_token2] = ACTIONS(1410), - [aux_sym_foreach_statement_token1] = ACTIONS(1410), - [aux_sym_foreach_statement_token2] = ACTIONS(1410), - [aux_sym_if_statement_token1] = ACTIONS(1410), - [aux_sym_if_statement_token2] = ACTIONS(1410), - [aux_sym_else_if_clause_token1] = ACTIONS(1410), - [aux_sym_else_clause_token1] = ACTIONS(1410), - [aux_sym_match_expression_token1] = ACTIONS(1410), - [aux_sym_match_default_expression_token1] = ACTIONS(1410), - [aux_sym_switch_statement_token1] = ACTIONS(1410), - [aux_sym_switch_block_token1] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [aux_sym_clone_expression_token1] = ACTIONS(1410), - [aux_sym_print_intrinsic_token1] = ACTIONS(1410), - [aux_sym_object_creation_expression_token1] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [aux_sym__list_destructing_token1] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_self] = ACTIONS(1410), - [anon_sym_parent] = ACTIONS(1410), - [anon_sym_POUND_LBRACK] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [aux_sym_encapsed_string_token1] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [aux_sym_string_token1] = ACTIONS(1408), - [anon_sym_LT_LT_LT] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_boolean] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1408), - [aux_sym_yield_expression_token1] = ACTIONS(1410), - [aux_sym_include_expression_token1] = ACTIONS(1410), - [aux_sym_include_once_expression_token1] = ACTIONS(1410), - [aux_sym_require_expression_token1] = ACTIONS(1410), - [aux_sym_require_once_expression_token1] = ACTIONS(1410), - [sym_comment] = ACTIONS(5), - }, - [543] = { - [sym_text_interpolation] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_name] = ACTIONS(1414), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1412), - [aux_sym_function_static_declaration_token1] = ACTIONS(1414), - [aux_sym_global_declaration_token1] = ACTIONS(1414), - [aux_sym_namespace_definition_token1] = ACTIONS(1414), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1414), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1414), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1414), - [anon_sym_BSLASH] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [aux_sym_trait_declaration_token1] = ACTIONS(1414), - [aux_sym_interface_declaration_token1] = ACTIONS(1414), - [aux_sym_enum_declaration_token1] = ACTIONS(1414), - [aux_sym_enum_case_token1] = ACTIONS(1414), - [aux_sym_class_declaration_token1] = ACTIONS(1414), - [aux_sym_final_modifier_token1] = ACTIONS(1414), - [aux_sym_abstract_modifier_token1] = ACTIONS(1414), - [aux_sym_readonly_modifier_token1] = ACTIONS(1414), - [aux_sym_visibility_modifier_token1] = ACTIONS(1414), - [aux_sym_visibility_modifier_token2] = ACTIONS(1414), - [aux_sym_visibility_modifier_token3] = ACTIONS(1414), - [aux_sym__arrow_function_header_token1] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [aux_sym_cast_type_token1] = ACTIONS(1414), - [aux_sym_echo_statement_token1] = ACTIONS(1414), - [anon_sym_unset] = ACTIONS(1414), - [aux_sym_declare_statement_token1] = ACTIONS(1414), - [aux_sym_declare_statement_token2] = ACTIONS(1414), - [sym_float] = ACTIONS(1414), - [aux_sym_try_statement_token1] = ACTIONS(1414), - [aux_sym_goto_statement_token1] = ACTIONS(1414), - [aux_sym_continue_statement_token1] = ACTIONS(1414), - [aux_sym_break_statement_token1] = ACTIONS(1414), - [sym_integer] = ACTIONS(1414), - [aux_sym_return_statement_token1] = ACTIONS(1414), - [aux_sym_throw_expression_token1] = ACTIONS(1414), - [aux_sym_while_statement_token1] = ACTIONS(1414), - [aux_sym_while_statement_token2] = ACTIONS(1414), - [aux_sym_do_statement_token1] = ACTIONS(1414), - [aux_sym_for_statement_token1] = ACTIONS(1414), - [aux_sym_for_statement_token2] = ACTIONS(1414), - [aux_sym_foreach_statement_token1] = ACTIONS(1414), - [aux_sym_foreach_statement_token2] = ACTIONS(1414), - [aux_sym_if_statement_token1] = ACTIONS(1414), - [aux_sym_if_statement_token2] = ACTIONS(1414), - [aux_sym_else_if_clause_token1] = ACTIONS(1414), - [aux_sym_else_clause_token1] = ACTIONS(1414), - [aux_sym_match_expression_token1] = ACTIONS(1414), - [aux_sym_match_default_expression_token1] = ACTIONS(1414), - [aux_sym_switch_statement_token1] = ACTIONS(1414), - [aux_sym_switch_block_token1] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_clone_expression_token1] = ACTIONS(1414), - [aux_sym_print_intrinsic_token1] = ACTIONS(1414), - [aux_sym_object_creation_expression_token1] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [aux_sym__list_destructing_token1] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_self] = ACTIONS(1414), - [anon_sym_parent] = ACTIONS(1414), - [anon_sym_POUND_LBRACK] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [aux_sym_encapsed_string_token1] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [aux_sym_string_token1] = ACTIONS(1412), - [anon_sym_LT_LT_LT] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_boolean] = ACTIONS(1414), - [sym_null] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1412), - [aux_sym_yield_expression_token1] = ACTIONS(1414), - [aux_sym_include_expression_token1] = ACTIONS(1414), - [aux_sym_include_once_expression_token1] = ACTIONS(1414), - [aux_sym_require_expression_token1] = ACTIONS(1414), - [aux_sym_require_once_expression_token1] = ACTIONS(1414), - [sym_comment] = ACTIONS(5), - }, - [544] = { - [sym_text_interpolation] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_name] = ACTIONS(1418), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1416), - [aux_sym_function_static_declaration_token1] = ACTIONS(1418), - [aux_sym_global_declaration_token1] = ACTIONS(1418), - [aux_sym_namespace_definition_token1] = ACTIONS(1418), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1418), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1418), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1418), - [anon_sym_BSLASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [aux_sym_trait_declaration_token1] = ACTIONS(1418), - [aux_sym_interface_declaration_token1] = ACTIONS(1418), - [aux_sym_enum_declaration_token1] = ACTIONS(1418), - [aux_sym_enum_case_token1] = ACTIONS(1418), - [aux_sym_class_declaration_token1] = ACTIONS(1418), - [aux_sym_final_modifier_token1] = ACTIONS(1418), - [aux_sym_abstract_modifier_token1] = ACTIONS(1418), - [aux_sym_readonly_modifier_token1] = ACTIONS(1418), - [aux_sym_visibility_modifier_token1] = ACTIONS(1418), - [aux_sym_visibility_modifier_token2] = ACTIONS(1418), - [aux_sym_visibility_modifier_token3] = ACTIONS(1418), - [aux_sym__arrow_function_header_token1] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [aux_sym_cast_type_token1] = ACTIONS(1418), - [aux_sym_echo_statement_token1] = ACTIONS(1418), - [anon_sym_unset] = ACTIONS(1418), - [aux_sym_declare_statement_token1] = ACTIONS(1418), - [aux_sym_declare_statement_token2] = ACTIONS(1418), - [sym_float] = ACTIONS(1418), - [aux_sym_try_statement_token1] = ACTIONS(1418), - [aux_sym_goto_statement_token1] = ACTIONS(1418), - [aux_sym_continue_statement_token1] = ACTIONS(1418), - [aux_sym_break_statement_token1] = ACTIONS(1418), - [sym_integer] = ACTIONS(1418), - [aux_sym_return_statement_token1] = ACTIONS(1418), - [aux_sym_throw_expression_token1] = ACTIONS(1418), - [aux_sym_while_statement_token1] = ACTIONS(1418), - [aux_sym_while_statement_token2] = ACTIONS(1418), - [aux_sym_do_statement_token1] = ACTIONS(1418), - [aux_sym_for_statement_token1] = ACTIONS(1418), - [aux_sym_for_statement_token2] = ACTIONS(1418), - [aux_sym_foreach_statement_token1] = ACTIONS(1418), - [aux_sym_foreach_statement_token2] = ACTIONS(1418), - [aux_sym_if_statement_token1] = ACTIONS(1418), - [aux_sym_if_statement_token2] = ACTIONS(1418), - [aux_sym_else_if_clause_token1] = ACTIONS(1418), - [aux_sym_else_clause_token1] = ACTIONS(1418), - [aux_sym_match_expression_token1] = ACTIONS(1418), - [aux_sym_match_default_expression_token1] = ACTIONS(1418), - [aux_sym_switch_statement_token1] = ACTIONS(1418), - [aux_sym_switch_block_token1] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [aux_sym_clone_expression_token1] = ACTIONS(1418), - [aux_sym_print_intrinsic_token1] = ACTIONS(1418), - [aux_sym_object_creation_expression_token1] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [aux_sym__list_destructing_token1] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_self] = ACTIONS(1418), - [anon_sym_parent] = ACTIONS(1418), - [anon_sym_POUND_LBRACK] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [aux_sym_encapsed_string_token1] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [aux_sym_string_token1] = ACTIONS(1416), - [anon_sym_LT_LT_LT] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_boolean] = ACTIONS(1418), - [sym_null] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1416), - [aux_sym_yield_expression_token1] = ACTIONS(1418), - [aux_sym_include_expression_token1] = ACTIONS(1418), - [aux_sym_include_once_expression_token1] = ACTIONS(1418), - [aux_sym_require_expression_token1] = ACTIONS(1418), - [aux_sym_require_once_expression_token1] = ACTIONS(1418), - [sym_comment] = ACTIONS(5), - }, - [545] = { - [sym_text_interpolation] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_name] = ACTIONS(1422), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1420), - [aux_sym_function_static_declaration_token1] = ACTIONS(1422), - [aux_sym_global_declaration_token1] = ACTIONS(1422), - [aux_sym_namespace_definition_token1] = ACTIONS(1422), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1422), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1422), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1422), - [anon_sym_BSLASH] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [aux_sym_trait_declaration_token1] = ACTIONS(1422), - [aux_sym_interface_declaration_token1] = ACTIONS(1422), - [aux_sym_enum_declaration_token1] = ACTIONS(1422), - [aux_sym_enum_case_token1] = ACTIONS(1422), - [aux_sym_class_declaration_token1] = ACTIONS(1422), - [aux_sym_final_modifier_token1] = ACTIONS(1422), - [aux_sym_abstract_modifier_token1] = ACTIONS(1422), - [aux_sym_readonly_modifier_token1] = ACTIONS(1422), - [aux_sym_visibility_modifier_token1] = ACTIONS(1422), - [aux_sym_visibility_modifier_token2] = ACTIONS(1422), - [aux_sym_visibility_modifier_token3] = ACTIONS(1422), - [aux_sym__arrow_function_header_token1] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [aux_sym_cast_type_token1] = ACTIONS(1422), - [aux_sym_echo_statement_token1] = ACTIONS(1422), - [anon_sym_unset] = ACTIONS(1422), - [aux_sym_declare_statement_token1] = ACTIONS(1422), - [aux_sym_declare_statement_token2] = ACTIONS(1422), - [sym_float] = ACTIONS(1422), - [aux_sym_try_statement_token1] = ACTIONS(1422), - [aux_sym_goto_statement_token1] = ACTIONS(1422), - [aux_sym_continue_statement_token1] = ACTIONS(1422), - [aux_sym_break_statement_token1] = ACTIONS(1422), - [sym_integer] = ACTIONS(1422), - [aux_sym_return_statement_token1] = ACTIONS(1422), - [aux_sym_throw_expression_token1] = ACTIONS(1422), - [aux_sym_while_statement_token1] = ACTIONS(1422), - [aux_sym_while_statement_token2] = ACTIONS(1422), - [aux_sym_do_statement_token1] = ACTIONS(1422), - [aux_sym_for_statement_token1] = ACTIONS(1422), - [aux_sym_for_statement_token2] = ACTIONS(1422), - [aux_sym_foreach_statement_token1] = ACTIONS(1422), - [aux_sym_foreach_statement_token2] = ACTIONS(1422), - [aux_sym_if_statement_token1] = ACTIONS(1422), - [aux_sym_if_statement_token2] = ACTIONS(1422), - [aux_sym_else_if_clause_token1] = ACTIONS(1422), - [aux_sym_else_clause_token1] = ACTIONS(1422), - [aux_sym_match_expression_token1] = ACTIONS(1422), - [aux_sym_match_default_expression_token1] = ACTIONS(1422), - [aux_sym_switch_statement_token1] = ACTIONS(1422), - [aux_sym_switch_block_token1] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [aux_sym_clone_expression_token1] = ACTIONS(1422), - [aux_sym_print_intrinsic_token1] = ACTIONS(1422), - [aux_sym_object_creation_expression_token1] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [aux_sym__list_destructing_token1] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_self] = ACTIONS(1422), - [anon_sym_parent] = ACTIONS(1422), - [anon_sym_POUND_LBRACK] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [aux_sym_encapsed_string_token1] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [aux_sym_string_token1] = ACTIONS(1420), - [anon_sym_LT_LT_LT] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_boolean] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [aux_sym_yield_expression_token1] = ACTIONS(1422), - [aux_sym_include_expression_token1] = ACTIONS(1422), - [aux_sym_include_once_expression_token1] = ACTIONS(1422), - [aux_sym_require_expression_token1] = ACTIONS(1422), - [aux_sym_require_once_expression_token1] = ACTIONS(1422), - [sym_comment] = ACTIONS(5), - }, - [546] = { - [sym_text_interpolation] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_name] = ACTIONS(1426), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1424), - [aux_sym_function_static_declaration_token1] = ACTIONS(1426), - [aux_sym_global_declaration_token1] = ACTIONS(1426), - [aux_sym_namespace_definition_token1] = ACTIONS(1426), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1426), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1426), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1426), - [anon_sym_BSLASH] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [aux_sym_trait_declaration_token1] = ACTIONS(1426), - [aux_sym_interface_declaration_token1] = ACTIONS(1426), - [aux_sym_enum_declaration_token1] = ACTIONS(1426), - [aux_sym_enum_case_token1] = ACTIONS(1426), - [aux_sym_class_declaration_token1] = ACTIONS(1426), - [aux_sym_final_modifier_token1] = ACTIONS(1426), - [aux_sym_abstract_modifier_token1] = ACTIONS(1426), - [aux_sym_readonly_modifier_token1] = ACTIONS(1426), - [aux_sym_visibility_modifier_token1] = ACTIONS(1426), - [aux_sym_visibility_modifier_token2] = ACTIONS(1426), - [aux_sym_visibility_modifier_token3] = ACTIONS(1426), - [aux_sym__arrow_function_header_token1] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [aux_sym_cast_type_token1] = ACTIONS(1426), - [aux_sym_echo_statement_token1] = ACTIONS(1426), - [anon_sym_unset] = ACTIONS(1426), - [aux_sym_declare_statement_token1] = ACTIONS(1426), - [aux_sym_declare_statement_token2] = ACTIONS(1426), - [sym_float] = ACTIONS(1426), - [aux_sym_try_statement_token1] = ACTIONS(1426), - [aux_sym_goto_statement_token1] = ACTIONS(1426), - [aux_sym_continue_statement_token1] = ACTIONS(1426), - [aux_sym_break_statement_token1] = ACTIONS(1426), - [sym_integer] = ACTIONS(1426), - [aux_sym_return_statement_token1] = ACTIONS(1426), - [aux_sym_throw_expression_token1] = ACTIONS(1426), - [aux_sym_while_statement_token1] = ACTIONS(1426), - [aux_sym_while_statement_token2] = ACTIONS(1426), - [aux_sym_do_statement_token1] = ACTIONS(1426), - [aux_sym_for_statement_token1] = ACTIONS(1426), - [aux_sym_for_statement_token2] = ACTIONS(1426), - [aux_sym_foreach_statement_token1] = ACTIONS(1426), - [aux_sym_foreach_statement_token2] = ACTIONS(1426), - [aux_sym_if_statement_token1] = ACTIONS(1426), - [aux_sym_if_statement_token2] = ACTIONS(1426), - [aux_sym_else_if_clause_token1] = ACTIONS(1426), - [aux_sym_else_clause_token1] = ACTIONS(1426), - [aux_sym_match_expression_token1] = ACTIONS(1426), - [aux_sym_match_default_expression_token1] = ACTIONS(1426), - [aux_sym_switch_statement_token1] = ACTIONS(1426), - [aux_sym_switch_block_token1] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [aux_sym_clone_expression_token1] = ACTIONS(1426), - [aux_sym_print_intrinsic_token1] = ACTIONS(1426), - [aux_sym_object_creation_expression_token1] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [aux_sym__list_destructing_token1] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_self] = ACTIONS(1426), - [anon_sym_parent] = ACTIONS(1426), - [anon_sym_POUND_LBRACK] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [aux_sym_encapsed_string_token1] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [aux_sym_string_token1] = ACTIONS(1424), - [anon_sym_LT_LT_LT] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_boolean] = ACTIONS(1426), - [sym_null] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1424), - [aux_sym_yield_expression_token1] = ACTIONS(1426), - [aux_sym_include_expression_token1] = ACTIONS(1426), - [aux_sym_include_once_expression_token1] = ACTIONS(1426), - [aux_sym_require_expression_token1] = ACTIONS(1426), - [aux_sym_require_once_expression_token1] = ACTIONS(1426), - [sym_comment] = ACTIONS(5), - }, - [547] = { - [sym_text_interpolation] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_name] = ACTIONS(1430), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1428), - [aux_sym_function_static_declaration_token1] = ACTIONS(1430), - [aux_sym_global_declaration_token1] = ACTIONS(1430), - [aux_sym_namespace_definition_token1] = ACTIONS(1430), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1430), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1430), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1430), - [anon_sym_BSLASH] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [aux_sym_trait_declaration_token1] = ACTIONS(1430), - [aux_sym_interface_declaration_token1] = ACTIONS(1430), - [aux_sym_enum_declaration_token1] = ACTIONS(1430), - [aux_sym_enum_case_token1] = ACTIONS(1430), - [aux_sym_class_declaration_token1] = ACTIONS(1430), - [aux_sym_final_modifier_token1] = ACTIONS(1430), - [aux_sym_abstract_modifier_token1] = ACTIONS(1430), - [aux_sym_readonly_modifier_token1] = ACTIONS(1430), - [aux_sym_visibility_modifier_token1] = ACTIONS(1430), - [aux_sym_visibility_modifier_token2] = ACTIONS(1430), - [aux_sym_visibility_modifier_token3] = ACTIONS(1430), - [aux_sym__arrow_function_header_token1] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [aux_sym_cast_type_token1] = ACTIONS(1430), - [aux_sym_echo_statement_token1] = ACTIONS(1430), - [anon_sym_unset] = ACTIONS(1430), - [aux_sym_declare_statement_token1] = ACTIONS(1430), - [aux_sym_declare_statement_token2] = ACTIONS(1430), - [sym_float] = ACTIONS(1430), - [aux_sym_try_statement_token1] = ACTIONS(1430), - [aux_sym_goto_statement_token1] = ACTIONS(1430), - [aux_sym_continue_statement_token1] = ACTIONS(1430), - [aux_sym_break_statement_token1] = ACTIONS(1430), - [sym_integer] = ACTIONS(1430), - [aux_sym_return_statement_token1] = ACTIONS(1430), - [aux_sym_throw_expression_token1] = ACTIONS(1430), - [aux_sym_while_statement_token1] = ACTIONS(1430), - [aux_sym_while_statement_token2] = ACTIONS(1430), - [aux_sym_do_statement_token1] = ACTIONS(1430), - [aux_sym_for_statement_token1] = ACTIONS(1430), - [aux_sym_for_statement_token2] = ACTIONS(1430), - [aux_sym_foreach_statement_token1] = ACTIONS(1430), - [aux_sym_foreach_statement_token2] = ACTIONS(1430), - [aux_sym_if_statement_token1] = ACTIONS(1430), - [aux_sym_if_statement_token2] = ACTIONS(1430), - [aux_sym_else_if_clause_token1] = ACTIONS(1430), - [aux_sym_else_clause_token1] = ACTIONS(1430), - [aux_sym_match_expression_token1] = ACTIONS(1430), - [aux_sym_match_default_expression_token1] = ACTIONS(1430), - [aux_sym_switch_statement_token1] = ACTIONS(1430), - [aux_sym_switch_block_token1] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [aux_sym_clone_expression_token1] = ACTIONS(1430), - [aux_sym_print_intrinsic_token1] = ACTIONS(1430), - [aux_sym_object_creation_expression_token1] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [aux_sym__list_destructing_token1] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_self] = ACTIONS(1430), - [anon_sym_parent] = ACTIONS(1430), - [anon_sym_POUND_LBRACK] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [aux_sym_encapsed_string_token1] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [aux_sym_string_token1] = ACTIONS(1428), - [anon_sym_LT_LT_LT] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [sym_boolean] = ACTIONS(1430), - [sym_null] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), - [aux_sym_yield_expression_token1] = ACTIONS(1430), - [aux_sym_include_expression_token1] = ACTIONS(1430), - [aux_sym_include_once_expression_token1] = ACTIONS(1430), - [aux_sym_require_expression_token1] = ACTIONS(1430), - [aux_sym_require_once_expression_token1] = ACTIONS(1430), - [sym_comment] = ACTIONS(5), - }, - [548] = { - [sym_text_interpolation] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_name] = ACTIONS(1434), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1432), - [aux_sym_function_static_declaration_token1] = ACTIONS(1434), - [aux_sym_global_declaration_token1] = ACTIONS(1434), - [aux_sym_namespace_definition_token1] = ACTIONS(1434), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1434), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1434), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1434), - [anon_sym_BSLASH] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [aux_sym_trait_declaration_token1] = ACTIONS(1434), - [aux_sym_interface_declaration_token1] = ACTIONS(1434), - [aux_sym_enum_declaration_token1] = ACTIONS(1434), - [aux_sym_enum_case_token1] = ACTIONS(1434), - [aux_sym_class_declaration_token1] = ACTIONS(1434), - [aux_sym_final_modifier_token1] = ACTIONS(1434), - [aux_sym_abstract_modifier_token1] = ACTIONS(1434), - [aux_sym_readonly_modifier_token1] = ACTIONS(1434), - [aux_sym_visibility_modifier_token1] = ACTIONS(1434), - [aux_sym_visibility_modifier_token2] = ACTIONS(1434), - [aux_sym_visibility_modifier_token3] = ACTIONS(1434), - [aux_sym__arrow_function_header_token1] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1432), - [aux_sym_cast_type_token1] = ACTIONS(1434), - [aux_sym_echo_statement_token1] = ACTIONS(1434), - [anon_sym_unset] = ACTIONS(1434), - [aux_sym_declare_statement_token1] = ACTIONS(1434), - [aux_sym_declare_statement_token2] = ACTIONS(1434), - [sym_float] = ACTIONS(1434), - [aux_sym_try_statement_token1] = ACTIONS(1434), - [aux_sym_goto_statement_token1] = ACTIONS(1434), - [aux_sym_continue_statement_token1] = ACTIONS(1434), - [aux_sym_break_statement_token1] = ACTIONS(1434), - [sym_integer] = ACTIONS(1434), - [aux_sym_return_statement_token1] = ACTIONS(1434), - [aux_sym_throw_expression_token1] = ACTIONS(1434), - [aux_sym_while_statement_token1] = ACTIONS(1434), - [aux_sym_while_statement_token2] = ACTIONS(1434), - [aux_sym_do_statement_token1] = ACTIONS(1434), - [aux_sym_for_statement_token1] = ACTIONS(1434), - [aux_sym_for_statement_token2] = ACTIONS(1434), - [aux_sym_foreach_statement_token1] = ACTIONS(1434), - [aux_sym_foreach_statement_token2] = ACTIONS(1434), - [aux_sym_if_statement_token1] = ACTIONS(1434), - [aux_sym_if_statement_token2] = ACTIONS(1434), - [aux_sym_else_if_clause_token1] = ACTIONS(1434), - [aux_sym_else_clause_token1] = ACTIONS(1434), - [aux_sym_match_expression_token1] = ACTIONS(1434), - [aux_sym_match_default_expression_token1] = ACTIONS(1434), - [aux_sym_switch_statement_token1] = ACTIONS(1434), - [aux_sym_switch_block_token1] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [aux_sym_clone_expression_token1] = ACTIONS(1434), - [aux_sym_print_intrinsic_token1] = ACTIONS(1434), - [aux_sym_object_creation_expression_token1] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [aux_sym__list_destructing_token1] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_self] = ACTIONS(1434), - [anon_sym_parent] = ACTIONS(1434), - [anon_sym_POUND_LBRACK] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [aux_sym_encapsed_string_token1] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1432), - [anon_sym_LT_LT_LT] = ACTIONS(1432), - [anon_sym_BQUOTE] = ACTIONS(1432), - [sym_boolean] = ACTIONS(1434), - [sym_null] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(1432), - [aux_sym_yield_expression_token1] = ACTIONS(1434), - [aux_sym_include_expression_token1] = ACTIONS(1434), - [aux_sym_include_once_expression_token1] = ACTIONS(1434), - [aux_sym_require_expression_token1] = ACTIONS(1434), - [aux_sym_require_once_expression_token1] = ACTIONS(1434), - [sym_comment] = ACTIONS(5), - }, - [549] = { - [sym_text_interpolation] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_name] = ACTIONS(1438), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1436), - [aux_sym_function_static_declaration_token1] = ACTIONS(1438), - [aux_sym_global_declaration_token1] = ACTIONS(1438), - [aux_sym_namespace_definition_token1] = ACTIONS(1438), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1438), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1438), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1438), - [anon_sym_BSLASH] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [aux_sym_trait_declaration_token1] = ACTIONS(1438), - [aux_sym_interface_declaration_token1] = ACTIONS(1438), - [aux_sym_enum_declaration_token1] = ACTIONS(1438), - [aux_sym_enum_case_token1] = ACTIONS(1438), - [aux_sym_class_declaration_token1] = ACTIONS(1438), - [aux_sym_final_modifier_token1] = ACTIONS(1438), - [aux_sym_abstract_modifier_token1] = ACTIONS(1438), - [aux_sym_readonly_modifier_token1] = ACTIONS(1438), - [aux_sym_visibility_modifier_token1] = ACTIONS(1438), - [aux_sym_visibility_modifier_token2] = ACTIONS(1438), - [aux_sym_visibility_modifier_token3] = ACTIONS(1438), - [aux_sym__arrow_function_header_token1] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [aux_sym_cast_type_token1] = ACTIONS(1438), - [aux_sym_echo_statement_token1] = ACTIONS(1438), - [anon_sym_unset] = ACTIONS(1438), - [aux_sym_declare_statement_token1] = ACTIONS(1438), - [aux_sym_declare_statement_token2] = ACTIONS(1438), - [sym_float] = ACTIONS(1438), - [aux_sym_try_statement_token1] = ACTIONS(1438), - [aux_sym_goto_statement_token1] = ACTIONS(1438), - [aux_sym_continue_statement_token1] = ACTIONS(1438), - [aux_sym_break_statement_token1] = ACTIONS(1438), - [sym_integer] = ACTIONS(1438), - [aux_sym_return_statement_token1] = ACTIONS(1438), - [aux_sym_throw_expression_token1] = ACTIONS(1438), - [aux_sym_while_statement_token1] = ACTIONS(1438), - [aux_sym_while_statement_token2] = ACTIONS(1438), - [aux_sym_do_statement_token1] = ACTIONS(1438), - [aux_sym_for_statement_token1] = ACTIONS(1438), - [aux_sym_for_statement_token2] = ACTIONS(1438), - [aux_sym_foreach_statement_token1] = ACTIONS(1438), - [aux_sym_foreach_statement_token2] = ACTIONS(1438), - [aux_sym_if_statement_token1] = ACTIONS(1438), - [aux_sym_if_statement_token2] = ACTIONS(1438), - [aux_sym_else_if_clause_token1] = ACTIONS(1438), - [aux_sym_else_clause_token1] = ACTIONS(1438), - [aux_sym_match_expression_token1] = ACTIONS(1438), - [aux_sym_match_default_expression_token1] = ACTIONS(1438), - [aux_sym_switch_statement_token1] = ACTIONS(1438), - [aux_sym_switch_block_token1] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [aux_sym_clone_expression_token1] = ACTIONS(1438), - [aux_sym_print_intrinsic_token1] = ACTIONS(1438), - [aux_sym_object_creation_expression_token1] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [aux_sym__list_destructing_token1] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_self] = ACTIONS(1438), - [anon_sym_parent] = ACTIONS(1438), - [anon_sym_POUND_LBRACK] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [aux_sym_encapsed_string_token1] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [aux_sym_string_token1] = ACTIONS(1436), - [anon_sym_LT_LT_LT] = ACTIONS(1436), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_boolean] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1436), - [aux_sym_yield_expression_token1] = ACTIONS(1438), - [aux_sym_include_expression_token1] = ACTIONS(1438), - [aux_sym_include_once_expression_token1] = ACTIONS(1438), - [aux_sym_require_expression_token1] = ACTIONS(1438), - [aux_sym_require_once_expression_token1] = ACTIONS(1438), - [sym_comment] = ACTIONS(5), - }, - [550] = { - [sym_text_interpolation] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_name] = ACTIONS(1002), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1000), - [aux_sym_function_static_declaration_token1] = ACTIONS(1002), - [aux_sym_global_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_definition_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1002), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [aux_sym_trait_declaration_token1] = ACTIONS(1002), - [aux_sym_interface_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_declaration_token1] = ACTIONS(1002), - [aux_sym_enum_case_token1] = ACTIONS(1002), - [aux_sym_class_declaration_token1] = ACTIONS(1002), - [aux_sym_final_modifier_token1] = ACTIONS(1002), - [aux_sym_abstract_modifier_token1] = ACTIONS(1002), - [aux_sym_readonly_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token1] = ACTIONS(1002), - [aux_sym_visibility_modifier_token2] = ACTIONS(1002), - [aux_sym_visibility_modifier_token3] = ACTIONS(1002), - [aux_sym__arrow_function_header_token1] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1000), - [aux_sym_cast_type_token1] = ACTIONS(1002), - [aux_sym_echo_statement_token1] = ACTIONS(1002), - [anon_sym_unset] = ACTIONS(1002), - [aux_sym_declare_statement_token1] = ACTIONS(1002), - [aux_sym_declare_statement_token2] = ACTIONS(1002), - [sym_float] = ACTIONS(1002), - [aux_sym_try_statement_token1] = ACTIONS(1002), - [aux_sym_goto_statement_token1] = ACTIONS(1002), - [aux_sym_continue_statement_token1] = ACTIONS(1002), - [aux_sym_break_statement_token1] = ACTIONS(1002), - [sym_integer] = ACTIONS(1002), - [aux_sym_return_statement_token1] = ACTIONS(1002), - [aux_sym_throw_expression_token1] = ACTIONS(1002), - [aux_sym_while_statement_token1] = ACTIONS(1002), - [aux_sym_while_statement_token2] = ACTIONS(1002), - [aux_sym_do_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token1] = ACTIONS(1002), - [aux_sym_for_statement_token2] = ACTIONS(1002), - [aux_sym_foreach_statement_token1] = ACTIONS(1002), - [aux_sym_foreach_statement_token2] = ACTIONS(1002), - [aux_sym_if_statement_token1] = ACTIONS(1002), - [aux_sym_if_statement_token2] = ACTIONS(1002), - [aux_sym_else_if_clause_token1] = ACTIONS(1002), - [aux_sym_else_clause_token1] = ACTIONS(1002), - [aux_sym_match_expression_token1] = ACTIONS(1002), - [aux_sym_match_default_expression_token1] = ACTIONS(1002), - [aux_sym_switch_statement_token1] = ACTIONS(1002), - [aux_sym_switch_block_token1] = ACTIONS(1002), - [anon_sym_AT] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [aux_sym_clone_expression_token1] = ACTIONS(1002), - [aux_sym_print_intrinsic_token1] = ACTIONS(1002), - [aux_sym_object_creation_expression_token1] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [aux_sym__list_destructing_token1] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_self] = ACTIONS(1002), - [anon_sym_parent] = ACTIONS(1002), - [anon_sym_POUND_LBRACK] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [aux_sym_encapsed_string_token1] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [aux_sym_string_token1] = ACTIONS(1000), - [anon_sym_LT_LT_LT] = ACTIONS(1000), - [anon_sym_BQUOTE] = ACTIONS(1000), - [sym_boolean] = ACTIONS(1002), - [sym_null] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [aux_sym_yield_expression_token1] = ACTIONS(1002), - [aux_sym_include_expression_token1] = ACTIONS(1002), - [aux_sym_include_once_expression_token1] = ACTIONS(1002), - [aux_sym_require_expression_token1] = ACTIONS(1002), - [aux_sym_require_once_expression_token1] = ACTIONS(1002), - [sym_comment] = ACTIONS(5), - }, - [551] = { - [sym_text_interpolation] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_name] = ACTIONS(1442), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1440), - [aux_sym_function_static_declaration_token1] = ACTIONS(1442), - [aux_sym_global_declaration_token1] = ACTIONS(1442), - [aux_sym_namespace_definition_token1] = ACTIONS(1442), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1442), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1442), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1442), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [aux_sym_trait_declaration_token1] = ACTIONS(1442), - [aux_sym_interface_declaration_token1] = ACTIONS(1442), - [aux_sym_enum_declaration_token1] = ACTIONS(1442), - [aux_sym_enum_case_token1] = ACTIONS(1442), - [aux_sym_class_declaration_token1] = ACTIONS(1442), - [aux_sym_final_modifier_token1] = ACTIONS(1442), - [aux_sym_abstract_modifier_token1] = ACTIONS(1442), - [aux_sym_readonly_modifier_token1] = ACTIONS(1442), - [aux_sym_visibility_modifier_token1] = ACTIONS(1442), - [aux_sym_visibility_modifier_token2] = ACTIONS(1442), - [aux_sym_visibility_modifier_token3] = ACTIONS(1442), - [aux_sym__arrow_function_header_token1] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [aux_sym_cast_type_token1] = ACTIONS(1442), - [aux_sym_echo_statement_token1] = ACTIONS(1442), - [anon_sym_unset] = ACTIONS(1442), - [aux_sym_declare_statement_token1] = ACTIONS(1442), - [aux_sym_declare_statement_token2] = ACTIONS(1442), - [sym_float] = ACTIONS(1442), - [aux_sym_try_statement_token1] = ACTIONS(1442), - [aux_sym_goto_statement_token1] = ACTIONS(1442), - [aux_sym_continue_statement_token1] = ACTIONS(1442), - [aux_sym_break_statement_token1] = ACTIONS(1442), - [sym_integer] = ACTIONS(1442), - [aux_sym_return_statement_token1] = ACTIONS(1442), - [aux_sym_throw_expression_token1] = ACTIONS(1442), - [aux_sym_while_statement_token1] = ACTIONS(1442), - [aux_sym_while_statement_token2] = ACTIONS(1442), - [aux_sym_do_statement_token1] = ACTIONS(1442), - [aux_sym_for_statement_token1] = ACTIONS(1442), - [aux_sym_for_statement_token2] = ACTIONS(1442), - [aux_sym_foreach_statement_token1] = ACTIONS(1442), - [aux_sym_foreach_statement_token2] = ACTIONS(1442), - [aux_sym_if_statement_token1] = ACTIONS(1442), - [aux_sym_if_statement_token2] = ACTIONS(1442), - [aux_sym_else_if_clause_token1] = ACTIONS(1442), - [aux_sym_else_clause_token1] = ACTIONS(1442), - [aux_sym_match_expression_token1] = ACTIONS(1442), - [aux_sym_match_default_expression_token1] = ACTIONS(1442), - [aux_sym_switch_statement_token1] = ACTIONS(1442), - [aux_sym_switch_block_token1] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [aux_sym_clone_expression_token1] = ACTIONS(1442), - [aux_sym_print_intrinsic_token1] = ACTIONS(1442), - [aux_sym_object_creation_expression_token1] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [aux_sym__list_destructing_token1] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_self] = ACTIONS(1442), - [anon_sym_parent] = ACTIONS(1442), - [anon_sym_POUND_LBRACK] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [aux_sym_encapsed_string_token1] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [aux_sym_string_token1] = ACTIONS(1440), - [anon_sym_LT_LT_LT] = ACTIONS(1440), - [anon_sym_BQUOTE] = ACTIONS(1440), - [sym_boolean] = ACTIONS(1442), - [sym_null] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1440), - [aux_sym_yield_expression_token1] = ACTIONS(1442), - [aux_sym_include_expression_token1] = ACTIONS(1442), - [aux_sym_include_once_expression_token1] = ACTIONS(1442), - [aux_sym_require_expression_token1] = ACTIONS(1442), - [aux_sym_require_once_expression_token1] = ACTIONS(1442), - [sym_comment] = ACTIONS(5), - }, - [552] = { - [sym_text_interpolation] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_name] = ACTIONS(1446), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1444), - [aux_sym_function_static_declaration_token1] = ACTIONS(1446), - [aux_sym_global_declaration_token1] = ACTIONS(1446), - [aux_sym_namespace_definition_token1] = ACTIONS(1446), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1446), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1446), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1446), - [anon_sym_BSLASH] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [aux_sym_trait_declaration_token1] = ACTIONS(1446), - [aux_sym_interface_declaration_token1] = ACTIONS(1446), - [aux_sym_enum_declaration_token1] = ACTIONS(1446), - [aux_sym_enum_case_token1] = ACTIONS(1446), - [aux_sym_class_declaration_token1] = ACTIONS(1446), - [aux_sym_final_modifier_token1] = ACTIONS(1446), - [aux_sym_abstract_modifier_token1] = ACTIONS(1446), - [aux_sym_readonly_modifier_token1] = ACTIONS(1446), - [aux_sym_visibility_modifier_token1] = ACTIONS(1446), - [aux_sym_visibility_modifier_token2] = ACTIONS(1446), - [aux_sym_visibility_modifier_token3] = ACTIONS(1446), - [aux_sym__arrow_function_header_token1] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1444), - [aux_sym_cast_type_token1] = ACTIONS(1446), - [aux_sym_echo_statement_token1] = ACTIONS(1446), - [anon_sym_unset] = ACTIONS(1446), - [aux_sym_declare_statement_token1] = ACTIONS(1446), - [aux_sym_declare_statement_token2] = ACTIONS(1446), - [sym_float] = ACTIONS(1446), - [aux_sym_try_statement_token1] = ACTIONS(1446), - [aux_sym_goto_statement_token1] = ACTIONS(1446), - [aux_sym_continue_statement_token1] = ACTIONS(1446), - [aux_sym_break_statement_token1] = ACTIONS(1446), - [sym_integer] = ACTIONS(1446), - [aux_sym_return_statement_token1] = ACTIONS(1446), - [aux_sym_throw_expression_token1] = ACTIONS(1446), - [aux_sym_while_statement_token1] = ACTIONS(1446), - [aux_sym_while_statement_token2] = ACTIONS(1446), - [aux_sym_do_statement_token1] = ACTIONS(1446), - [aux_sym_for_statement_token1] = ACTIONS(1446), - [aux_sym_for_statement_token2] = ACTIONS(1446), - [aux_sym_foreach_statement_token1] = ACTIONS(1446), - [aux_sym_foreach_statement_token2] = ACTIONS(1446), - [aux_sym_if_statement_token1] = ACTIONS(1446), - [aux_sym_if_statement_token2] = ACTIONS(1446), - [aux_sym_else_if_clause_token1] = ACTIONS(1446), - [aux_sym_else_clause_token1] = ACTIONS(1446), - [aux_sym_match_expression_token1] = ACTIONS(1446), - [aux_sym_match_default_expression_token1] = ACTIONS(1446), - [aux_sym_switch_statement_token1] = ACTIONS(1446), - [aux_sym_switch_block_token1] = ACTIONS(1446), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [aux_sym_clone_expression_token1] = ACTIONS(1446), - [aux_sym_print_intrinsic_token1] = ACTIONS(1446), - [aux_sym_object_creation_expression_token1] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [aux_sym__list_destructing_token1] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_self] = ACTIONS(1446), - [anon_sym_parent] = ACTIONS(1446), - [anon_sym_POUND_LBRACK] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [aux_sym_encapsed_string_token1] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1444), - [anon_sym_LT_LT_LT] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1444), - [sym_boolean] = ACTIONS(1446), - [sym_null] = ACTIONS(1446), - [anon_sym_DOLLAR] = ACTIONS(1444), - [aux_sym_yield_expression_token1] = ACTIONS(1446), - [aux_sym_include_expression_token1] = ACTIONS(1446), - [aux_sym_include_once_expression_token1] = ACTIONS(1446), - [aux_sym_require_expression_token1] = ACTIONS(1446), - [aux_sym_require_once_expression_token1] = ACTIONS(1446), - [sym_comment] = ACTIONS(5), - }, - [553] = { - [sym_text_interpolation] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_name] = ACTIONS(1450), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1448), - [aux_sym_function_static_declaration_token1] = ACTIONS(1450), - [aux_sym_global_declaration_token1] = ACTIONS(1450), - [aux_sym_namespace_definition_token1] = ACTIONS(1450), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1450), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1450), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1450), - [anon_sym_BSLASH] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [aux_sym_trait_declaration_token1] = ACTIONS(1450), - [aux_sym_interface_declaration_token1] = ACTIONS(1450), - [aux_sym_enum_declaration_token1] = ACTIONS(1450), - [aux_sym_enum_case_token1] = ACTIONS(1450), - [aux_sym_class_declaration_token1] = ACTIONS(1450), - [aux_sym_final_modifier_token1] = ACTIONS(1450), - [aux_sym_abstract_modifier_token1] = ACTIONS(1450), - [aux_sym_readonly_modifier_token1] = ACTIONS(1450), - [aux_sym_visibility_modifier_token1] = ACTIONS(1450), - [aux_sym_visibility_modifier_token2] = ACTIONS(1450), - [aux_sym_visibility_modifier_token3] = ACTIONS(1450), - [aux_sym__arrow_function_header_token1] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1448), - [aux_sym_cast_type_token1] = ACTIONS(1450), - [aux_sym_echo_statement_token1] = ACTIONS(1450), - [anon_sym_unset] = ACTIONS(1450), - [aux_sym_declare_statement_token1] = ACTIONS(1450), - [aux_sym_declare_statement_token2] = ACTIONS(1450), - [sym_float] = ACTIONS(1450), - [aux_sym_try_statement_token1] = ACTIONS(1450), - [aux_sym_goto_statement_token1] = ACTIONS(1450), - [aux_sym_continue_statement_token1] = ACTIONS(1450), - [aux_sym_break_statement_token1] = ACTIONS(1450), - [sym_integer] = ACTIONS(1450), - [aux_sym_return_statement_token1] = ACTIONS(1450), - [aux_sym_throw_expression_token1] = ACTIONS(1450), - [aux_sym_while_statement_token1] = ACTIONS(1450), - [aux_sym_while_statement_token2] = ACTIONS(1450), - [aux_sym_do_statement_token1] = ACTIONS(1450), - [aux_sym_for_statement_token1] = ACTIONS(1450), - [aux_sym_for_statement_token2] = ACTIONS(1450), - [aux_sym_foreach_statement_token1] = ACTIONS(1450), - [aux_sym_foreach_statement_token2] = ACTIONS(1450), - [aux_sym_if_statement_token1] = ACTIONS(1450), - [aux_sym_if_statement_token2] = ACTIONS(1450), - [aux_sym_else_if_clause_token1] = ACTIONS(1450), - [aux_sym_else_clause_token1] = ACTIONS(1450), - [aux_sym_match_expression_token1] = ACTIONS(1450), - [aux_sym_match_default_expression_token1] = ACTIONS(1450), - [aux_sym_switch_statement_token1] = ACTIONS(1450), - [aux_sym_switch_block_token1] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [aux_sym_clone_expression_token1] = ACTIONS(1450), - [aux_sym_print_intrinsic_token1] = ACTIONS(1450), - [aux_sym_object_creation_expression_token1] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [aux_sym__list_destructing_token1] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_self] = ACTIONS(1450), - [anon_sym_parent] = ACTIONS(1450), - [anon_sym_POUND_LBRACK] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [aux_sym_encapsed_string_token1] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [aux_sym_string_token1] = ACTIONS(1448), - [anon_sym_LT_LT_LT] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1448), - [sym_boolean] = ACTIONS(1450), - [sym_null] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1448), - [aux_sym_yield_expression_token1] = ACTIONS(1450), - [aux_sym_include_expression_token1] = ACTIONS(1450), - [aux_sym_include_once_expression_token1] = ACTIONS(1450), - [aux_sym_require_expression_token1] = ACTIONS(1450), - [aux_sym_require_once_expression_token1] = ACTIONS(1450), - [sym_comment] = ACTIONS(5), - }, - [554] = { - [sym_text_interpolation] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_name] = ACTIONS(1454), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1452), - [aux_sym_function_static_declaration_token1] = ACTIONS(1454), - [aux_sym_global_declaration_token1] = ACTIONS(1454), - [aux_sym_namespace_definition_token1] = ACTIONS(1454), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1454), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1454), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1454), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [aux_sym_trait_declaration_token1] = ACTIONS(1454), - [aux_sym_interface_declaration_token1] = ACTIONS(1454), - [aux_sym_enum_declaration_token1] = ACTIONS(1454), - [aux_sym_enum_case_token1] = ACTIONS(1454), - [aux_sym_class_declaration_token1] = ACTIONS(1454), - [aux_sym_final_modifier_token1] = ACTIONS(1454), - [aux_sym_abstract_modifier_token1] = ACTIONS(1454), - [aux_sym_readonly_modifier_token1] = ACTIONS(1454), - [aux_sym_visibility_modifier_token1] = ACTIONS(1454), - [aux_sym_visibility_modifier_token2] = ACTIONS(1454), - [aux_sym_visibility_modifier_token3] = ACTIONS(1454), - [aux_sym__arrow_function_header_token1] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1452), - [aux_sym_cast_type_token1] = ACTIONS(1454), - [aux_sym_echo_statement_token1] = ACTIONS(1454), - [anon_sym_unset] = ACTIONS(1454), - [aux_sym_declare_statement_token1] = ACTIONS(1454), - [aux_sym_declare_statement_token2] = ACTIONS(1454), - [sym_float] = ACTIONS(1454), - [aux_sym_try_statement_token1] = ACTIONS(1454), - [aux_sym_goto_statement_token1] = ACTIONS(1454), - [aux_sym_continue_statement_token1] = ACTIONS(1454), - [aux_sym_break_statement_token1] = ACTIONS(1454), - [sym_integer] = ACTIONS(1454), - [aux_sym_return_statement_token1] = ACTIONS(1454), - [aux_sym_throw_expression_token1] = ACTIONS(1454), - [aux_sym_while_statement_token1] = ACTIONS(1454), - [aux_sym_while_statement_token2] = ACTIONS(1454), - [aux_sym_do_statement_token1] = ACTIONS(1454), - [aux_sym_for_statement_token1] = ACTIONS(1454), - [aux_sym_for_statement_token2] = ACTIONS(1454), - [aux_sym_foreach_statement_token1] = ACTIONS(1454), - [aux_sym_foreach_statement_token2] = ACTIONS(1454), - [aux_sym_if_statement_token1] = ACTIONS(1454), - [aux_sym_if_statement_token2] = ACTIONS(1454), - [aux_sym_else_if_clause_token1] = ACTIONS(1454), - [aux_sym_else_clause_token1] = ACTIONS(1454), - [aux_sym_match_expression_token1] = ACTIONS(1454), - [aux_sym_match_default_expression_token1] = ACTIONS(1454), - [aux_sym_switch_statement_token1] = ACTIONS(1454), - [aux_sym_switch_block_token1] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [aux_sym_clone_expression_token1] = ACTIONS(1454), - [aux_sym_print_intrinsic_token1] = ACTIONS(1454), - [aux_sym_object_creation_expression_token1] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [aux_sym__list_destructing_token1] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_self] = ACTIONS(1454), - [anon_sym_parent] = ACTIONS(1454), - [anon_sym_POUND_LBRACK] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [aux_sym_encapsed_string_token1] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1452), - [anon_sym_LT_LT_LT] = ACTIONS(1452), - [anon_sym_BQUOTE] = ACTIONS(1452), - [sym_boolean] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1452), - [aux_sym_yield_expression_token1] = ACTIONS(1454), - [aux_sym_include_expression_token1] = ACTIONS(1454), - [aux_sym_include_once_expression_token1] = ACTIONS(1454), - [aux_sym_require_expression_token1] = ACTIONS(1454), - [aux_sym_require_once_expression_token1] = ACTIONS(1454), - [sym_comment] = ACTIONS(5), - }, - [555] = { - [sym_text_interpolation] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_name] = ACTIONS(1458), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1456), - [aux_sym_function_static_declaration_token1] = ACTIONS(1458), - [aux_sym_global_declaration_token1] = ACTIONS(1458), - [aux_sym_namespace_definition_token1] = ACTIONS(1458), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1458), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1458), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [aux_sym_trait_declaration_token1] = ACTIONS(1458), - [aux_sym_interface_declaration_token1] = ACTIONS(1458), - [aux_sym_enum_declaration_token1] = ACTIONS(1458), - [aux_sym_enum_case_token1] = ACTIONS(1458), - [aux_sym_class_declaration_token1] = ACTIONS(1458), - [aux_sym_final_modifier_token1] = ACTIONS(1458), - [aux_sym_abstract_modifier_token1] = ACTIONS(1458), - [aux_sym_readonly_modifier_token1] = ACTIONS(1458), - [aux_sym_visibility_modifier_token1] = ACTIONS(1458), - [aux_sym_visibility_modifier_token2] = ACTIONS(1458), - [aux_sym_visibility_modifier_token3] = ACTIONS(1458), - [aux_sym__arrow_function_header_token1] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [aux_sym_cast_type_token1] = ACTIONS(1458), - [aux_sym_echo_statement_token1] = ACTIONS(1458), - [anon_sym_unset] = ACTIONS(1458), - [aux_sym_declare_statement_token1] = ACTIONS(1458), - [aux_sym_declare_statement_token2] = ACTIONS(1458), - [sym_float] = ACTIONS(1458), - [aux_sym_try_statement_token1] = ACTIONS(1458), - [aux_sym_goto_statement_token1] = ACTIONS(1458), - [aux_sym_continue_statement_token1] = ACTIONS(1458), - [aux_sym_break_statement_token1] = ACTIONS(1458), - [sym_integer] = ACTIONS(1458), - [aux_sym_return_statement_token1] = ACTIONS(1458), - [aux_sym_throw_expression_token1] = ACTIONS(1458), - [aux_sym_while_statement_token1] = ACTIONS(1458), - [aux_sym_while_statement_token2] = ACTIONS(1458), - [aux_sym_do_statement_token1] = ACTIONS(1458), - [aux_sym_for_statement_token1] = ACTIONS(1458), - [aux_sym_for_statement_token2] = ACTIONS(1458), - [aux_sym_foreach_statement_token1] = ACTIONS(1458), - [aux_sym_foreach_statement_token2] = ACTIONS(1458), - [aux_sym_if_statement_token1] = ACTIONS(1458), - [aux_sym_if_statement_token2] = ACTIONS(1458), - [aux_sym_else_if_clause_token1] = ACTIONS(1458), - [aux_sym_else_clause_token1] = ACTIONS(1458), - [aux_sym_match_expression_token1] = ACTIONS(1458), - [aux_sym_match_default_expression_token1] = ACTIONS(1458), - [aux_sym_switch_statement_token1] = ACTIONS(1458), - [aux_sym_switch_block_token1] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [aux_sym_clone_expression_token1] = ACTIONS(1458), - [aux_sym_print_intrinsic_token1] = ACTIONS(1458), - [aux_sym_object_creation_expression_token1] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [aux_sym__list_destructing_token1] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_self] = ACTIONS(1458), - [anon_sym_parent] = ACTIONS(1458), - [anon_sym_POUND_LBRACK] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [aux_sym_encapsed_string_token1] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [aux_sym_string_token1] = ACTIONS(1456), - [anon_sym_LT_LT_LT] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym_boolean] = ACTIONS(1458), - [sym_null] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1456), - [aux_sym_yield_expression_token1] = ACTIONS(1458), - [aux_sym_include_expression_token1] = ACTIONS(1458), - [aux_sym_include_once_expression_token1] = ACTIONS(1458), - [aux_sym_require_expression_token1] = ACTIONS(1458), - [aux_sym_require_once_expression_token1] = ACTIONS(1458), - [sym_comment] = ACTIONS(5), - }, - [556] = { - [sym_text_interpolation] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_name] = ACTIONS(1462), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1460), - [aux_sym_function_static_declaration_token1] = ACTIONS(1462), - [aux_sym_global_declaration_token1] = ACTIONS(1462), - [aux_sym_namespace_definition_token1] = ACTIONS(1462), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1462), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1462), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1462), - [anon_sym_BSLASH] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [aux_sym_trait_declaration_token1] = ACTIONS(1462), - [aux_sym_interface_declaration_token1] = ACTIONS(1462), - [aux_sym_enum_declaration_token1] = ACTIONS(1462), - [aux_sym_enum_case_token1] = ACTIONS(1462), - [aux_sym_class_declaration_token1] = ACTIONS(1462), - [aux_sym_final_modifier_token1] = ACTIONS(1462), - [aux_sym_abstract_modifier_token1] = ACTIONS(1462), - [aux_sym_readonly_modifier_token1] = ACTIONS(1462), - [aux_sym_visibility_modifier_token1] = ACTIONS(1462), - [aux_sym_visibility_modifier_token2] = ACTIONS(1462), - [aux_sym_visibility_modifier_token3] = ACTIONS(1462), - [aux_sym__arrow_function_header_token1] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [aux_sym_cast_type_token1] = ACTIONS(1462), - [aux_sym_echo_statement_token1] = ACTIONS(1462), - [anon_sym_unset] = ACTIONS(1462), - [aux_sym_declare_statement_token1] = ACTIONS(1462), - [aux_sym_declare_statement_token2] = ACTIONS(1462), - [sym_float] = ACTIONS(1462), - [aux_sym_try_statement_token1] = ACTIONS(1462), - [aux_sym_goto_statement_token1] = ACTIONS(1462), - [aux_sym_continue_statement_token1] = ACTIONS(1462), - [aux_sym_break_statement_token1] = ACTIONS(1462), - [sym_integer] = ACTIONS(1462), - [aux_sym_return_statement_token1] = ACTIONS(1462), - [aux_sym_throw_expression_token1] = ACTIONS(1462), - [aux_sym_while_statement_token1] = ACTIONS(1462), - [aux_sym_while_statement_token2] = ACTIONS(1462), - [aux_sym_do_statement_token1] = ACTIONS(1462), - [aux_sym_for_statement_token1] = ACTIONS(1462), - [aux_sym_for_statement_token2] = ACTIONS(1462), - [aux_sym_foreach_statement_token1] = ACTIONS(1462), - [aux_sym_foreach_statement_token2] = ACTIONS(1462), - [aux_sym_if_statement_token1] = ACTIONS(1462), - [aux_sym_if_statement_token2] = ACTIONS(1462), - [aux_sym_else_if_clause_token1] = ACTIONS(1462), - [aux_sym_else_clause_token1] = ACTIONS(1462), - [aux_sym_match_expression_token1] = ACTIONS(1462), - [aux_sym_match_default_expression_token1] = ACTIONS(1462), - [aux_sym_switch_statement_token1] = ACTIONS(1462), - [aux_sym_switch_block_token1] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [aux_sym_clone_expression_token1] = ACTIONS(1462), - [aux_sym_print_intrinsic_token1] = ACTIONS(1462), - [aux_sym_object_creation_expression_token1] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [aux_sym__list_destructing_token1] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_self] = ACTIONS(1462), - [anon_sym_parent] = ACTIONS(1462), - [anon_sym_POUND_LBRACK] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [aux_sym_encapsed_string_token1] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [aux_sym_string_token1] = ACTIONS(1460), - [anon_sym_LT_LT_LT] = ACTIONS(1460), - [anon_sym_BQUOTE] = ACTIONS(1460), - [sym_boolean] = ACTIONS(1462), - [sym_null] = ACTIONS(1462), - [anon_sym_DOLLAR] = ACTIONS(1460), - [aux_sym_yield_expression_token1] = ACTIONS(1462), - [aux_sym_include_expression_token1] = ACTIONS(1462), - [aux_sym_include_once_expression_token1] = ACTIONS(1462), - [aux_sym_require_expression_token1] = ACTIONS(1462), - [aux_sym_require_once_expression_token1] = ACTIONS(1462), - [sym_comment] = ACTIONS(5), - }, - [557] = { - [sym_text_interpolation] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_name] = ACTIONS(1466), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1464), - [aux_sym_function_static_declaration_token1] = ACTIONS(1466), - [aux_sym_global_declaration_token1] = ACTIONS(1466), - [aux_sym_namespace_definition_token1] = ACTIONS(1466), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1466), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1466), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1466), - [anon_sym_BSLASH] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [aux_sym_trait_declaration_token1] = ACTIONS(1466), - [aux_sym_interface_declaration_token1] = ACTIONS(1466), - [aux_sym_enum_declaration_token1] = ACTIONS(1466), - [aux_sym_enum_case_token1] = ACTIONS(1466), - [aux_sym_class_declaration_token1] = ACTIONS(1466), - [aux_sym_final_modifier_token1] = ACTIONS(1466), - [aux_sym_abstract_modifier_token1] = ACTIONS(1466), - [aux_sym_readonly_modifier_token1] = ACTIONS(1466), - [aux_sym_visibility_modifier_token1] = ACTIONS(1466), - [aux_sym_visibility_modifier_token2] = ACTIONS(1466), - [aux_sym_visibility_modifier_token3] = ACTIONS(1466), - [aux_sym__arrow_function_header_token1] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [aux_sym_cast_type_token1] = ACTIONS(1466), - [aux_sym_echo_statement_token1] = ACTIONS(1466), - [anon_sym_unset] = ACTIONS(1466), - [aux_sym_declare_statement_token1] = ACTIONS(1466), - [aux_sym_declare_statement_token2] = ACTIONS(1466), - [sym_float] = ACTIONS(1466), - [aux_sym_try_statement_token1] = ACTIONS(1466), - [aux_sym_goto_statement_token1] = ACTIONS(1466), - [aux_sym_continue_statement_token1] = ACTIONS(1466), - [aux_sym_break_statement_token1] = ACTIONS(1466), - [sym_integer] = ACTIONS(1466), - [aux_sym_return_statement_token1] = ACTIONS(1466), - [aux_sym_throw_expression_token1] = ACTIONS(1466), - [aux_sym_while_statement_token1] = ACTIONS(1466), - [aux_sym_while_statement_token2] = ACTIONS(1466), - [aux_sym_do_statement_token1] = ACTIONS(1466), - [aux_sym_for_statement_token1] = ACTIONS(1466), - [aux_sym_for_statement_token2] = ACTIONS(1466), - [aux_sym_foreach_statement_token1] = ACTIONS(1466), - [aux_sym_foreach_statement_token2] = ACTIONS(1466), - [aux_sym_if_statement_token1] = ACTIONS(1466), - [aux_sym_if_statement_token2] = ACTIONS(1466), - [aux_sym_else_if_clause_token1] = ACTIONS(1466), - [aux_sym_else_clause_token1] = ACTIONS(1466), - [aux_sym_match_expression_token1] = ACTIONS(1466), - [aux_sym_match_default_expression_token1] = ACTIONS(1466), - [aux_sym_switch_statement_token1] = ACTIONS(1466), - [aux_sym_switch_block_token1] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [aux_sym_clone_expression_token1] = ACTIONS(1466), - [aux_sym_print_intrinsic_token1] = ACTIONS(1466), - [aux_sym_object_creation_expression_token1] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [aux_sym__list_destructing_token1] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_self] = ACTIONS(1466), - [anon_sym_parent] = ACTIONS(1466), - [anon_sym_POUND_LBRACK] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [aux_sym_encapsed_string_token1] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [aux_sym_string_token1] = ACTIONS(1464), - [anon_sym_LT_LT_LT] = ACTIONS(1464), - [anon_sym_BQUOTE] = ACTIONS(1464), - [sym_boolean] = ACTIONS(1466), - [sym_null] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1464), - [aux_sym_yield_expression_token1] = ACTIONS(1466), - [aux_sym_include_expression_token1] = ACTIONS(1466), - [aux_sym_include_once_expression_token1] = ACTIONS(1466), - [aux_sym_require_expression_token1] = ACTIONS(1466), - [aux_sym_require_once_expression_token1] = ACTIONS(1466), - [sym_comment] = ACTIONS(5), - }, - [558] = { - [sym_text_interpolation] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_name] = ACTIONS(1470), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1468), - [aux_sym_function_static_declaration_token1] = ACTIONS(1470), - [aux_sym_global_declaration_token1] = ACTIONS(1470), - [aux_sym_namespace_definition_token1] = ACTIONS(1470), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1470), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1470), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1470), - [anon_sym_BSLASH] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [aux_sym_trait_declaration_token1] = ACTIONS(1470), - [aux_sym_interface_declaration_token1] = ACTIONS(1470), - [aux_sym_enum_declaration_token1] = ACTIONS(1470), - [aux_sym_enum_case_token1] = ACTIONS(1470), - [aux_sym_class_declaration_token1] = ACTIONS(1470), - [aux_sym_final_modifier_token1] = ACTIONS(1470), - [aux_sym_abstract_modifier_token1] = ACTIONS(1470), - [aux_sym_readonly_modifier_token1] = ACTIONS(1470), - [aux_sym_visibility_modifier_token1] = ACTIONS(1470), - [aux_sym_visibility_modifier_token2] = ACTIONS(1470), - [aux_sym_visibility_modifier_token3] = ACTIONS(1470), - [aux_sym__arrow_function_header_token1] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1468), - [aux_sym_cast_type_token1] = ACTIONS(1470), - [aux_sym_echo_statement_token1] = ACTIONS(1470), - [anon_sym_unset] = ACTIONS(1470), - [aux_sym_declare_statement_token1] = ACTIONS(1470), - [aux_sym_declare_statement_token2] = ACTIONS(1470), - [sym_float] = ACTIONS(1470), - [aux_sym_try_statement_token1] = ACTIONS(1470), - [aux_sym_goto_statement_token1] = ACTIONS(1470), - [aux_sym_continue_statement_token1] = ACTIONS(1470), - [aux_sym_break_statement_token1] = ACTIONS(1470), - [sym_integer] = ACTIONS(1470), - [aux_sym_return_statement_token1] = ACTIONS(1470), - [aux_sym_throw_expression_token1] = ACTIONS(1470), - [aux_sym_while_statement_token1] = ACTIONS(1470), - [aux_sym_while_statement_token2] = ACTIONS(1470), - [aux_sym_do_statement_token1] = ACTIONS(1470), - [aux_sym_for_statement_token1] = ACTIONS(1470), - [aux_sym_for_statement_token2] = ACTIONS(1470), - [aux_sym_foreach_statement_token1] = ACTIONS(1470), - [aux_sym_foreach_statement_token2] = ACTIONS(1470), - [aux_sym_if_statement_token1] = ACTIONS(1470), - [aux_sym_if_statement_token2] = ACTIONS(1470), - [aux_sym_else_if_clause_token1] = ACTIONS(1470), - [aux_sym_else_clause_token1] = ACTIONS(1470), - [aux_sym_match_expression_token1] = ACTIONS(1470), - [aux_sym_match_default_expression_token1] = ACTIONS(1470), - [aux_sym_switch_statement_token1] = ACTIONS(1470), - [aux_sym_switch_block_token1] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [aux_sym_clone_expression_token1] = ACTIONS(1470), - [aux_sym_print_intrinsic_token1] = ACTIONS(1470), - [aux_sym_object_creation_expression_token1] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [aux_sym__list_destructing_token1] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_self] = ACTIONS(1470), - [anon_sym_parent] = ACTIONS(1470), - [anon_sym_POUND_LBRACK] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [aux_sym_encapsed_string_token1] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [aux_sym_string_token1] = ACTIONS(1468), - [anon_sym_LT_LT_LT] = ACTIONS(1468), - [anon_sym_BQUOTE] = ACTIONS(1468), - [sym_boolean] = ACTIONS(1470), - [sym_null] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1468), - [aux_sym_yield_expression_token1] = ACTIONS(1470), - [aux_sym_include_expression_token1] = ACTIONS(1470), - [aux_sym_include_once_expression_token1] = ACTIONS(1470), - [aux_sym_require_expression_token1] = ACTIONS(1470), - [aux_sym_require_once_expression_token1] = ACTIONS(1470), - [sym_comment] = ACTIONS(5), - }, - [559] = { - [sym_text_interpolation] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_name] = ACTIONS(1474), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1472), - [aux_sym_function_static_declaration_token1] = ACTIONS(1474), - [aux_sym_global_declaration_token1] = ACTIONS(1474), - [aux_sym_namespace_definition_token1] = ACTIONS(1474), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1474), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1474), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1474), - [anon_sym_BSLASH] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [aux_sym_trait_declaration_token1] = ACTIONS(1474), - [aux_sym_interface_declaration_token1] = ACTIONS(1474), - [aux_sym_enum_declaration_token1] = ACTIONS(1474), - [aux_sym_enum_case_token1] = ACTIONS(1474), - [aux_sym_class_declaration_token1] = ACTIONS(1474), - [aux_sym_final_modifier_token1] = ACTIONS(1474), - [aux_sym_abstract_modifier_token1] = ACTIONS(1474), - [aux_sym_readonly_modifier_token1] = ACTIONS(1474), - [aux_sym_visibility_modifier_token1] = ACTIONS(1474), - [aux_sym_visibility_modifier_token2] = ACTIONS(1474), - [aux_sym_visibility_modifier_token3] = ACTIONS(1474), - [aux_sym__arrow_function_header_token1] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1472), - [aux_sym_cast_type_token1] = ACTIONS(1474), - [aux_sym_echo_statement_token1] = ACTIONS(1474), - [anon_sym_unset] = ACTIONS(1474), - [aux_sym_declare_statement_token1] = ACTIONS(1474), - [aux_sym_declare_statement_token2] = ACTIONS(1474), - [sym_float] = ACTIONS(1474), - [aux_sym_try_statement_token1] = ACTIONS(1474), - [aux_sym_goto_statement_token1] = ACTIONS(1474), - [aux_sym_continue_statement_token1] = ACTIONS(1474), - [aux_sym_break_statement_token1] = ACTIONS(1474), - [sym_integer] = ACTIONS(1474), - [aux_sym_return_statement_token1] = ACTIONS(1474), - [aux_sym_throw_expression_token1] = ACTIONS(1474), - [aux_sym_while_statement_token1] = ACTIONS(1474), - [aux_sym_while_statement_token2] = ACTIONS(1474), - [aux_sym_do_statement_token1] = ACTIONS(1474), - [aux_sym_for_statement_token1] = ACTIONS(1474), - [aux_sym_for_statement_token2] = ACTIONS(1474), - [aux_sym_foreach_statement_token1] = ACTIONS(1474), - [aux_sym_foreach_statement_token2] = ACTIONS(1474), - [aux_sym_if_statement_token1] = ACTIONS(1474), - [aux_sym_if_statement_token2] = ACTIONS(1474), - [aux_sym_else_if_clause_token1] = ACTIONS(1474), - [aux_sym_else_clause_token1] = ACTIONS(1474), - [aux_sym_match_expression_token1] = ACTIONS(1474), - [aux_sym_match_default_expression_token1] = ACTIONS(1474), - [aux_sym_switch_statement_token1] = ACTIONS(1474), - [aux_sym_switch_block_token1] = ACTIONS(1474), - [anon_sym_AT] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [aux_sym_clone_expression_token1] = ACTIONS(1474), - [aux_sym_print_intrinsic_token1] = ACTIONS(1474), - [aux_sym_object_creation_expression_token1] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [aux_sym__list_destructing_token1] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_self] = ACTIONS(1474), - [anon_sym_parent] = ACTIONS(1474), - [anon_sym_POUND_LBRACK] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [aux_sym_encapsed_string_token1] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [aux_sym_string_token1] = ACTIONS(1472), - [anon_sym_LT_LT_LT] = ACTIONS(1472), - [anon_sym_BQUOTE] = ACTIONS(1472), - [sym_boolean] = ACTIONS(1474), - [sym_null] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1472), - [aux_sym_yield_expression_token1] = ACTIONS(1474), - [aux_sym_include_expression_token1] = ACTIONS(1474), - [aux_sym_include_once_expression_token1] = ACTIONS(1474), - [aux_sym_require_expression_token1] = ACTIONS(1474), - [aux_sym_require_once_expression_token1] = ACTIONS(1474), - [sym_comment] = ACTIONS(5), - }, - [560] = { - [sym_text_interpolation] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_name] = ACTIONS(1478), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1476), - [aux_sym_function_static_declaration_token1] = ACTIONS(1478), - [aux_sym_global_declaration_token1] = ACTIONS(1478), - [aux_sym_namespace_definition_token1] = ACTIONS(1478), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1478), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1478), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1478), - [anon_sym_BSLASH] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [aux_sym_trait_declaration_token1] = ACTIONS(1478), - [aux_sym_interface_declaration_token1] = ACTIONS(1478), - [aux_sym_enum_declaration_token1] = ACTIONS(1478), - [aux_sym_enum_case_token1] = ACTIONS(1478), - [aux_sym_class_declaration_token1] = ACTIONS(1478), - [aux_sym_final_modifier_token1] = ACTIONS(1478), - [aux_sym_abstract_modifier_token1] = ACTIONS(1478), - [aux_sym_readonly_modifier_token1] = ACTIONS(1478), - [aux_sym_visibility_modifier_token1] = ACTIONS(1478), - [aux_sym_visibility_modifier_token2] = ACTIONS(1478), - [aux_sym_visibility_modifier_token3] = ACTIONS(1478), - [aux_sym__arrow_function_header_token1] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [aux_sym_cast_type_token1] = ACTIONS(1478), - [aux_sym_echo_statement_token1] = ACTIONS(1478), - [anon_sym_unset] = ACTIONS(1478), - [aux_sym_declare_statement_token1] = ACTIONS(1478), - [aux_sym_declare_statement_token2] = ACTIONS(1478), - [sym_float] = ACTIONS(1478), - [aux_sym_try_statement_token1] = ACTIONS(1478), - [aux_sym_goto_statement_token1] = ACTIONS(1478), - [aux_sym_continue_statement_token1] = ACTIONS(1478), - [aux_sym_break_statement_token1] = ACTIONS(1478), - [sym_integer] = ACTIONS(1478), - [aux_sym_return_statement_token1] = ACTIONS(1478), - [aux_sym_throw_expression_token1] = ACTIONS(1478), - [aux_sym_while_statement_token1] = ACTIONS(1478), - [aux_sym_while_statement_token2] = ACTIONS(1478), - [aux_sym_do_statement_token1] = ACTIONS(1478), - [aux_sym_for_statement_token1] = ACTIONS(1478), - [aux_sym_for_statement_token2] = ACTIONS(1478), - [aux_sym_foreach_statement_token1] = ACTIONS(1478), - [aux_sym_foreach_statement_token2] = ACTIONS(1478), - [aux_sym_if_statement_token1] = ACTIONS(1478), - [aux_sym_if_statement_token2] = ACTIONS(1478), - [aux_sym_else_if_clause_token1] = ACTIONS(1478), - [aux_sym_else_clause_token1] = ACTIONS(1478), - [aux_sym_match_expression_token1] = ACTIONS(1478), - [aux_sym_match_default_expression_token1] = ACTIONS(1478), - [aux_sym_switch_statement_token1] = ACTIONS(1478), - [aux_sym_switch_block_token1] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [aux_sym_clone_expression_token1] = ACTIONS(1478), - [aux_sym_print_intrinsic_token1] = ACTIONS(1478), - [aux_sym_object_creation_expression_token1] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [aux_sym__list_destructing_token1] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_self] = ACTIONS(1478), - [anon_sym_parent] = ACTIONS(1478), - [anon_sym_POUND_LBRACK] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [aux_sym_encapsed_string_token1] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1476), - [anon_sym_LT_LT_LT] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [sym_boolean] = ACTIONS(1478), - [sym_null] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1476), - [aux_sym_yield_expression_token1] = ACTIONS(1478), - [aux_sym_include_expression_token1] = ACTIONS(1478), - [aux_sym_include_once_expression_token1] = ACTIONS(1478), - [aux_sym_require_expression_token1] = ACTIONS(1478), - [aux_sym_require_once_expression_token1] = ACTIONS(1478), - [sym_comment] = ACTIONS(5), - }, - [561] = { - [sym_text_interpolation] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_name] = ACTIONS(1482), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1480), - [aux_sym_function_static_declaration_token1] = ACTIONS(1482), - [aux_sym_global_declaration_token1] = ACTIONS(1482), - [aux_sym_namespace_definition_token1] = ACTIONS(1482), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1482), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1482), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1482), - [anon_sym_BSLASH] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [aux_sym_trait_declaration_token1] = ACTIONS(1482), - [aux_sym_interface_declaration_token1] = ACTIONS(1482), - [aux_sym_enum_declaration_token1] = ACTIONS(1482), - [aux_sym_enum_case_token1] = ACTIONS(1482), - [aux_sym_class_declaration_token1] = ACTIONS(1482), - [aux_sym_final_modifier_token1] = ACTIONS(1482), - [aux_sym_abstract_modifier_token1] = ACTIONS(1482), - [aux_sym_readonly_modifier_token1] = ACTIONS(1482), - [aux_sym_visibility_modifier_token1] = ACTIONS(1482), - [aux_sym_visibility_modifier_token2] = ACTIONS(1482), - [aux_sym_visibility_modifier_token3] = ACTIONS(1482), - [aux_sym__arrow_function_header_token1] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [aux_sym_cast_type_token1] = ACTIONS(1482), - [aux_sym_echo_statement_token1] = ACTIONS(1482), - [anon_sym_unset] = ACTIONS(1482), - [aux_sym_declare_statement_token1] = ACTIONS(1482), - [aux_sym_declare_statement_token2] = ACTIONS(1482), - [sym_float] = ACTIONS(1482), - [aux_sym_try_statement_token1] = ACTIONS(1482), - [aux_sym_goto_statement_token1] = ACTIONS(1482), - [aux_sym_continue_statement_token1] = ACTIONS(1482), - [aux_sym_break_statement_token1] = ACTIONS(1482), - [sym_integer] = ACTIONS(1482), - [aux_sym_return_statement_token1] = ACTIONS(1482), - [aux_sym_throw_expression_token1] = ACTIONS(1482), - [aux_sym_while_statement_token1] = ACTIONS(1482), - [aux_sym_while_statement_token2] = ACTIONS(1482), - [aux_sym_do_statement_token1] = ACTIONS(1482), - [aux_sym_for_statement_token1] = ACTIONS(1482), - [aux_sym_for_statement_token2] = ACTIONS(1482), - [aux_sym_foreach_statement_token1] = ACTIONS(1482), - [aux_sym_foreach_statement_token2] = ACTIONS(1482), - [aux_sym_if_statement_token1] = ACTIONS(1482), - [aux_sym_if_statement_token2] = ACTIONS(1482), - [aux_sym_else_if_clause_token1] = ACTIONS(1482), - [aux_sym_else_clause_token1] = ACTIONS(1482), - [aux_sym_match_expression_token1] = ACTIONS(1482), - [aux_sym_match_default_expression_token1] = ACTIONS(1482), - [aux_sym_switch_statement_token1] = ACTIONS(1482), - [aux_sym_switch_block_token1] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [aux_sym_clone_expression_token1] = ACTIONS(1482), - [aux_sym_print_intrinsic_token1] = ACTIONS(1482), - [aux_sym_object_creation_expression_token1] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [aux_sym__list_destructing_token1] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_self] = ACTIONS(1482), - [anon_sym_parent] = ACTIONS(1482), - [anon_sym_POUND_LBRACK] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [aux_sym_encapsed_string_token1] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [aux_sym_string_token1] = ACTIONS(1480), - [anon_sym_LT_LT_LT] = ACTIONS(1480), - [anon_sym_BQUOTE] = ACTIONS(1480), - [sym_boolean] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1480), - [aux_sym_yield_expression_token1] = ACTIONS(1482), - [aux_sym_include_expression_token1] = ACTIONS(1482), - [aux_sym_include_once_expression_token1] = ACTIONS(1482), - [aux_sym_require_expression_token1] = ACTIONS(1482), - [aux_sym_require_once_expression_token1] = ACTIONS(1482), - [sym_comment] = ACTIONS(5), - }, - [562] = { - [sym_text_interpolation] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_name] = ACTIONS(1486), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1484), - [aux_sym_function_static_declaration_token1] = ACTIONS(1486), - [aux_sym_global_declaration_token1] = ACTIONS(1486), - [aux_sym_namespace_definition_token1] = ACTIONS(1486), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1486), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1486), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1486), - [anon_sym_BSLASH] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [aux_sym_trait_declaration_token1] = ACTIONS(1486), - [aux_sym_interface_declaration_token1] = ACTIONS(1486), - [aux_sym_enum_declaration_token1] = ACTIONS(1486), - [aux_sym_enum_case_token1] = ACTIONS(1486), - [aux_sym_class_declaration_token1] = ACTIONS(1486), - [aux_sym_final_modifier_token1] = ACTIONS(1486), - [aux_sym_abstract_modifier_token1] = ACTIONS(1486), - [aux_sym_readonly_modifier_token1] = ACTIONS(1486), - [aux_sym_visibility_modifier_token1] = ACTIONS(1486), - [aux_sym_visibility_modifier_token2] = ACTIONS(1486), - [aux_sym_visibility_modifier_token3] = ACTIONS(1486), - [aux_sym__arrow_function_header_token1] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [aux_sym_cast_type_token1] = ACTIONS(1486), - [aux_sym_echo_statement_token1] = ACTIONS(1486), - [anon_sym_unset] = ACTIONS(1486), - [aux_sym_declare_statement_token1] = ACTIONS(1486), - [aux_sym_declare_statement_token2] = ACTIONS(1486), - [sym_float] = ACTIONS(1486), - [aux_sym_try_statement_token1] = ACTIONS(1486), - [aux_sym_goto_statement_token1] = ACTIONS(1486), - [aux_sym_continue_statement_token1] = ACTIONS(1486), - [aux_sym_break_statement_token1] = ACTIONS(1486), - [sym_integer] = ACTIONS(1486), - [aux_sym_return_statement_token1] = ACTIONS(1486), - [aux_sym_throw_expression_token1] = ACTIONS(1486), - [aux_sym_while_statement_token1] = ACTIONS(1486), - [aux_sym_while_statement_token2] = ACTIONS(1486), - [aux_sym_do_statement_token1] = ACTIONS(1486), - [aux_sym_for_statement_token1] = ACTIONS(1486), - [aux_sym_for_statement_token2] = ACTIONS(1486), - [aux_sym_foreach_statement_token1] = ACTIONS(1486), - [aux_sym_foreach_statement_token2] = ACTIONS(1486), - [aux_sym_if_statement_token1] = ACTIONS(1486), - [aux_sym_if_statement_token2] = ACTIONS(1486), - [aux_sym_else_if_clause_token1] = ACTIONS(1486), - [aux_sym_else_clause_token1] = ACTIONS(1486), - [aux_sym_match_expression_token1] = ACTIONS(1486), - [aux_sym_match_default_expression_token1] = ACTIONS(1486), - [aux_sym_switch_statement_token1] = ACTIONS(1486), - [aux_sym_switch_block_token1] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [aux_sym_clone_expression_token1] = ACTIONS(1486), - [aux_sym_print_intrinsic_token1] = ACTIONS(1486), - [aux_sym_object_creation_expression_token1] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [aux_sym__list_destructing_token1] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_self] = ACTIONS(1486), - [anon_sym_parent] = ACTIONS(1486), - [anon_sym_POUND_LBRACK] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [aux_sym_encapsed_string_token1] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [aux_sym_string_token1] = ACTIONS(1484), - [anon_sym_LT_LT_LT] = ACTIONS(1484), - [anon_sym_BQUOTE] = ACTIONS(1484), - [sym_boolean] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [aux_sym_yield_expression_token1] = ACTIONS(1486), - [aux_sym_include_expression_token1] = ACTIONS(1486), - [aux_sym_include_once_expression_token1] = ACTIONS(1486), - [aux_sym_require_expression_token1] = ACTIONS(1486), - [aux_sym_require_once_expression_token1] = ACTIONS(1486), - [sym_comment] = ACTIONS(5), - }, - [563] = { - [sym_text_interpolation] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_name] = ACTIONS(1490), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1488), - [aux_sym_function_static_declaration_token1] = ACTIONS(1490), - [aux_sym_global_declaration_token1] = ACTIONS(1490), - [aux_sym_namespace_definition_token1] = ACTIONS(1490), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1490), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1490), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1490), - [anon_sym_BSLASH] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [aux_sym_trait_declaration_token1] = ACTIONS(1490), - [aux_sym_interface_declaration_token1] = ACTIONS(1490), - [aux_sym_enum_declaration_token1] = ACTIONS(1490), - [aux_sym_enum_case_token1] = ACTIONS(1490), - [aux_sym_class_declaration_token1] = ACTIONS(1490), - [aux_sym_final_modifier_token1] = ACTIONS(1490), - [aux_sym_abstract_modifier_token1] = ACTIONS(1490), - [aux_sym_readonly_modifier_token1] = ACTIONS(1490), - [aux_sym_visibility_modifier_token1] = ACTIONS(1490), - [aux_sym_visibility_modifier_token2] = ACTIONS(1490), - [aux_sym_visibility_modifier_token3] = ACTIONS(1490), - [aux_sym__arrow_function_header_token1] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1488), - [aux_sym_cast_type_token1] = ACTIONS(1490), - [aux_sym_echo_statement_token1] = ACTIONS(1490), - [anon_sym_unset] = ACTIONS(1490), - [aux_sym_declare_statement_token1] = ACTIONS(1490), - [aux_sym_declare_statement_token2] = ACTIONS(1490), - [sym_float] = ACTIONS(1490), - [aux_sym_try_statement_token1] = ACTIONS(1490), - [aux_sym_goto_statement_token1] = ACTIONS(1490), - [aux_sym_continue_statement_token1] = ACTIONS(1490), - [aux_sym_break_statement_token1] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [aux_sym_return_statement_token1] = ACTIONS(1490), - [aux_sym_throw_expression_token1] = ACTIONS(1490), - [aux_sym_while_statement_token1] = ACTIONS(1490), - [aux_sym_while_statement_token2] = ACTIONS(1490), - [aux_sym_do_statement_token1] = ACTIONS(1490), - [aux_sym_for_statement_token1] = ACTIONS(1490), - [aux_sym_for_statement_token2] = ACTIONS(1490), - [aux_sym_foreach_statement_token1] = ACTIONS(1490), - [aux_sym_foreach_statement_token2] = ACTIONS(1490), - [aux_sym_if_statement_token1] = ACTIONS(1490), - [aux_sym_if_statement_token2] = ACTIONS(1490), - [aux_sym_else_if_clause_token1] = ACTIONS(1490), - [aux_sym_else_clause_token1] = ACTIONS(1490), - [aux_sym_match_expression_token1] = ACTIONS(1490), - [aux_sym_match_default_expression_token1] = ACTIONS(1490), - [aux_sym_switch_statement_token1] = ACTIONS(1490), - [aux_sym_switch_block_token1] = ACTIONS(1490), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [aux_sym_clone_expression_token1] = ACTIONS(1490), - [aux_sym_print_intrinsic_token1] = ACTIONS(1490), - [aux_sym_object_creation_expression_token1] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [aux_sym__list_destructing_token1] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_self] = ACTIONS(1490), - [anon_sym_parent] = ACTIONS(1490), - [anon_sym_POUND_LBRACK] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [aux_sym_encapsed_string_token1] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [aux_sym_string_token1] = ACTIONS(1488), - [anon_sym_LT_LT_LT] = ACTIONS(1488), - [anon_sym_BQUOTE] = ACTIONS(1488), - [sym_boolean] = ACTIONS(1490), - [sym_null] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [aux_sym_yield_expression_token1] = ACTIONS(1490), - [aux_sym_include_expression_token1] = ACTIONS(1490), - [aux_sym_include_once_expression_token1] = ACTIONS(1490), - [aux_sym_require_expression_token1] = ACTIONS(1490), - [aux_sym_require_once_expression_token1] = ACTIONS(1490), - [sym_comment] = ACTIONS(5), - }, - [564] = { - [sym_text_interpolation] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_name] = ACTIONS(1494), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1492), - [aux_sym_function_static_declaration_token1] = ACTIONS(1494), - [aux_sym_global_declaration_token1] = ACTIONS(1494), - [aux_sym_namespace_definition_token1] = ACTIONS(1494), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1494), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1494), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym_trait_declaration_token1] = ACTIONS(1494), - [aux_sym_interface_declaration_token1] = ACTIONS(1494), - [aux_sym_enum_declaration_token1] = ACTIONS(1494), - [aux_sym_enum_case_token1] = ACTIONS(1494), - [aux_sym_class_declaration_token1] = ACTIONS(1494), - [aux_sym_final_modifier_token1] = ACTIONS(1494), - [aux_sym_abstract_modifier_token1] = ACTIONS(1494), - [aux_sym_readonly_modifier_token1] = ACTIONS(1494), - [aux_sym_visibility_modifier_token1] = ACTIONS(1494), - [aux_sym_visibility_modifier_token2] = ACTIONS(1494), - [aux_sym_visibility_modifier_token3] = ACTIONS(1494), - [aux_sym__arrow_function_header_token1] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [aux_sym_cast_type_token1] = ACTIONS(1494), - [aux_sym_echo_statement_token1] = ACTIONS(1494), - [anon_sym_unset] = ACTIONS(1494), - [aux_sym_declare_statement_token1] = ACTIONS(1494), - [aux_sym_declare_statement_token2] = ACTIONS(1494), - [sym_float] = ACTIONS(1494), - [aux_sym_try_statement_token1] = ACTIONS(1494), - [aux_sym_goto_statement_token1] = ACTIONS(1494), - [aux_sym_continue_statement_token1] = ACTIONS(1494), - [aux_sym_break_statement_token1] = ACTIONS(1494), - [sym_integer] = ACTIONS(1494), - [aux_sym_return_statement_token1] = ACTIONS(1494), - [aux_sym_throw_expression_token1] = ACTIONS(1494), - [aux_sym_while_statement_token1] = ACTIONS(1494), - [aux_sym_while_statement_token2] = ACTIONS(1494), - [aux_sym_do_statement_token1] = ACTIONS(1494), - [aux_sym_for_statement_token1] = ACTIONS(1494), - [aux_sym_for_statement_token2] = ACTIONS(1494), - [aux_sym_foreach_statement_token1] = ACTIONS(1494), - [aux_sym_foreach_statement_token2] = ACTIONS(1494), - [aux_sym_if_statement_token1] = ACTIONS(1494), - [aux_sym_if_statement_token2] = ACTIONS(1494), - [aux_sym_else_if_clause_token1] = ACTIONS(1494), - [aux_sym_else_clause_token1] = ACTIONS(1494), - [aux_sym_match_expression_token1] = ACTIONS(1494), - [aux_sym_match_default_expression_token1] = ACTIONS(1494), - [aux_sym_switch_statement_token1] = ACTIONS(1494), - [aux_sym_switch_block_token1] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [aux_sym_clone_expression_token1] = ACTIONS(1494), - [aux_sym_print_intrinsic_token1] = ACTIONS(1494), - [aux_sym_object_creation_expression_token1] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [aux_sym__list_destructing_token1] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_self] = ACTIONS(1494), - [anon_sym_parent] = ACTIONS(1494), - [anon_sym_POUND_LBRACK] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [aux_sym_encapsed_string_token1] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [aux_sym_string_token1] = ACTIONS(1492), - [anon_sym_LT_LT_LT] = ACTIONS(1492), - [anon_sym_BQUOTE] = ACTIONS(1492), - [sym_boolean] = ACTIONS(1494), - [sym_null] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [aux_sym_yield_expression_token1] = ACTIONS(1494), - [aux_sym_include_expression_token1] = ACTIONS(1494), - [aux_sym_include_once_expression_token1] = ACTIONS(1494), - [aux_sym_require_expression_token1] = ACTIONS(1494), - [aux_sym_require_once_expression_token1] = ACTIONS(1494), - [sym_comment] = ACTIONS(5), - }, - [565] = { - [sym_text_interpolation] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_name] = ACTIONS(1120), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1118), - [aux_sym_function_static_declaration_token1] = ACTIONS(1120), - [aux_sym_global_declaration_token1] = ACTIONS(1120), - [aux_sym_namespace_definition_token1] = ACTIONS(1120), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1120), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1120), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1120), - [anon_sym_BSLASH] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [aux_sym_trait_declaration_token1] = ACTIONS(1120), - [aux_sym_interface_declaration_token1] = ACTIONS(1120), - [aux_sym_enum_declaration_token1] = ACTIONS(1120), - [aux_sym_enum_case_token1] = ACTIONS(1120), - [aux_sym_class_declaration_token1] = ACTIONS(1120), - [aux_sym_final_modifier_token1] = ACTIONS(1120), - [aux_sym_abstract_modifier_token1] = ACTIONS(1120), - [aux_sym_readonly_modifier_token1] = ACTIONS(1120), - [aux_sym_visibility_modifier_token1] = ACTIONS(1120), - [aux_sym_visibility_modifier_token2] = ACTIONS(1120), - [aux_sym_visibility_modifier_token3] = ACTIONS(1120), - [aux_sym__arrow_function_header_token1] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1118), - [aux_sym_cast_type_token1] = ACTIONS(1120), - [aux_sym_echo_statement_token1] = ACTIONS(1120), - [anon_sym_unset] = ACTIONS(1120), - [aux_sym_declare_statement_token1] = ACTIONS(1120), - [aux_sym_declare_statement_token2] = ACTIONS(1120), - [sym_float] = ACTIONS(1120), - [aux_sym_try_statement_token1] = ACTIONS(1120), - [aux_sym_goto_statement_token1] = ACTIONS(1120), - [aux_sym_continue_statement_token1] = ACTIONS(1120), - [aux_sym_break_statement_token1] = ACTIONS(1120), - [sym_integer] = ACTIONS(1120), - [aux_sym_return_statement_token1] = ACTIONS(1120), - [aux_sym_throw_expression_token1] = ACTIONS(1120), - [aux_sym_while_statement_token1] = ACTIONS(1120), - [aux_sym_while_statement_token2] = ACTIONS(1120), - [aux_sym_do_statement_token1] = ACTIONS(1120), - [aux_sym_for_statement_token1] = ACTIONS(1120), - [aux_sym_for_statement_token2] = ACTIONS(1120), - [aux_sym_foreach_statement_token1] = ACTIONS(1120), - [aux_sym_foreach_statement_token2] = ACTIONS(1120), - [aux_sym_if_statement_token1] = ACTIONS(1120), - [aux_sym_if_statement_token2] = ACTIONS(1120), - [aux_sym_else_if_clause_token1] = ACTIONS(1120), - [aux_sym_else_clause_token1] = ACTIONS(1120), - [aux_sym_match_expression_token1] = ACTIONS(1120), - [aux_sym_match_default_expression_token1] = ACTIONS(1120), - [aux_sym_switch_statement_token1] = ACTIONS(1120), - [aux_sym_switch_block_token1] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [aux_sym_clone_expression_token1] = ACTIONS(1120), - [aux_sym_print_intrinsic_token1] = ACTIONS(1120), - [aux_sym_object_creation_expression_token1] = ACTIONS(1120), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [aux_sym__list_destructing_token1] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_self] = ACTIONS(1120), - [anon_sym_parent] = ACTIONS(1120), - [anon_sym_POUND_LBRACK] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [aux_sym_encapsed_string_token1] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [aux_sym_string_token1] = ACTIONS(1118), - [anon_sym_LT_LT_LT] = ACTIONS(1118), - [anon_sym_BQUOTE] = ACTIONS(1118), - [sym_boolean] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1118), - [aux_sym_yield_expression_token1] = ACTIONS(1120), - [aux_sym_include_expression_token1] = ACTIONS(1120), - [aux_sym_include_once_expression_token1] = ACTIONS(1120), - [aux_sym_require_expression_token1] = ACTIONS(1120), - [aux_sym_require_once_expression_token1] = ACTIONS(1120), - [sym_comment] = ACTIONS(5), - }, - [566] = { - [sym_text_interpolation] = STATE(566), - [sym_name] = ACTIONS(1496), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1498), - [aux_sym_function_static_declaration_token1] = ACTIONS(1496), - [aux_sym_global_declaration_token1] = ACTIONS(1496), - [aux_sym_namespace_definition_token1] = ACTIONS(1496), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1496), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1496), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1496), - [anon_sym_BSLASH] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [aux_sym_trait_declaration_token1] = ACTIONS(1496), - [aux_sym_interface_declaration_token1] = ACTIONS(1496), - [aux_sym_enum_declaration_token1] = ACTIONS(1496), - [anon_sym_COLON] = ACTIONS(1498), - [aux_sym_class_declaration_token1] = ACTIONS(1496), - [aux_sym_final_modifier_token1] = ACTIONS(1496), - [aux_sym_abstract_modifier_token1] = ACTIONS(1496), - [aux_sym_readonly_modifier_token1] = ACTIONS(1496), - [aux_sym_visibility_modifier_token1] = ACTIONS(1496), - [aux_sym_visibility_modifier_token2] = ACTIONS(1496), - [aux_sym_visibility_modifier_token3] = ACTIONS(1496), - [aux_sym__arrow_function_header_token1] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1498), - [aux_sym_cast_type_token1] = ACTIONS(1496), - [aux_sym_echo_statement_token1] = ACTIONS(1496), - [anon_sym_unset] = ACTIONS(1496), - [aux_sym_declare_statement_token1] = ACTIONS(1496), - [sym_float] = ACTIONS(1496), - [aux_sym_try_statement_token1] = ACTIONS(1496), - [aux_sym_goto_statement_token1] = ACTIONS(1496), - [aux_sym_continue_statement_token1] = ACTIONS(1496), - [aux_sym_break_statement_token1] = ACTIONS(1496), - [sym_integer] = ACTIONS(1496), - [aux_sym_return_statement_token1] = ACTIONS(1496), - [aux_sym_throw_expression_token1] = ACTIONS(1496), - [aux_sym_while_statement_token1] = ACTIONS(1496), - [aux_sym_do_statement_token1] = ACTIONS(1496), - [aux_sym_for_statement_token1] = ACTIONS(1496), - [aux_sym_foreach_statement_token1] = ACTIONS(1496), - [aux_sym_if_statement_token1] = ACTIONS(1496), - [aux_sym_match_expression_token1] = ACTIONS(1496), - [aux_sym_switch_statement_token1] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [aux_sym_clone_expression_token1] = ACTIONS(1496), - [aux_sym_print_intrinsic_token1] = ACTIONS(1496), - [aux_sym_object_creation_expression_token1] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [aux_sym__list_destructing_token1] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_self] = ACTIONS(1496), - [anon_sym_parent] = ACTIONS(1496), - [anon_sym_POUND_LBRACK] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [aux_sym_encapsed_string_token1] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [aux_sym_string_token1] = ACTIONS(1498), - [anon_sym_LT_LT_LT] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_boolean] = ACTIONS(1496), - [sym_null] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1498), - [aux_sym_yield_expression_token1] = ACTIONS(1496), - [aux_sym_include_expression_token1] = ACTIONS(1496), - [aux_sym_include_once_expression_token1] = ACTIONS(1496), - [aux_sym_require_expression_token1] = ACTIONS(1496), - [aux_sym_require_once_expression_token1] = ACTIONS(1496), - [sym_comment] = ACTIONS(5), - }, - [567] = { - [sym_text_interpolation] = STATE(567), - [sym_qualified_name] = STATE(704), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2472), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym__primary_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(701), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_variable] = STATE(708), - [sym_member_access_expression] = STATE(708), - [sym_nullsafe_member_access_expression] = STATE(708), - [sym_scoped_property_access_expression] = STATE(708), - [sym_function_call_expression] = STATE(651), - [sym_scoped_call_expression] = STATE(651), - [sym__scope_resolution_qualifier] = STATE(2630), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(651), - [sym_nullsafe_member_call_expression] = STATE(651), - [sym_subscript_expression] = STATE(651), - [sym__dereferencable_expression] = STATE(1668), - [sym_array_creation_expression] = STATE(701), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(701), - [sym_dynamic_variable_name] = STATE(651), - [sym_variable_name] = STATE(651), - [sym__reserved_identifier] = STATE(1551), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(1500), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1502), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(569), - [aux_sym_print_intrinsic_token1] = ACTIONS(581), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1504), - [sym_comment] = ACTIONS(5), - }, - [568] = { - [sym_text_interpolation] = STATE(568), - [sym_qualified_name] = STATE(821), - [sym_namespace_name_as_prefix] = STATE(2616), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2608), - [sym_arrow_function] = STATE(1087), - [sym_throw_expression] = STATE(1087), - [sym__primary_expression] = STATE(1111), - [sym_parenthesized_expression] = STATE(837), - [sym_class_constant_access_expression] = STATE(902), - [sym_print_intrinsic] = STATE(1087), - [sym_anonymous_function_creation_expression] = STATE(1087), - [sym_object_creation_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_cast_variable] = STATE(818), - [sym_member_access_expression] = STATE(818), - [sym_nullsafe_member_access_expression] = STATE(818), - [sym_scoped_property_access_expression] = STATE(818), - [sym_function_call_expression] = STATE(768), - [sym_scoped_call_expression] = STATE(768), - [sym__scope_resolution_qualifier] = STATE(2602), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(768), - [sym_nullsafe_member_call_expression] = STATE(768), - [sym_subscript_expression] = STATE(768), - [sym__dereferencable_expression] = STATE(1654), - [sym_array_creation_expression] = STATE(837), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1786), - [sym_encapsed_string] = STATE(880), - [sym_string] = STATE(880), - [sym_heredoc] = STATE(880), - [sym_nowdoc] = STATE(880), - [sym_shell_command_expression] = STATE(1087), - [sym__string] = STATE(837), - [sym_dynamic_variable_name] = STATE(768), - [sym_variable_name] = STATE(768), - [sym__reserved_identifier] = STATE(1544), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(1506), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(645), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(647), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1508), - [aux_sym_cast_type_token1] = ACTIONS(240), - [sym_float] = ACTIONS(248), - [sym_integer] = ACTIONS(248), - [aux_sym_throw_expression_token1] = ACTIONS(260), - [aux_sym_print_intrinsic_token1] = ACTIONS(284), - [aux_sym_object_creation_expression_token1] = ACTIONS(286), - [anon_sym_PLUS_PLUS] = ACTIONS(288), - [anon_sym_DASH_DASH] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(298), - [aux_sym_encapsed_string_token1] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [aux_sym_string_token1] = ACTIONS(298), - [anon_sym_LT_LT_LT] = ACTIONS(302), - [anon_sym_BQUOTE] = ACTIONS(304), - [sym_boolean] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(1510), - [sym_comment] = ACTIONS(5), - }, - [569] = { - [sym_text_interpolation] = STATE(569), - [sym_qualified_name] = STATE(704), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2506), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym__primary_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(701), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_variable] = STATE(708), - [sym_member_access_expression] = STATE(708), - [sym_nullsafe_member_access_expression] = STATE(708), - [sym_scoped_property_access_expression] = STATE(708), - [sym_function_call_expression] = STATE(651), - [sym_scoped_call_expression] = STATE(651), - [sym__scope_resolution_qualifier] = STATE(2630), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(651), - [sym_nullsafe_member_call_expression] = STATE(651), - [sym_subscript_expression] = STATE(651), - [sym__dereferencable_expression] = STATE(1668), - [sym_array_creation_expression] = STATE(701), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(701), - [sym_dynamic_variable_name] = STATE(651), - [sym_variable_name] = STATE(651), - [sym__reserved_identifier] = STATE(1551), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(1500), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1502), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(657), - [aux_sym_print_intrinsic_token1] = ACTIONS(667), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1504), - [sym_comment] = ACTIONS(5), - }, - [570] = { - [sym_text_interpolation] = STATE(570), - [sym_qualified_name] = STATE(704), - [sym_namespace_name_as_prefix] = STATE(2454), - [sym_namespace_name] = STATE(2615), - [sym_static_modifier] = STATE(2612), - [sym__arrow_function_header] = STATE(2444), - [sym_arrow_function] = STATE(917), - [sym_throw_expression] = STATE(917), - [sym__primary_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(701), - [sym_class_constant_access_expression] = STATE(782), - [sym_print_intrinsic] = STATE(917), - [sym_anonymous_function_creation_expression] = STATE(917), - [sym_object_creation_expression] = STATE(917), - [sym_update_expression] = STATE(917), - [sym_cast_variable] = STATE(708), - [sym_member_access_expression] = STATE(708), - [sym_nullsafe_member_access_expression] = STATE(708), - [sym_scoped_property_access_expression] = STATE(708), - [sym_function_call_expression] = STATE(651), - [sym_scoped_call_expression] = STATE(651), - [sym__scope_resolution_qualifier] = STATE(2630), - [sym_relative_scope] = STATE(2603), - [sym_member_call_expression] = STATE(651), - [sym_nullsafe_member_call_expression] = STATE(651), - [sym_subscript_expression] = STATE(651), - [sym__dereferencable_expression] = STATE(1668), - [sym_array_creation_expression] = STATE(701), - [sym_attribute_group] = STATE(1352), - [sym_attribute_list] = STATE(1766), - [sym_encapsed_string] = STATE(740), - [sym_string] = STATE(740), - [sym_heredoc] = STATE(740), - [sym_nowdoc] = STATE(740), - [sym_shell_command_expression] = STATE(917), - [sym__string] = STATE(701), - [sym_dynamic_variable_name] = STATE(651), - [sym_variable_name] = STATE(651), - [sym__reserved_identifier] = STATE(1551), - [aux_sym_attribute_list_repeat1] = STATE(1346), - [sym_name] = ACTIONS(1500), - [anon_sym_QMARK_GT] = ACTIONS(18), - [aux_sym_function_static_declaration_token1] = ACTIONS(553), - [aux_sym_namespace_definition_token1] = ACTIONS(555), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(212), - [aux_sym__arrow_function_header_token1] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(1502), - [aux_sym_cast_type_token1] = ACTIONS(565), - [sym_float] = ACTIONS(567), - [sym_integer] = ACTIONS(567), - [aux_sym_throw_expression_token1] = ACTIONS(615), - [aux_sym_print_intrinsic_token1] = ACTIONS(625), - [aux_sym_object_creation_expression_token1] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_self] = ACTIONS(294), - [anon_sym_parent] = ACTIONS(294), - [anon_sym_POUND_LBRACK] = ACTIONS(296), - [anon_sym_SQUOTE] = ACTIONS(589), - [aux_sym_encapsed_string_token1] = ACTIONS(591), - [anon_sym_DQUOTE] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(589), - [anon_sym_LT_LT_LT] = ACTIONS(593), - [anon_sym_BQUOTE] = ACTIONS(595), - [sym_boolean] = ACTIONS(567), - [sym_null] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(1504), - [sym_comment] = ACTIONS(5), - }, - [571] = { - [sym_text_interpolation] = STATE(571), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1514), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [aux_sym_base_clause_token1] = ACTIONS(1512), - [anon_sym_COLON] = ACTIONS(1514), - [aux_sym_class_interface_clause_token1] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_STAR_STAR] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_DOT_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1512), - [anon_sym_DASH_GT] = ACTIONS(1512), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1512), - [aux_sym_binary_expression_token1] = ACTIONS(1512), - [anon_sym_QMARK_QMARK] = ACTIONS(1514), - [aux_sym_binary_expression_token2] = ACTIONS(1512), - [aux_sym_binary_expression_token3] = ACTIONS(1512), - [aux_sym_binary_expression_token4] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1514), - [anon_sym_BANG_EQ] = ACTIONS(1514), - [anon_sym_LT_GT] = ACTIONS(1512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_LT_EQ] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ_GT] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [sym_comment] = ACTIONS(1516), - }, - [572] = { - [sym_text_interpolation] = STATE(572), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym_base_clause_token1] = ACTIONS(1518), - [anon_sym_COLON] = ACTIONS(1520), - [aux_sym_class_interface_clause_token1] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR_STAR] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1518), - [anon_sym_STAR_EQ] = ACTIONS(1518), - [anon_sym_SLASH_EQ] = ACTIONS(1518), - [anon_sym_PERCENT_EQ] = ACTIONS(1518), - [anon_sym_PLUS_EQ] = ACTIONS(1518), - [anon_sym_DASH_EQ] = ACTIONS(1518), - [anon_sym_DOT_EQ] = ACTIONS(1518), - [anon_sym_LT_LT_EQ] = ACTIONS(1518), - [anon_sym_GT_GT_EQ] = ACTIONS(1518), - [anon_sym_AMP_EQ] = ACTIONS(1518), - [anon_sym_CARET_EQ] = ACTIONS(1518), - [anon_sym_PIPE_EQ] = ACTIONS(1518), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1518), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_RBRACK] = ACTIONS(1518), - [aux_sym_binary_expression_token1] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1520), - [aux_sym_binary_expression_token2] = ACTIONS(1518), - [aux_sym_binary_expression_token3] = ACTIONS(1518), - [aux_sym_binary_expression_token4] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_LT_GT] = ACTIONS(1518), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_LT_EQ_GT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [sym_comment] = ACTIONS(1516), - }, - [573] = { - [sym_text_interpolation] = STATE(573), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1524), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [aux_sym_base_clause_token1] = ACTIONS(1522), - [anon_sym_COLON] = ACTIONS(1524), - [aux_sym_class_interface_clause_token1] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR_STAR] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PERCENT_EQ] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_DOT_EQ] = ACTIONS(1522), - [anon_sym_LT_LT_EQ] = ACTIONS(1522), - [anon_sym_GT_GT_EQ] = ACTIONS(1522), - [anon_sym_AMP_EQ] = ACTIONS(1522), - [anon_sym_CARET_EQ] = ACTIONS(1522), - [anon_sym_PIPE_EQ] = ACTIONS(1522), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1522), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_RBRACK] = ACTIONS(1522), - [aux_sym_binary_expression_token1] = ACTIONS(1522), - [anon_sym_QMARK_QMARK] = ACTIONS(1524), - [aux_sym_binary_expression_token2] = ACTIONS(1522), - [aux_sym_binary_expression_token3] = ACTIONS(1522), - [aux_sym_binary_expression_token4] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1524), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_LT_GT] = ACTIONS(1522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ_GT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1524), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [sym_comment] = ACTIONS(1516), - }, - [574] = { - [sym_text_interpolation] = STATE(574), - [anon_sym_QMARK_GT] = ACTIONS(18), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1528), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [aux_sym_base_clause_token1] = ACTIONS(1526), - [anon_sym_COLON] = ACTIONS(1528), - [aux_sym_class_interface_clause_token1] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR_STAR] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PERCENT_EQ] = ACTIONS(1526), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_DOT_EQ] = ACTIONS(1526), - [anon_sym_LT_LT_EQ] = ACTIONS(1526), - [anon_sym_GT_GT_EQ] = ACTIONS(1526), - [anon_sym_AMP_EQ] = ACTIONS(1526), - [anon_sym_CARET_EQ] = ACTIONS(1526), - [anon_sym_PIPE_EQ] = ACTIONS(1526), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1526), - [anon_sym_DASH_GT] = ACTIONS(1526), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_RBRACK] = ACTIONS(1526), - [aux_sym_binary_expression_token1] = ACTIONS(1526), - [anon_sym_QMARK_QMARK] = ACTIONS(1528), - [aux_sym_binary_expression_token2] = ACTIONS(1526), - [aux_sym_binary_expression_token3] = ACTIONS(1526), - [aux_sym_binary_expression_token4] = ACTIONS(1526), - [anon_sym_PIPE_PIPE] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT_GT] = ACTIONS(1526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1526), - [anon_sym_LT_EQ_GT] = ACTIONS(1526), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [sym_comment] = ACTIONS(1516), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(575), 1, - sym_text_interpolation, - STATE(584), 1, - sym_arguments, - ACTIONS(1532), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1530), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [79] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(576), 1, - sym_text_interpolation, - STATE(590), 1, - sym_arguments, - ACTIONS(1538), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1536), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [158] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(577), 1, - sym_text_interpolation, - STATE(586), 1, - sym_arguments, - ACTIONS(1542), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1540), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [237] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(578), 1, - sym_text_interpolation, - STATE(582), 1, - sym_arguments, - ACTIONS(1546), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1544), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [316] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(579), 1, - sym_text_interpolation, - STATE(585), 1, - sym_arguments, - ACTIONS(1550), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1548), 38, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [395] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1556), 1, - anon_sym_EQ, - STATE(580), 1, - sym_text_interpolation, - STATE(592), 1, - sym_arguments, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1562), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1554), 20, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [482] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(581), 1, - sym_text_interpolation, - ACTIONS(1566), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1564), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [556] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(582), 1, - sym_text_interpolation, - ACTIONS(1570), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1568), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [630] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [aux_sym_clone_expression_token1] = ACTIONS(1124), + [aux_sym_print_intrinsic_token1] = ACTIONS(1124), + [aux_sym_object_creation_expression_token1] = ACTIONS(1124), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [aux_sym__list_destructing_token1] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_self] = ACTIONS(1124), + [anon_sym_parent] = ACTIONS(1124), + [anon_sym_POUND_LBRACK] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [aux_sym_encapsed_string_token1] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [aux_sym_string_token1] = ACTIONS(1122), + [anon_sym_LT_LT_LT] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1122), + [sym_boolean] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1122), + [aux_sym_yield_expression_token1] = ACTIONS(1124), + [aux_sym_include_expression_token1] = ACTIONS(1124), + [aux_sym_include_once_expression_token1] = ACTIONS(1124), + [aux_sym_require_expression_token1] = ACTIONS(1124), + [aux_sym_require_once_expression_token1] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [461] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_name] = ACTIONS(1128), + [anon_sym_QMARK_GT] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [aux_sym_function_static_declaration_token1] = ACTIONS(1128), + [aux_sym_global_declaration_token1] = ACTIONS(1128), + [aux_sym_namespace_definition_token1] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1128), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1128), + [anon_sym_BSLASH] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [aux_sym_trait_declaration_token1] = ACTIONS(1128), + [aux_sym_interface_declaration_token1] = ACTIONS(1128), + [aux_sym_enum_declaration_token1] = ACTIONS(1128), + [aux_sym_enum_case_token1] = ACTIONS(1128), + [aux_sym_class_declaration_token1] = ACTIONS(1128), + [aux_sym_final_modifier_token1] = ACTIONS(1128), + [aux_sym_abstract_modifier_token1] = ACTIONS(1128), + [aux_sym_readonly_modifier_token1] = ACTIONS(1128), + [aux_sym_visibility_modifier_token1] = ACTIONS(1128), + [aux_sym_visibility_modifier_token2] = ACTIONS(1128), + [aux_sym_visibility_modifier_token3] = ACTIONS(1128), + [aux_sym__arrow_function_header_token1] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [aux_sym_cast_type_token1] = ACTIONS(1128), + [aux_sym_echo_statement_token1] = ACTIONS(1128), + [anon_sym_unset] = ACTIONS(1128), + [aux_sym_declare_statement_token1] = ACTIONS(1128), + [aux_sym_declare_statement_token2] = ACTIONS(1128), + [sym_float] = ACTIONS(1128), + [aux_sym_try_statement_token1] = ACTIONS(1128), + [aux_sym_goto_statement_token1] = ACTIONS(1128), + [aux_sym_continue_statement_token1] = ACTIONS(1128), + [aux_sym_break_statement_token1] = ACTIONS(1128), + [sym_integer] = ACTIONS(1128), + [aux_sym_return_statement_token1] = ACTIONS(1128), + [aux_sym_throw_expression_token1] = ACTIONS(1128), + [aux_sym_while_statement_token1] = ACTIONS(1128), + [aux_sym_while_statement_token2] = ACTIONS(1128), + [aux_sym_do_statement_token1] = ACTIONS(1128), + [aux_sym_for_statement_token1] = ACTIONS(1128), + [aux_sym_for_statement_token2] = ACTIONS(1128), + [aux_sym_foreach_statement_token1] = ACTIONS(1128), + [aux_sym_foreach_statement_token2] = ACTIONS(1128), + [aux_sym_if_statement_token1] = ACTIONS(1128), + [aux_sym_if_statement_token2] = ACTIONS(1128), + [aux_sym_else_if_clause_token1] = ACTIONS(1128), + [aux_sym_else_clause_token1] = ACTIONS(1128), + [aux_sym_match_expression_token1] = ACTIONS(1128), + [aux_sym_match_default_expression_token1] = ACTIONS(1128), + [aux_sym_switch_statement_token1] = ACTIONS(1128), + [aux_sym_switch_block_token1] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [aux_sym_clone_expression_token1] = ACTIONS(1128), + [aux_sym_print_intrinsic_token1] = ACTIONS(1128), + [aux_sym_object_creation_expression_token1] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [aux_sym__list_destructing_token1] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_self] = ACTIONS(1128), + [anon_sym_parent] = ACTIONS(1128), + [anon_sym_POUND_LBRACK] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [aux_sym_encapsed_string_token1] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [aux_sym_string_token1] = ACTIONS(1126), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_boolean] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1126), + [aux_sym_yield_expression_token1] = ACTIONS(1128), + [aux_sym_include_expression_token1] = ACTIONS(1128), + [aux_sym_include_once_expression_token1] = ACTIONS(1128), + [aux_sym_require_expression_token1] = ACTIONS(1128), + [aux_sym_require_once_expression_token1] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + }, + [462] = { + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_name] = ACTIONS(1132), + [anon_sym_QMARK_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_function_static_declaration_token1] = ACTIONS(1132), + [aux_sym_global_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_definition_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1132), + [anon_sym_BSLASH] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [aux_sym_trait_declaration_token1] = ACTIONS(1132), + [aux_sym_interface_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_case_token1] = ACTIONS(1132), + [aux_sym_class_declaration_token1] = ACTIONS(1132), + [aux_sym_final_modifier_token1] = ACTIONS(1132), + [aux_sym_abstract_modifier_token1] = ACTIONS(1132), + [aux_sym_readonly_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token2] = ACTIONS(1132), + [aux_sym_visibility_modifier_token3] = ACTIONS(1132), + [aux_sym__arrow_function_header_token1] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [aux_sym_cast_type_token1] = ACTIONS(1132), + [aux_sym_echo_statement_token1] = ACTIONS(1132), + [anon_sym_unset] = ACTIONS(1132), + [aux_sym_declare_statement_token1] = ACTIONS(1132), + [aux_sym_declare_statement_token2] = ACTIONS(1132), + [sym_float] = ACTIONS(1132), + [aux_sym_try_statement_token1] = ACTIONS(1132), + [aux_sym_goto_statement_token1] = ACTIONS(1132), + [aux_sym_continue_statement_token1] = ACTIONS(1132), + [aux_sym_break_statement_token1] = ACTIONS(1132), + [sym_integer] = ACTIONS(1132), + [aux_sym_return_statement_token1] = ACTIONS(1132), + [aux_sym_throw_expression_token1] = ACTIONS(1132), + [aux_sym_while_statement_token1] = ACTIONS(1132), + [aux_sym_while_statement_token2] = ACTIONS(1132), + [aux_sym_do_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token2] = ACTIONS(1132), + [aux_sym_foreach_statement_token1] = ACTIONS(1132), + [aux_sym_foreach_statement_token2] = ACTIONS(1132), + [aux_sym_if_statement_token1] = ACTIONS(1132), + [aux_sym_if_statement_token2] = ACTIONS(1132), + [aux_sym_else_if_clause_token1] = ACTIONS(1132), + [aux_sym_else_clause_token1] = ACTIONS(1132), + [aux_sym_match_expression_token1] = ACTIONS(1132), + [aux_sym_match_default_expression_token1] = ACTIONS(1132), + [aux_sym_switch_statement_token1] = ACTIONS(1132), + [aux_sym_switch_block_token1] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_clone_expression_token1] = ACTIONS(1132), + [aux_sym_print_intrinsic_token1] = ACTIONS(1132), + [aux_sym_object_creation_expression_token1] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [aux_sym__list_destructing_token1] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_self] = ACTIONS(1132), + [anon_sym_parent] = ACTIONS(1132), + [anon_sym_POUND_LBRACK] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [aux_sym_encapsed_string_token1] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [aux_sym_string_token1] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_boolean] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1130), + [aux_sym_yield_expression_token1] = ACTIONS(1132), + [aux_sym_include_expression_token1] = ACTIONS(1132), + [aux_sym_include_once_expression_token1] = ACTIONS(1132), + [aux_sym_require_expression_token1] = ACTIONS(1132), + [aux_sym_require_once_expression_token1] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + }, + [463] = { + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_name] = ACTIONS(1132), + [anon_sym_QMARK_GT] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_function_static_declaration_token1] = ACTIONS(1132), + [aux_sym_global_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_definition_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1132), + [anon_sym_BSLASH] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [aux_sym_trait_declaration_token1] = ACTIONS(1132), + [aux_sym_interface_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_case_token1] = ACTIONS(1132), + [aux_sym_class_declaration_token1] = ACTIONS(1132), + [aux_sym_final_modifier_token1] = ACTIONS(1132), + [aux_sym_abstract_modifier_token1] = ACTIONS(1132), + [aux_sym_readonly_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token2] = ACTIONS(1132), + [aux_sym_visibility_modifier_token3] = ACTIONS(1132), + [aux_sym__arrow_function_header_token1] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [aux_sym_cast_type_token1] = ACTIONS(1132), + [aux_sym_echo_statement_token1] = ACTIONS(1132), + [anon_sym_unset] = ACTIONS(1132), + [aux_sym_declare_statement_token1] = ACTIONS(1132), + [aux_sym_declare_statement_token2] = ACTIONS(1132), + [sym_float] = ACTIONS(1132), + [aux_sym_try_statement_token1] = ACTIONS(1132), + [aux_sym_goto_statement_token1] = ACTIONS(1132), + [aux_sym_continue_statement_token1] = ACTIONS(1132), + [aux_sym_break_statement_token1] = ACTIONS(1132), + [sym_integer] = ACTIONS(1132), + [aux_sym_return_statement_token1] = ACTIONS(1132), + [aux_sym_throw_expression_token1] = ACTIONS(1132), + [aux_sym_while_statement_token1] = ACTIONS(1132), + [aux_sym_while_statement_token2] = ACTIONS(1132), + [aux_sym_do_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token2] = ACTIONS(1132), + [aux_sym_foreach_statement_token1] = ACTIONS(1132), + [aux_sym_foreach_statement_token2] = ACTIONS(1132), + [aux_sym_if_statement_token1] = ACTIONS(1132), + [aux_sym_if_statement_token2] = ACTIONS(1132), + [aux_sym_else_if_clause_token1] = ACTIONS(1132), + [aux_sym_else_clause_token1] = ACTIONS(1132), + [aux_sym_match_expression_token1] = ACTIONS(1132), + [aux_sym_match_default_expression_token1] = ACTIONS(1132), + [aux_sym_switch_statement_token1] = ACTIONS(1132), + [aux_sym_switch_block_token1] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_clone_expression_token1] = ACTIONS(1132), + [aux_sym_print_intrinsic_token1] = ACTIONS(1132), + [aux_sym_object_creation_expression_token1] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [aux_sym__list_destructing_token1] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_self] = ACTIONS(1132), + [anon_sym_parent] = ACTIONS(1132), + [anon_sym_POUND_LBRACK] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [aux_sym_encapsed_string_token1] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [aux_sym_string_token1] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [sym_boolean] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [anon_sym_DOLLAR] = ACTIONS(1130), + [aux_sym_yield_expression_token1] = ACTIONS(1132), + [aux_sym_include_expression_token1] = ACTIONS(1132), + [aux_sym_include_once_expression_token1] = ACTIONS(1132), + [aux_sym_require_expression_token1] = ACTIONS(1132), + [aux_sym_require_once_expression_token1] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_name] = ACTIONS(996), + [anon_sym_QMARK_GT] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [aux_sym_function_static_declaration_token1] = ACTIONS(996), + [aux_sym_global_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_definition_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(996), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(996), + [anon_sym_BSLASH] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [aux_sym_trait_declaration_token1] = ACTIONS(996), + [aux_sym_interface_declaration_token1] = ACTIONS(996), + [aux_sym_enum_declaration_token1] = ACTIONS(996), + [aux_sym_enum_case_token1] = ACTIONS(996), + [aux_sym_class_declaration_token1] = ACTIONS(996), + [aux_sym_final_modifier_token1] = ACTIONS(996), + [aux_sym_abstract_modifier_token1] = ACTIONS(996), + [aux_sym_readonly_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token1] = ACTIONS(996), + [aux_sym_visibility_modifier_token2] = ACTIONS(996), + [aux_sym_visibility_modifier_token3] = ACTIONS(996), + [aux_sym__arrow_function_header_token1] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [aux_sym_cast_type_token1] = ACTIONS(996), + [aux_sym_echo_statement_token1] = ACTIONS(996), + [anon_sym_unset] = ACTIONS(996), + [aux_sym_declare_statement_token1] = ACTIONS(996), + [aux_sym_declare_statement_token2] = ACTIONS(996), + [sym_float] = ACTIONS(996), + [aux_sym_try_statement_token1] = ACTIONS(996), + [aux_sym_goto_statement_token1] = ACTIONS(996), + [aux_sym_continue_statement_token1] = ACTIONS(996), + [aux_sym_break_statement_token1] = ACTIONS(996), + [sym_integer] = ACTIONS(996), + [aux_sym_return_statement_token1] = ACTIONS(996), + [aux_sym_throw_expression_token1] = ACTIONS(996), + [aux_sym_while_statement_token1] = ACTIONS(996), + [aux_sym_while_statement_token2] = ACTIONS(996), + [aux_sym_do_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token1] = ACTIONS(996), + [aux_sym_for_statement_token2] = ACTIONS(996), + [aux_sym_foreach_statement_token1] = ACTIONS(996), + [aux_sym_foreach_statement_token2] = ACTIONS(996), + [aux_sym_if_statement_token1] = ACTIONS(996), + [aux_sym_if_statement_token2] = ACTIONS(996), + [aux_sym_else_if_clause_token1] = ACTIONS(996), + [aux_sym_else_clause_token1] = ACTIONS(996), + [aux_sym_match_expression_token1] = ACTIONS(996), + [aux_sym_match_default_expression_token1] = ACTIONS(996), + [aux_sym_switch_statement_token1] = ACTIONS(996), + [aux_sym_switch_block_token1] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [aux_sym_clone_expression_token1] = ACTIONS(996), + [aux_sym_print_intrinsic_token1] = ACTIONS(996), + [aux_sym_object_creation_expression_token1] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [aux_sym__list_destructing_token1] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_self] = ACTIONS(996), + [anon_sym_parent] = ACTIONS(996), + [anon_sym_POUND_LBRACK] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [aux_sym_encapsed_string_token1] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [aux_sym_string_token1] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(994), + [sym_boolean] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [aux_sym_yield_expression_token1] = ACTIONS(996), + [aux_sym_include_expression_token1] = ACTIONS(996), + [aux_sym_include_once_expression_token1] = ACTIONS(996), + [aux_sym_require_expression_token1] = ACTIONS(996), + [aux_sym_require_once_expression_token1] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_name] = ACTIONS(1136), + [anon_sym_QMARK_GT] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [aux_sym_function_static_declaration_token1] = ACTIONS(1136), + [aux_sym_global_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_definition_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1136), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1136), + [anon_sym_BSLASH] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [aux_sym_trait_declaration_token1] = ACTIONS(1136), + [aux_sym_interface_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_declaration_token1] = ACTIONS(1136), + [aux_sym_enum_case_token1] = ACTIONS(1136), + [aux_sym_class_declaration_token1] = ACTIONS(1136), + [aux_sym_final_modifier_token1] = ACTIONS(1136), + [aux_sym_abstract_modifier_token1] = ACTIONS(1136), + [aux_sym_readonly_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token1] = ACTIONS(1136), + [aux_sym_visibility_modifier_token2] = ACTIONS(1136), + [aux_sym_visibility_modifier_token3] = ACTIONS(1136), + [aux_sym__arrow_function_header_token1] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [aux_sym_cast_type_token1] = ACTIONS(1136), + [aux_sym_echo_statement_token1] = ACTIONS(1136), + [anon_sym_unset] = ACTIONS(1136), + [aux_sym_declare_statement_token1] = ACTIONS(1136), + [aux_sym_declare_statement_token2] = ACTIONS(1136), + [sym_float] = ACTIONS(1136), + [aux_sym_try_statement_token1] = ACTIONS(1136), + [aux_sym_goto_statement_token1] = ACTIONS(1136), + [aux_sym_continue_statement_token1] = ACTIONS(1136), + [aux_sym_break_statement_token1] = ACTIONS(1136), + [sym_integer] = ACTIONS(1136), + [aux_sym_return_statement_token1] = ACTIONS(1136), + [aux_sym_throw_expression_token1] = ACTIONS(1136), + [aux_sym_while_statement_token1] = ACTIONS(1136), + [aux_sym_while_statement_token2] = ACTIONS(1136), + [aux_sym_do_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token1] = ACTIONS(1136), + [aux_sym_for_statement_token2] = ACTIONS(1136), + [aux_sym_foreach_statement_token1] = ACTIONS(1136), + [aux_sym_foreach_statement_token2] = ACTIONS(1136), + [aux_sym_if_statement_token1] = ACTIONS(1136), + [aux_sym_if_statement_token2] = ACTIONS(1136), + [aux_sym_else_if_clause_token1] = ACTIONS(1136), + [aux_sym_else_clause_token1] = ACTIONS(1136), + [aux_sym_match_expression_token1] = ACTIONS(1136), + [aux_sym_match_default_expression_token1] = ACTIONS(1136), + [aux_sym_switch_statement_token1] = ACTIONS(1136), + [aux_sym_switch_block_token1] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [aux_sym_clone_expression_token1] = ACTIONS(1136), + [aux_sym_print_intrinsic_token1] = ACTIONS(1136), + [aux_sym_object_creation_expression_token1] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [aux_sym__list_destructing_token1] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_self] = ACTIONS(1136), + [anon_sym_parent] = ACTIONS(1136), + [anon_sym_POUND_LBRACK] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [aux_sym_encapsed_string_token1] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1134), + [anon_sym_LT_LT_LT] = ACTIONS(1134), + [anon_sym_BQUOTE] = ACTIONS(1134), + [sym_boolean] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), + [anon_sym_DOLLAR] = ACTIONS(1134), + [aux_sym_yield_expression_token1] = ACTIONS(1136), + [aux_sym_include_expression_token1] = ACTIONS(1136), + [aux_sym_include_once_expression_token1] = ACTIONS(1136), + [aux_sym_require_expression_token1] = ACTIONS(1136), + [aux_sym_require_once_expression_token1] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + }, + [466] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_name] = ACTIONS(1140), + [anon_sym_QMARK_GT] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [aux_sym_function_static_declaration_token1] = ACTIONS(1140), + [aux_sym_global_declaration_token1] = ACTIONS(1140), + [aux_sym_namespace_definition_token1] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1140), + [anon_sym_BSLASH] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [aux_sym_trait_declaration_token1] = ACTIONS(1140), + [aux_sym_interface_declaration_token1] = ACTIONS(1140), + [aux_sym_enum_declaration_token1] = ACTIONS(1140), + [aux_sym_enum_case_token1] = ACTIONS(1140), + [aux_sym_class_declaration_token1] = ACTIONS(1140), + [aux_sym_final_modifier_token1] = ACTIONS(1140), + [aux_sym_abstract_modifier_token1] = ACTIONS(1140), + [aux_sym_readonly_modifier_token1] = ACTIONS(1140), + [aux_sym_visibility_modifier_token1] = ACTIONS(1140), + [aux_sym_visibility_modifier_token2] = ACTIONS(1140), + [aux_sym_visibility_modifier_token3] = ACTIONS(1140), + [aux_sym__arrow_function_header_token1] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1138), + [aux_sym_cast_type_token1] = ACTIONS(1140), + [aux_sym_echo_statement_token1] = ACTIONS(1140), + [anon_sym_unset] = ACTIONS(1140), + [aux_sym_declare_statement_token1] = ACTIONS(1140), + [aux_sym_declare_statement_token2] = ACTIONS(1140), + [sym_float] = ACTIONS(1140), + [aux_sym_try_statement_token1] = ACTIONS(1140), + [aux_sym_goto_statement_token1] = ACTIONS(1140), + [aux_sym_continue_statement_token1] = ACTIONS(1140), + [aux_sym_break_statement_token1] = ACTIONS(1140), + [sym_integer] = ACTIONS(1140), + [aux_sym_return_statement_token1] = ACTIONS(1140), + [aux_sym_throw_expression_token1] = ACTIONS(1140), + [aux_sym_while_statement_token1] = ACTIONS(1140), + [aux_sym_while_statement_token2] = ACTIONS(1140), + [aux_sym_do_statement_token1] = ACTIONS(1140), + [aux_sym_for_statement_token1] = ACTIONS(1140), + [aux_sym_for_statement_token2] = ACTIONS(1140), + [aux_sym_foreach_statement_token1] = ACTIONS(1140), + [aux_sym_foreach_statement_token2] = ACTIONS(1140), + [aux_sym_if_statement_token1] = ACTIONS(1140), + [aux_sym_if_statement_token2] = ACTIONS(1140), + [aux_sym_else_if_clause_token1] = ACTIONS(1140), + [aux_sym_else_clause_token1] = ACTIONS(1140), + [aux_sym_match_expression_token1] = ACTIONS(1140), + [aux_sym_match_default_expression_token1] = ACTIONS(1140), + [aux_sym_switch_statement_token1] = ACTIONS(1140), + [aux_sym_switch_block_token1] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [aux_sym_clone_expression_token1] = ACTIONS(1140), + [aux_sym_print_intrinsic_token1] = ACTIONS(1140), + [aux_sym_object_creation_expression_token1] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [aux_sym__list_destructing_token1] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_self] = ACTIONS(1140), + [anon_sym_parent] = ACTIONS(1140), + [anon_sym_POUND_LBRACK] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [aux_sym_encapsed_string_token1] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [aux_sym_string_token1] = ACTIONS(1138), + [anon_sym_LT_LT_LT] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym_boolean] = ACTIONS(1140), + [sym_null] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1138), + [aux_sym_yield_expression_token1] = ACTIONS(1140), + [aux_sym_include_expression_token1] = ACTIONS(1140), + [aux_sym_include_once_expression_token1] = ACTIONS(1140), + [aux_sym_require_expression_token1] = ACTIONS(1140), + [aux_sym_require_once_expression_token1] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_name] = ACTIONS(1144), + [anon_sym_QMARK_GT] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1142), + [aux_sym_function_static_declaration_token1] = ACTIONS(1144), + [aux_sym_global_declaration_token1] = ACTIONS(1144), + [aux_sym_namespace_definition_token1] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1144), + [anon_sym_BSLASH] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [aux_sym_trait_declaration_token1] = ACTIONS(1144), + [aux_sym_interface_declaration_token1] = ACTIONS(1144), + [aux_sym_enum_declaration_token1] = ACTIONS(1144), + [aux_sym_enum_case_token1] = ACTIONS(1144), + [aux_sym_class_declaration_token1] = ACTIONS(1144), + [aux_sym_final_modifier_token1] = ACTIONS(1144), + [aux_sym_abstract_modifier_token1] = ACTIONS(1144), + [aux_sym_readonly_modifier_token1] = ACTIONS(1144), + [aux_sym_visibility_modifier_token1] = ACTIONS(1144), + [aux_sym_visibility_modifier_token2] = ACTIONS(1144), + [aux_sym_visibility_modifier_token3] = ACTIONS(1144), + [aux_sym__arrow_function_header_token1] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1142), + [aux_sym_cast_type_token1] = ACTIONS(1144), + [aux_sym_echo_statement_token1] = ACTIONS(1144), + [anon_sym_unset] = ACTIONS(1144), + [aux_sym_declare_statement_token1] = ACTIONS(1144), + [aux_sym_declare_statement_token2] = ACTIONS(1144), + [sym_float] = ACTIONS(1144), + [aux_sym_try_statement_token1] = ACTIONS(1144), + [aux_sym_goto_statement_token1] = ACTIONS(1144), + [aux_sym_continue_statement_token1] = ACTIONS(1144), + [aux_sym_break_statement_token1] = ACTIONS(1144), + [sym_integer] = ACTIONS(1144), + [aux_sym_return_statement_token1] = ACTIONS(1144), + [aux_sym_throw_expression_token1] = ACTIONS(1144), + [aux_sym_while_statement_token1] = ACTIONS(1144), + [aux_sym_while_statement_token2] = ACTIONS(1144), + [aux_sym_do_statement_token1] = ACTIONS(1144), + [aux_sym_for_statement_token1] = ACTIONS(1144), + [aux_sym_for_statement_token2] = ACTIONS(1144), + [aux_sym_foreach_statement_token1] = ACTIONS(1144), + [aux_sym_foreach_statement_token2] = ACTIONS(1144), + [aux_sym_if_statement_token1] = ACTIONS(1144), + [aux_sym_if_statement_token2] = ACTIONS(1144), + [aux_sym_else_if_clause_token1] = ACTIONS(1144), + [aux_sym_else_clause_token1] = ACTIONS(1144), + [aux_sym_match_expression_token1] = ACTIONS(1144), + [aux_sym_match_default_expression_token1] = ACTIONS(1144), + [aux_sym_switch_statement_token1] = ACTIONS(1144), + [aux_sym_switch_block_token1] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [aux_sym_clone_expression_token1] = ACTIONS(1144), + [aux_sym_print_intrinsic_token1] = ACTIONS(1144), + [aux_sym_object_creation_expression_token1] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1142), + [aux_sym__list_destructing_token1] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_self] = ACTIONS(1144), + [anon_sym_parent] = ACTIONS(1144), + [anon_sym_POUND_LBRACK] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(1142), + [aux_sym_encapsed_string_token1] = ACTIONS(1142), + [anon_sym_DQUOTE] = ACTIONS(1142), + [aux_sym_string_token1] = ACTIONS(1142), + [anon_sym_LT_LT_LT] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(1142), + [sym_boolean] = ACTIONS(1144), + [sym_null] = ACTIONS(1144), + [anon_sym_DOLLAR] = ACTIONS(1142), + [aux_sym_yield_expression_token1] = ACTIONS(1144), + [aux_sym_include_expression_token1] = ACTIONS(1144), + [aux_sym_include_once_expression_token1] = ACTIONS(1144), + [aux_sym_require_expression_token1] = ACTIONS(1144), + [aux_sym_require_once_expression_token1] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + }, + [468] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_name] = ACTIONS(1148), + [anon_sym_QMARK_GT] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1148), + [aux_sym_global_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_definition_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [aux_sym_trait_declaration_token1] = ACTIONS(1148), + [aux_sym_interface_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_case_token1] = ACTIONS(1148), + [aux_sym_class_declaration_token1] = ACTIONS(1148), + [aux_sym_final_modifier_token1] = ACTIONS(1148), + [aux_sym_abstract_modifier_token1] = ACTIONS(1148), + [aux_sym_readonly_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token2] = ACTIONS(1148), + [aux_sym_visibility_modifier_token3] = ACTIONS(1148), + [aux_sym__arrow_function_header_token1] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [aux_sym_cast_type_token1] = ACTIONS(1148), + [aux_sym_echo_statement_token1] = ACTIONS(1148), + [anon_sym_unset] = ACTIONS(1148), + [aux_sym_declare_statement_token1] = ACTIONS(1148), + [aux_sym_declare_statement_token2] = ACTIONS(1148), + [sym_float] = ACTIONS(1148), + [aux_sym_try_statement_token1] = ACTIONS(1148), + [aux_sym_goto_statement_token1] = ACTIONS(1148), + [aux_sym_continue_statement_token1] = ACTIONS(1148), + [aux_sym_break_statement_token1] = ACTIONS(1148), + [sym_integer] = ACTIONS(1148), + [aux_sym_return_statement_token1] = ACTIONS(1148), + [aux_sym_throw_expression_token1] = ACTIONS(1148), + [aux_sym_while_statement_token1] = ACTIONS(1148), + [aux_sym_while_statement_token2] = ACTIONS(1148), + [aux_sym_do_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token2] = ACTIONS(1148), + [aux_sym_foreach_statement_token1] = ACTIONS(1148), + [aux_sym_foreach_statement_token2] = ACTIONS(1148), + [aux_sym_if_statement_token1] = ACTIONS(1148), + [aux_sym_if_statement_token2] = ACTIONS(1148), + [aux_sym_else_if_clause_token1] = ACTIONS(1148), + [aux_sym_else_clause_token1] = ACTIONS(1148), + [aux_sym_match_expression_token1] = ACTIONS(1148), + [aux_sym_match_default_expression_token1] = ACTIONS(1148), + [aux_sym_switch_statement_token1] = ACTIONS(1148), + [aux_sym_switch_block_token1] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [aux_sym_clone_expression_token1] = ACTIONS(1148), + [aux_sym_print_intrinsic_token1] = ACTIONS(1148), + [aux_sym_object_creation_expression_token1] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [aux_sym__list_destructing_token1] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_self] = ACTIONS(1148), + [anon_sym_parent] = ACTIONS(1148), + [anon_sym_POUND_LBRACK] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [aux_sym_encapsed_string_token1] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_boolean] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1146), + [aux_sym_yield_expression_token1] = ACTIONS(1148), + [aux_sym_include_expression_token1] = ACTIONS(1148), + [aux_sym_include_once_expression_token1] = ACTIONS(1148), + [aux_sym_require_expression_token1] = ACTIONS(1148), + [aux_sym_require_once_expression_token1] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_name] = ACTIONS(1148), + [anon_sym_QMARK_GT] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1148), + [aux_sym_global_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_definition_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1148), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1148), + [anon_sym_BSLASH] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [aux_sym_trait_declaration_token1] = ACTIONS(1148), + [aux_sym_interface_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_declaration_token1] = ACTIONS(1148), + [aux_sym_enum_case_token1] = ACTIONS(1148), + [aux_sym_class_declaration_token1] = ACTIONS(1148), + [aux_sym_final_modifier_token1] = ACTIONS(1148), + [aux_sym_abstract_modifier_token1] = ACTIONS(1148), + [aux_sym_readonly_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token1] = ACTIONS(1148), + [aux_sym_visibility_modifier_token2] = ACTIONS(1148), + [aux_sym_visibility_modifier_token3] = ACTIONS(1148), + [aux_sym__arrow_function_header_token1] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [aux_sym_cast_type_token1] = ACTIONS(1148), + [aux_sym_echo_statement_token1] = ACTIONS(1148), + [anon_sym_unset] = ACTIONS(1148), + [aux_sym_declare_statement_token1] = ACTIONS(1148), + [aux_sym_declare_statement_token2] = ACTIONS(1148), + [sym_float] = ACTIONS(1148), + [aux_sym_try_statement_token1] = ACTIONS(1148), + [aux_sym_goto_statement_token1] = ACTIONS(1148), + [aux_sym_continue_statement_token1] = ACTIONS(1148), + [aux_sym_break_statement_token1] = ACTIONS(1148), + [sym_integer] = ACTIONS(1148), + [aux_sym_return_statement_token1] = ACTIONS(1148), + [aux_sym_throw_expression_token1] = ACTIONS(1148), + [aux_sym_while_statement_token1] = ACTIONS(1148), + [aux_sym_while_statement_token2] = ACTIONS(1148), + [aux_sym_do_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token1] = ACTIONS(1148), + [aux_sym_for_statement_token2] = ACTIONS(1148), + [aux_sym_foreach_statement_token1] = ACTIONS(1148), + [aux_sym_foreach_statement_token2] = ACTIONS(1148), + [aux_sym_if_statement_token1] = ACTIONS(1148), + [aux_sym_if_statement_token2] = ACTIONS(1148), + [aux_sym_else_if_clause_token1] = ACTIONS(1148), + [aux_sym_else_clause_token1] = ACTIONS(1148), + [aux_sym_match_expression_token1] = ACTIONS(1148), + [aux_sym_match_default_expression_token1] = ACTIONS(1148), + [aux_sym_switch_statement_token1] = ACTIONS(1148), + [aux_sym_switch_block_token1] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [aux_sym_clone_expression_token1] = ACTIONS(1148), + [aux_sym_print_intrinsic_token1] = ACTIONS(1148), + [aux_sym_object_creation_expression_token1] = ACTIONS(1148), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [aux_sym__list_destructing_token1] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_self] = ACTIONS(1148), + [anon_sym_parent] = ACTIONS(1148), + [anon_sym_POUND_LBRACK] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [aux_sym_encapsed_string_token1] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_boolean] = ACTIONS(1148), + [sym_null] = ACTIONS(1148), + [anon_sym_DOLLAR] = ACTIONS(1146), + [aux_sym_yield_expression_token1] = ACTIONS(1148), + [aux_sym_include_expression_token1] = ACTIONS(1148), + [aux_sym_include_once_expression_token1] = ACTIONS(1148), + [aux_sym_require_expression_token1] = ACTIONS(1148), + [aux_sym_require_once_expression_token1] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_name] = ACTIONS(1152), + [anon_sym_QMARK_GT] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1150), + [aux_sym_function_static_declaration_token1] = ACTIONS(1152), + [aux_sym_global_declaration_token1] = ACTIONS(1152), + [aux_sym_namespace_definition_token1] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1152), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1152), + [anon_sym_BSLASH] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [aux_sym_trait_declaration_token1] = ACTIONS(1152), + [aux_sym_interface_declaration_token1] = ACTIONS(1152), + [aux_sym_enum_declaration_token1] = ACTIONS(1152), + [aux_sym_enum_case_token1] = ACTIONS(1152), + [aux_sym_class_declaration_token1] = ACTIONS(1152), + [aux_sym_final_modifier_token1] = ACTIONS(1152), + [aux_sym_abstract_modifier_token1] = ACTIONS(1152), + [aux_sym_readonly_modifier_token1] = ACTIONS(1152), + [aux_sym_visibility_modifier_token1] = ACTIONS(1152), + [aux_sym_visibility_modifier_token2] = ACTIONS(1152), + [aux_sym_visibility_modifier_token3] = ACTIONS(1152), + [aux_sym__arrow_function_header_token1] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [aux_sym_cast_type_token1] = ACTIONS(1152), + [aux_sym_echo_statement_token1] = ACTIONS(1152), + [anon_sym_unset] = ACTIONS(1152), + [aux_sym_declare_statement_token1] = ACTIONS(1152), + [aux_sym_declare_statement_token2] = ACTIONS(1152), + [sym_float] = ACTIONS(1152), + [aux_sym_try_statement_token1] = ACTIONS(1152), + [aux_sym_goto_statement_token1] = ACTIONS(1152), + [aux_sym_continue_statement_token1] = ACTIONS(1152), + [aux_sym_break_statement_token1] = ACTIONS(1152), + [sym_integer] = ACTIONS(1152), + [aux_sym_return_statement_token1] = ACTIONS(1152), + [aux_sym_throw_expression_token1] = ACTIONS(1152), + [aux_sym_while_statement_token1] = ACTIONS(1152), + [aux_sym_while_statement_token2] = ACTIONS(1152), + [aux_sym_do_statement_token1] = ACTIONS(1152), + [aux_sym_for_statement_token1] = ACTIONS(1152), + [aux_sym_for_statement_token2] = ACTIONS(1152), + [aux_sym_foreach_statement_token1] = ACTIONS(1152), + [aux_sym_foreach_statement_token2] = ACTIONS(1152), + [aux_sym_if_statement_token1] = ACTIONS(1152), + [aux_sym_if_statement_token2] = ACTIONS(1152), + [aux_sym_else_if_clause_token1] = ACTIONS(1152), + [aux_sym_else_clause_token1] = ACTIONS(1152), + [aux_sym_match_expression_token1] = ACTIONS(1152), + [aux_sym_match_default_expression_token1] = ACTIONS(1152), + [aux_sym_switch_statement_token1] = ACTIONS(1152), + [aux_sym_switch_block_token1] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [aux_sym_clone_expression_token1] = ACTIONS(1152), + [aux_sym_print_intrinsic_token1] = ACTIONS(1152), + [aux_sym_object_creation_expression_token1] = ACTIONS(1152), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [aux_sym__list_destructing_token1] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_self] = ACTIONS(1152), + [anon_sym_parent] = ACTIONS(1152), + [anon_sym_POUND_LBRACK] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [aux_sym_encapsed_string_token1] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1150), + [aux_sym_string_token1] = ACTIONS(1150), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_BQUOTE] = ACTIONS(1150), + [sym_boolean] = ACTIONS(1152), + [sym_null] = ACTIONS(1152), + [anon_sym_DOLLAR] = ACTIONS(1150), + [aux_sym_yield_expression_token1] = ACTIONS(1152), + [aux_sym_include_expression_token1] = ACTIONS(1152), + [aux_sym_include_once_expression_token1] = ACTIONS(1152), + [aux_sym_require_expression_token1] = ACTIONS(1152), + [aux_sym_require_once_expression_token1] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_name] = ACTIONS(1156), + [anon_sym_QMARK_GT] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1154), + [aux_sym_function_static_declaration_token1] = ACTIONS(1156), + [aux_sym_global_declaration_token1] = ACTIONS(1156), + [aux_sym_namespace_definition_token1] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1156), + [anon_sym_BSLASH] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [aux_sym_trait_declaration_token1] = ACTIONS(1156), + [aux_sym_interface_declaration_token1] = ACTIONS(1156), + [aux_sym_enum_declaration_token1] = ACTIONS(1156), + [aux_sym_enum_case_token1] = ACTIONS(1156), + [aux_sym_class_declaration_token1] = ACTIONS(1156), + [aux_sym_final_modifier_token1] = ACTIONS(1156), + [aux_sym_abstract_modifier_token1] = ACTIONS(1156), + [aux_sym_readonly_modifier_token1] = ACTIONS(1156), + [aux_sym_visibility_modifier_token1] = ACTIONS(1156), + [aux_sym_visibility_modifier_token2] = ACTIONS(1156), + [aux_sym_visibility_modifier_token3] = ACTIONS(1156), + [aux_sym__arrow_function_header_token1] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [aux_sym_cast_type_token1] = ACTIONS(1156), + [aux_sym_echo_statement_token1] = ACTIONS(1156), + [anon_sym_unset] = ACTIONS(1156), + [aux_sym_declare_statement_token1] = ACTIONS(1156), + [aux_sym_declare_statement_token2] = ACTIONS(1156), + [sym_float] = ACTIONS(1156), + [aux_sym_try_statement_token1] = ACTIONS(1156), + [aux_sym_goto_statement_token1] = ACTIONS(1156), + [aux_sym_continue_statement_token1] = ACTIONS(1156), + [aux_sym_break_statement_token1] = ACTIONS(1156), + [sym_integer] = ACTIONS(1156), + [aux_sym_return_statement_token1] = ACTIONS(1156), + [aux_sym_throw_expression_token1] = ACTIONS(1156), + [aux_sym_while_statement_token1] = ACTIONS(1156), + [aux_sym_while_statement_token2] = ACTIONS(1156), + [aux_sym_do_statement_token1] = ACTIONS(1156), + [aux_sym_for_statement_token1] = ACTIONS(1156), + [aux_sym_for_statement_token2] = ACTIONS(1156), + [aux_sym_foreach_statement_token1] = ACTIONS(1156), + [aux_sym_foreach_statement_token2] = ACTIONS(1156), + [aux_sym_if_statement_token1] = ACTIONS(1156), + [aux_sym_if_statement_token2] = ACTIONS(1156), + [aux_sym_else_if_clause_token1] = ACTIONS(1156), + [aux_sym_else_clause_token1] = ACTIONS(1156), + [aux_sym_match_expression_token1] = ACTIONS(1156), + [aux_sym_match_default_expression_token1] = ACTIONS(1156), + [aux_sym_switch_statement_token1] = ACTIONS(1156), + [aux_sym_switch_block_token1] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [aux_sym_clone_expression_token1] = ACTIONS(1156), + [aux_sym_print_intrinsic_token1] = ACTIONS(1156), + [aux_sym_object_creation_expression_token1] = ACTIONS(1156), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [aux_sym__list_destructing_token1] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_self] = ACTIONS(1156), + [anon_sym_parent] = ACTIONS(1156), + [anon_sym_POUND_LBRACK] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [aux_sym_encapsed_string_token1] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [aux_sym_string_token1] = ACTIONS(1154), + [anon_sym_LT_LT_LT] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1154), + [sym_boolean] = ACTIONS(1156), + [sym_null] = ACTIONS(1156), + [anon_sym_DOLLAR] = ACTIONS(1154), + [aux_sym_yield_expression_token1] = ACTIONS(1156), + [aux_sym_include_expression_token1] = ACTIONS(1156), + [aux_sym_include_once_expression_token1] = ACTIONS(1156), + [aux_sym_require_expression_token1] = ACTIONS(1156), + [aux_sym_require_once_expression_token1] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_name] = ACTIONS(1160), + [anon_sym_QMARK_GT] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1158), + [aux_sym_function_static_declaration_token1] = ACTIONS(1160), + [aux_sym_global_declaration_token1] = ACTIONS(1160), + [aux_sym_namespace_definition_token1] = ACTIONS(1160), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1160), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1160), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1160), + [anon_sym_BSLASH] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [aux_sym_trait_declaration_token1] = ACTIONS(1160), + [aux_sym_interface_declaration_token1] = ACTIONS(1160), + [aux_sym_enum_declaration_token1] = ACTIONS(1160), + [aux_sym_enum_case_token1] = ACTIONS(1160), + [aux_sym_class_declaration_token1] = ACTIONS(1160), + [aux_sym_final_modifier_token1] = ACTIONS(1160), + [aux_sym_abstract_modifier_token1] = ACTIONS(1160), + [aux_sym_readonly_modifier_token1] = ACTIONS(1160), + [aux_sym_visibility_modifier_token1] = ACTIONS(1160), + [aux_sym_visibility_modifier_token2] = ACTIONS(1160), + [aux_sym_visibility_modifier_token3] = ACTIONS(1160), + [aux_sym__arrow_function_header_token1] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [aux_sym_cast_type_token1] = ACTIONS(1160), + [aux_sym_echo_statement_token1] = ACTIONS(1160), + [anon_sym_unset] = ACTIONS(1160), + [aux_sym_declare_statement_token1] = ACTIONS(1160), + [aux_sym_declare_statement_token2] = ACTIONS(1160), + [sym_float] = ACTIONS(1160), + [aux_sym_try_statement_token1] = ACTIONS(1160), + [aux_sym_goto_statement_token1] = ACTIONS(1160), + [aux_sym_continue_statement_token1] = ACTIONS(1160), + [aux_sym_break_statement_token1] = ACTIONS(1160), + [sym_integer] = ACTIONS(1160), + [aux_sym_return_statement_token1] = ACTIONS(1160), + [aux_sym_throw_expression_token1] = ACTIONS(1160), + [aux_sym_while_statement_token1] = ACTIONS(1160), + [aux_sym_while_statement_token2] = ACTIONS(1160), + [aux_sym_do_statement_token1] = ACTIONS(1160), + [aux_sym_for_statement_token1] = ACTIONS(1160), + [aux_sym_for_statement_token2] = ACTIONS(1160), + [aux_sym_foreach_statement_token1] = ACTIONS(1160), + [aux_sym_foreach_statement_token2] = ACTIONS(1160), + [aux_sym_if_statement_token1] = ACTIONS(1160), + [aux_sym_if_statement_token2] = ACTIONS(1160), + [aux_sym_else_if_clause_token1] = ACTIONS(1160), + [aux_sym_else_clause_token1] = ACTIONS(1160), + [aux_sym_match_expression_token1] = ACTIONS(1160), + [aux_sym_match_default_expression_token1] = ACTIONS(1160), + [aux_sym_switch_statement_token1] = ACTIONS(1160), + [aux_sym_switch_block_token1] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [aux_sym_clone_expression_token1] = ACTIONS(1160), + [aux_sym_print_intrinsic_token1] = ACTIONS(1160), + [aux_sym_object_creation_expression_token1] = ACTIONS(1160), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [aux_sym__list_destructing_token1] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_self] = ACTIONS(1160), + [anon_sym_parent] = ACTIONS(1160), + [anon_sym_POUND_LBRACK] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [aux_sym_encapsed_string_token1] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1158), + [aux_sym_string_token1] = ACTIONS(1158), + [anon_sym_LT_LT_LT] = ACTIONS(1158), + [anon_sym_BQUOTE] = ACTIONS(1158), + [sym_boolean] = ACTIONS(1160), + [sym_null] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1158), + [aux_sym_yield_expression_token1] = ACTIONS(1160), + [aux_sym_include_expression_token1] = ACTIONS(1160), + [aux_sym_include_once_expression_token1] = ACTIONS(1160), + [aux_sym_require_expression_token1] = ACTIONS(1160), + [aux_sym_require_once_expression_token1] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_name] = ACTIONS(1164), + [anon_sym_QMARK_GT] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1162), + [aux_sym_function_static_declaration_token1] = ACTIONS(1164), + [aux_sym_global_declaration_token1] = ACTIONS(1164), + [aux_sym_namespace_definition_token1] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1164), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1164), + [anon_sym_BSLASH] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [aux_sym_trait_declaration_token1] = ACTIONS(1164), + [aux_sym_interface_declaration_token1] = ACTIONS(1164), + [aux_sym_enum_declaration_token1] = ACTIONS(1164), + [aux_sym_enum_case_token1] = ACTIONS(1164), + [aux_sym_class_declaration_token1] = ACTIONS(1164), + [aux_sym_final_modifier_token1] = ACTIONS(1164), + [aux_sym_abstract_modifier_token1] = ACTIONS(1164), + [aux_sym_readonly_modifier_token1] = ACTIONS(1164), + [aux_sym_visibility_modifier_token1] = ACTIONS(1164), + [aux_sym_visibility_modifier_token2] = ACTIONS(1164), + [aux_sym_visibility_modifier_token3] = ACTIONS(1164), + [aux_sym__arrow_function_header_token1] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1162), + [aux_sym_cast_type_token1] = ACTIONS(1164), + [aux_sym_echo_statement_token1] = ACTIONS(1164), + [anon_sym_unset] = ACTIONS(1164), + [aux_sym_declare_statement_token1] = ACTIONS(1164), + [aux_sym_declare_statement_token2] = ACTIONS(1164), + [sym_float] = ACTIONS(1164), + [aux_sym_try_statement_token1] = ACTIONS(1164), + [aux_sym_goto_statement_token1] = ACTIONS(1164), + [aux_sym_continue_statement_token1] = ACTIONS(1164), + [aux_sym_break_statement_token1] = ACTIONS(1164), + [sym_integer] = ACTIONS(1164), + [aux_sym_return_statement_token1] = ACTIONS(1164), + [aux_sym_throw_expression_token1] = ACTIONS(1164), + [aux_sym_while_statement_token1] = ACTIONS(1164), + [aux_sym_while_statement_token2] = ACTIONS(1164), + [aux_sym_do_statement_token1] = ACTIONS(1164), + [aux_sym_for_statement_token1] = ACTIONS(1164), + [aux_sym_for_statement_token2] = ACTIONS(1164), + [aux_sym_foreach_statement_token1] = ACTIONS(1164), + [aux_sym_foreach_statement_token2] = ACTIONS(1164), + [aux_sym_if_statement_token1] = ACTIONS(1164), + [aux_sym_if_statement_token2] = ACTIONS(1164), + [aux_sym_else_if_clause_token1] = ACTIONS(1164), + [aux_sym_else_clause_token1] = ACTIONS(1164), + [aux_sym_match_expression_token1] = ACTIONS(1164), + [aux_sym_match_default_expression_token1] = ACTIONS(1164), + [aux_sym_switch_statement_token1] = ACTIONS(1164), + [aux_sym_switch_block_token1] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [aux_sym_clone_expression_token1] = ACTIONS(1164), + [aux_sym_print_intrinsic_token1] = ACTIONS(1164), + [aux_sym_object_creation_expression_token1] = ACTIONS(1164), + [anon_sym_PLUS_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1162), + [aux_sym__list_destructing_token1] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_self] = ACTIONS(1164), + [anon_sym_parent] = ACTIONS(1164), + [anon_sym_POUND_LBRACK] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1162), + [aux_sym_encapsed_string_token1] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1162), + [aux_sym_string_token1] = ACTIONS(1162), + [anon_sym_LT_LT_LT] = ACTIONS(1162), + [anon_sym_BQUOTE] = ACTIONS(1162), + [sym_boolean] = ACTIONS(1164), + [sym_null] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1162), + [aux_sym_yield_expression_token1] = ACTIONS(1164), + [aux_sym_include_expression_token1] = ACTIONS(1164), + [aux_sym_include_once_expression_token1] = ACTIONS(1164), + [aux_sym_require_expression_token1] = ACTIONS(1164), + [aux_sym_require_once_expression_token1] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_name] = ACTIONS(1168), + [anon_sym_QMARK_GT] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1166), + [aux_sym_function_static_declaration_token1] = ACTIONS(1168), + [aux_sym_global_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_definition_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1168), + [anon_sym_BSLASH] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [aux_sym_trait_declaration_token1] = ACTIONS(1168), + [aux_sym_interface_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_case_token1] = ACTIONS(1168), + [aux_sym_class_declaration_token1] = ACTIONS(1168), + [aux_sym_final_modifier_token1] = ACTIONS(1168), + [aux_sym_abstract_modifier_token1] = ACTIONS(1168), + [aux_sym_readonly_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token2] = ACTIONS(1168), + [aux_sym_visibility_modifier_token3] = ACTIONS(1168), + [aux_sym__arrow_function_header_token1] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [aux_sym_cast_type_token1] = ACTIONS(1168), + [aux_sym_echo_statement_token1] = ACTIONS(1168), + [anon_sym_unset] = ACTIONS(1168), + [aux_sym_declare_statement_token1] = ACTIONS(1168), + [aux_sym_declare_statement_token2] = ACTIONS(1168), + [sym_float] = ACTIONS(1168), + [aux_sym_try_statement_token1] = ACTIONS(1168), + [aux_sym_goto_statement_token1] = ACTIONS(1168), + [aux_sym_continue_statement_token1] = ACTIONS(1168), + [aux_sym_break_statement_token1] = ACTIONS(1168), + [sym_integer] = ACTIONS(1168), + [aux_sym_return_statement_token1] = ACTIONS(1168), + [aux_sym_throw_expression_token1] = ACTIONS(1168), + [aux_sym_while_statement_token1] = ACTIONS(1168), + [aux_sym_while_statement_token2] = ACTIONS(1168), + [aux_sym_do_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token2] = ACTIONS(1168), + [aux_sym_foreach_statement_token1] = ACTIONS(1168), + [aux_sym_foreach_statement_token2] = ACTIONS(1168), + [aux_sym_if_statement_token1] = ACTIONS(1168), + [aux_sym_if_statement_token2] = ACTIONS(1168), + [aux_sym_else_if_clause_token1] = ACTIONS(1168), + [aux_sym_else_clause_token1] = ACTIONS(1168), + [aux_sym_match_expression_token1] = ACTIONS(1168), + [aux_sym_match_default_expression_token1] = ACTIONS(1168), + [aux_sym_switch_statement_token1] = ACTIONS(1168), + [aux_sym_switch_block_token1] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [aux_sym_clone_expression_token1] = ACTIONS(1168), + [aux_sym_print_intrinsic_token1] = ACTIONS(1168), + [aux_sym_object_creation_expression_token1] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [aux_sym__list_destructing_token1] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_self] = ACTIONS(1168), + [anon_sym_parent] = ACTIONS(1168), + [anon_sym_POUND_LBRACK] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1166), + [aux_sym_encapsed_string_token1] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1166), + [aux_sym_string_token1] = ACTIONS(1166), + [anon_sym_LT_LT_LT] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1166), + [sym_boolean] = ACTIONS(1168), + [sym_null] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1166), + [aux_sym_yield_expression_token1] = ACTIONS(1168), + [aux_sym_include_expression_token1] = ACTIONS(1168), + [aux_sym_include_once_expression_token1] = ACTIONS(1168), + [aux_sym_require_expression_token1] = ACTIONS(1168), + [aux_sym_require_once_expression_token1] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_name] = ACTIONS(1172), + [anon_sym_QMARK_GT] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1170), + [aux_sym_function_static_declaration_token1] = ACTIONS(1172), + [aux_sym_global_declaration_token1] = ACTIONS(1172), + [aux_sym_namespace_definition_token1] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1172), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1172), + [anon_sym_BSLASH] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [aux_sym_trait_declaration_token1] = ACTIONS(1172), + [aux_sym_interface_declaration_token1] = ACTIONS(1172), + [aux_sym_enum_declaration_token1] = ACTIONS(1172), + [aux_sym_enum_case_token1] = ACTIONS(1172), + [aux_sym_class_declaration_token1] = ACTIONS(1172), + [aux_sym_final_modifier_token1] = ACTIONS(1172), + [aux_sym_abstract_modifier_token1] = ACTIONS(1172), + [aux_sym_readonly_modifier_token1] = ACTIONS(1172), + [aux_sym_visibility_modifier_token1] = ACTIONS(1172), + [aux_sym_visibility_modifier_token2] = ACTIONS(1172), + [aux_sym_visibility_modifier_token3] = ACTIONS(1172), + [aux_sym__arrow_function_header_token1] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [aux_sym_cast_type_token1] = ACTIONS(1172), + [aux_sym_echo_statement_token1] = ACTIONS(1172), + [anon_sym_unset] = ACTIONS(1172), + [aux_sym_declare_statement_token1] = ACTIONS(1172), + [aux_sym_declare_statement_token2] = ACTIONS(1172), + [sym_float] = ACTIONS(1172), + [aux_sym_try_statement_token1] = ACTIONS(1172), + [aux_sym_goto_statement_token1] = ACTIONS(1172), + [aux_sym_continue_statement_token1] = ACTIONS(1172), + [aux_sym_break_statement_token1] = ACTIONS(1172), + [sym_integer] = ACTIONS(1172), + [aux_sym_return_statement_token1] = ACTIONS(1172), + [aux_sym_throw_expression_token1] = ACTIONS(1172), + [aux_sym_while_statement_token1] = ACTIONS(1172), + [aux_sym_while_statement_token2] = ACTIONS(1172), + [aux_sym_do_statement_token1] = ACTIONS(1172), + [aux_sym_for_statement_token1] = ACTIONS(1172), + [aux_sym_for_statement_token2] = ACTIONS(1172), + [aux_sym_foreach_statement_token1] = ACTIONS(1172), + [aux_sym_foreach_statement_token2] = ACTIONS(1172), + [aux_sym_if_statement_token1] = ACTIONS(1172), + [aux_sym_if_statement_token2] = ACTIONS(1172), + [aux_sym_else_if_clause_token1] = ACTIONS(1172), + [aux_sym_else_clause_token1] = ACTIONS(1172), + [aux_sym_match_expression_token1] = ACTIONS(1172), + [aux_sym_match_default_expression_token1] = ACTIONS(1172), + [aux_sym_switch_statement_token1] = ACTIONS(1172), + [aux_sym_switch_block_token1] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [aux_sym_clone_expression_token1] = ACTIONS(1172), + [aux_sym_print_intrinsic_token1] = ACTIONS(1172), + [aux_sym_object_creation_expression_token1] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [aux_sym__list_destructing_token1] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_self] = ACTIONS(1172), + [anon_sym_parent] = ACTIONS(1172), + [anon_sym_POUND_LBRACK] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1170), + [aux_sym_encapsed_string_token1] = ACTIONS(1170), + [anon_sym_DQUOTE] = ACTIONS(1170), + [aux_sym_string_token1] = ACTIONS(1170), + [anon_sym_LT_LT_LT] = ACTIONS(1170), + [anon_sym_BQUOTE] = ACTIONS(1170), + [sym_boolean] = ACTIONS(1172), + [sym_null] = ACTIONS(1172), + [anon_sym_DOLLAR] = ACTIONS(1170), + [aux_sym_yield_expression_token1] = ACTIONS(1172), + [aux_sym_include_expression_token1] = ACTIONS(1172), + [aux_sym_include_once_expression_token1] = ACTIONS(1172), + [aux_sym_require_expression_token1] = ACTIONS(1172), + [aux_sym_require_once_expression_token1] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_name] = ACTIONS(1176), + [anon_sym_QMARK_GT] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1174), + [aux_sym_function_static_declaration_token1] = ACTIONS(1176), + [aux_sym_global_declaration_token1] = ACTIONS(1176), + [aux_sym_namespace_definition_token1] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1176), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1176), + [anon_sym_BSLASH] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [aux_sym_trait_declaration_token1] = ACTIONS(1176), + [aux_sym_interface_declaration_token1] = ACTIONS(1176), + [aux_sym_enum_declaration_token1] = ACTIONS(1176), + [aux_sym_enum_case_token1] = ACTIONS(1176), + [aux_sym_class_declaration_token1] = ACTIONS(1176), + [aux_sym_final_modifier_token1] = ACTIONS(1176), + [aux_sym_abstract_modifier_token1] = ACTIONS(1176), + [aux_sym_readonly_modifier_token1] = ACTIONS(1176), + [aux_sym_visibility_modifier_token1] = ACTIONS(1176), + [aux_sym_visibility_modifier_token2] = ACTIONS(1176), + [aux_sym_visibility_modifier_token3] = ACTIONS(1176), + [aux_sym__arrow_function_header_token1] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [aux_sym_cast_type_token1] = ACTIONS(1176), + [aux_sym_echo_statement_token1] = ACTIONS(1176), + [anon_sym_unset] = ACTIONS(1176), + [aux_sym_declare_statement_token1] = ACTIONS(1176), + [aux_sym_declare_statement_token2] = ACTIONS(1176), + [sym_float] = ACTIONS(1176), + [aux_sym_try_statement_token1] = ACTIONS(1176), + [aux_sym_goto_statement_token1] = ACTIONS(1176), + [aux_sym_continue_statement_token1] = ACTIONS(1176), + [aux_sym_break_statement_token1] = ACTIONS(1176), + [sym_integer] = ACTIONS(1176), + [aux_sym_return_statement_token1] = ACTIONS(1176), + [aux_sym_throw_expression_token1] = ACTIONS(1176), + [aux_sym_while_statement_token1] = ACTIONS(1176), + [aux_sym_while_statement_token2] = ACTIONS(1176), + [aux_sym_do_statement_token1] = ACTIONS(1176), + [aux_sym_for_statement_token1] = ACTIONS(1176), + [aux_sym_for_statement_token2] = ACTIONS(1176), + [aux_sym_foreach_statement_token1] = ACTIONS(1176), + [aux_sym_foreach_statement_token2] = ACTIONS(1176), + [aux_sym_if_statement_token1] = ACTIONS(1176), + [aux_sym_if_statement_token2] = ACTIONS(1176), + [aux_sym_else_if_clause_token1] = ACTIONS(1176), + [aux_sym_else_clause_token1] = ACTIONS(1176), + [aux_sym_match_expression_token1] = ACTIONS(1176), + [aux_sym_match_default_expression_token1] = ACTIONS(1176), + [aux_sym_switch_statement_token1] = ACTIONS(1176), + [aux_sym_switch_block_token1] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [aux_sym_clone_expression_token1] = ACTIONS(1176), + [aux_sym_print_intrinsic_token1] = ACTIONS(1176), + [aux_sym_object_creation_expression_token1] = ACTIONS(1176), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [aux_sym__list_destructing_token1] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_self] = ACTIONS(1176), + [anon_sym_parent] = ACTIONS(1176), + [anon_sym_POUND_LBRACK] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [aux_sym_encapsed_string_token1] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1174), + [aux_sym_string_token1] = ACTIONS(1174), + [anon_sym_LT_LT_LT] = ACTIONS(1174), + [anon_sym_BQUOTE] = ACTIONS(1174), + [sym_boolean] = ACTIONS(1176), + [sym_null] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1174), + [aux_sym_yield_expression_token1] = ACTIONS(1176), + [aux_sym_include_expression_token1] = ACTIONS(1176), + [aux_sym_include_once_expression_token1] = ACTIONS(1176), + [aux_sym_require_expression_token1] = ACTIONS(1176), + [aux_sym_require_once_expression_token1] = ACTIONS(1176), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_name] = ACTIONS(1180), + [anon_sym_QMARK_GT] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [aux_sym_function_static_declaration_token1] = ACTIONS(1180), + [aux_sym_global_declaration_token1] = ACTIONS(1180), + [aux_sym_namespace_definition_token1] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1180), + [anon_sym_BSLASH] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [aux_sym_trait_declaration_token1] = ACTIONS(1180), + [aux_sym_interface_declaration_token1] = ACTIONS(1180), + [aux_sym_enum_declaration_token1] = ACTIONS(1180), + [aux_sym_enum_case_token1] = ACTIONS(1180), + [aux_sym_class_declaration_token1] = ACTIONS(1180), + [aux_sym_final_modifier_token1] = ACTIONS(1180), + [aux_sym_abstract_modifier_token1] = ACTIONS(1180), + [aux_sym_readonly_modifier_token1] = ACTIONS(1180), + [aux_sym_visibility_modifier_token1] = ACTIONS(1180), + [aux_sym_visibility_modifier_token2] = ACTIONS(1180), + [aux_sym_visibility_modifier_token3] = ACTIONS(1180), + [aux_sym__arrow_function_header_token1] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [aux_sym_cast_type_token1] = ACTIONS(1180), + [aux_sym_echo_statement_token1] = ACTIONS(1180), + [anon_sym_unset] = ACTIONS(1180), + [aux_sym_declare_statement_token1] = ACTIONS(1180), + [aux_sym_declare_statement_token2] = ACTIONS(1180), + [sym_float] = ACTIONS(1180), + [aux_sym_try_statement_token1] = ACTIONS(1180), + [aux_sym_goto_statement_token1] = ACTIONS(1180), + [aux_sym_continue_statement_token1] = ACTIONS(1180), + [aux_sym_break_statement_token1] = ACTIONS(1180), + [sym_integer] = ACTIONS(1180), + [aux_sym_return_statement_token1] = ACTIONS(1180), + [aux_sym_throw_expression_token1] = ACTIONS(1180), + [aux_sym_while_statement_token1] = ACTIONS(1180), + [aux_sym_while_statement_token2] = ACTIONS(1180), + [aux_sym_do_statement_token1] = ACTIONS(1180), + [aux_sym_for_statement_token1] = ACTIONS(1180), + [aux_sym_for_statement_token2] = ACTIONS(1180), + [aux_sym_foreach_statement_token1] = ACTIONS(1180), + [aux_sym_foreach_statement_token2] = ACTIONS(1180), + [aux_sym_if_statement_token1] = ACTIONS(1180), + [aux_sym_if_statement_token2] = ACTIONS(1180), + [aux_sym_else_if_clause_token1] = ACTIONS(1180), + [aux_sym_else_clause_token1] = ACTIONS(1180), + [aux_sym_match_expression_token1] = ACTIONS(1180), + [aux_sym_match_default_expression_token1] = ACTIONS(1180), + [aux_sym_switch_statement_token1] = ACTIONS(1180), + [aux_sym_switch_block_token1] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [aux_sym_clone_expression_token1] = ACTIONS(1180), + [aux_sym_print_intrinsic_token1] = ACTIONS(1180), + [aux_sym_object_creation_expression_token1] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [aux_sym__list_destructing_token1] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_self] = ACTIONS(1180), + [anon_sym_parent] = ACTIONS(1180), + [anon_sym_POUND_LBRACK] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [aux_sym_encapsed_string_token1] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [aux_sym_string_token1] = ACTIONS(1178), + [anon_sym_LT_LT_LT] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1178), + [sym_boolean] = ACTIONS(1180), + [sym_null] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1178), + [aux_sym_yield_expression_token1] = ACTIONS(1180), + [aux_sym_include_expression_token1] = ACTIONS(1180), + [aux_sym_include_once_expression_token1] = ACTIONS(1180), + [aux_sym_require_expression_token1] = ACTIONS(1180), + [aux_sym_require_once_expression_token1] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_name] = ACTIONS(1184), + [anon_sym_QMARK_GT] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1182), + [aux_sym_function_static_declaration_token1] = ACTIONS(1184), + [aux_sym_global_declaration_token1] = ACTIONS(1184), + [aux_sym_namespace_definition_token1] = ACTIONS(1184), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1184), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1184), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1184), + [anon_sym_BSLASH] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [aux_sym_trait_declaration_token1] = ACTIONS(1184), + [aux_sym_interface_declaration_token1] = ACTIONS(1184), + [aux_sym_enum_declaration_token1] = ACTIONS(1184), + [aux_sym_enum_case_token1] = ACTIONS(1184), + [aux_sym_class_declaration_token1] = ACTIONS(1184), + [aux_sym_final_modifier_token1] = ACTIONS(1184), + [aux_sym_abstract_modifier_token1] = ACTIONS(1184), + [aux_sym_readonly_modifier_token1] = ACTIONS(1184), + [aux_sym_visibility_modifier_token1] = ACTIONS(1184), + [aux_sym_visibility_modifier_token2] = ACTIONS(1184), + [aux_sym_visibility_modifier_token3] = ACTIONS(1184), + [aux_sym__arrow_function_header_token1] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1182), + [aux_sym_cast_type_token1] = ACTIONS(1184), + [aux_sym_echo_statement_token1] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1184), + [aux_sym_declare_statement_token1] = ACTIONS(1184), + [aux_sym_declare_statement_token2] = ACTIONS(1184), + [sym_float] = ACTIONS(1184), + [aux_sym_try_statement_token1] = ACTIONS(1184), + [aux_sym_goto_statement_token1] = ACTIONS(1184), + [aux_sym_continue_statement_token1] = ACTIONS(1184), + [aux_sym_break_statement_token1] = ACTIONS(1184), + [sym_integer] = ACTIONS(1184), + [aux_sym_return_statement_token1] = ACTIONS(1184), + [aux_sym_throw_expression_token1] = ACTIONS(1184), + [aux_sym_while_statement_token1] = ACTIONS(1184), + [aux_sym_while_statement_token2] = ACTIONS(1184), + [aux_sym_do_statement_token1] = ACTIONS(1184), + [aux_sym_for_statement_token1] = ACTIONS(1184), + [aux_sym_for_statement_token2] = ACTIONS(1184), + [aux_sym_foreach_statement_token1] = ACTIONS(1184), + [aux_sym_foreach_statement_token2] = ACTIONS(1184), + [aux_sym_if_statement_token1] = ACTIONS(1184), + [aux_sym_if_statement_token2] = ACTIONS(1184), + [aux_sym_else_if_clause_token1] = ACTIONS(1184), + [aux_sym_else_clause_token1] = ACTIONS(1184), + [aux_sym_match_expression_token1] = ACTIONS(1184), + [aux_sym_match_default_expression_token1] = ACTIONS(1184), + [aux_sym_switch_statement_token1] = ACTIONS(1184), + [aux_sym_switch_block_token1] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [aux_sym_clone_expression_token1] = ACTIONS(1184), + [aux_sym_print_intrinsic_token1] = ACTIONS(1184), + [aux_sym_object_creation_expression_token1] = ACTIONS(1184), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [aux_sym__list_destructing_token1] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_self] = ACTIONS(1184), + [anon_sym_parent] = ACTIONS(1184), + [anon_sym_POUND_LBRACK] = ACTIONS(1182), + [anon_sym_SQUOTE] = ACTIONS(1182), + [aux_sym_encapsed_string_token1] = ACTIONS(1182), + [anon_sym_DQUOTE] = ACTIONS(1182), + [aux_sym_string_token1] = ACTIONS(1182), + [anon_sym_LT_LT_LT] = ACTIONS(1182), + [anon_sym_BQUOTE] = ACTIONS(1182), + [sym_boolean] = ACTIONS(1184), + [sym_null] = ACTIONS(1184), + [anon_sym_DOLLAR] = ACTIONS(1182), + [aux_sym_yield_expression_token1] = ACTIONS(1184), + [aux_sym_include_expression_token1] = ACTIONS(1184), + [aux_sym_include_once_expression_token1] = ACTIONS(1184), + [aux_sym_require_expression_token1] = ACTIONS(1184), + [aux_sym_require_once_expression_token1] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_name] = ACTIONS(1188), + [anon_sym_QMARK_GT] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1186), + [aux_sym_function_static_declaration_token1] = ACTIONS(1188), + [aux_sym_global_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_definition_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1188), + [anon_sym_BSLASH] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [aux_sym_trait_declaration_token1] = ACTIONS(1188), + [aux_sym_interface_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_case_token1] = ACTIONS(1188), + [aux_sym_class_declaration_token1] = ACTIONS(1188), + [aux_sym_final_modifier_token1] = ACTIONS(1188), + [aux_sym_abstract_modifier_token1] = ACTIONS(1188), + [aux_sym_readonly_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token2] = ACTIONS(1188), + [aux_sym_visibility_modifier_token3] = ACTIONS(1188), + [aux_sym__arrow_function_header_token1] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [aux_sym_cast_type_token1] = ACTIONS(1188), + [aux_sym_echo_statement_token1] = ACTIONS(1188), + [anon_sym_unset] = ACTIONS(1188), + [aux_sym_declare_statement_token1] = ACTIONS(1188), + [aux_sym_declare_statement_token2] = ACTIONS(1188), + [sym_float] = ACTIONS(1188), + [aux_sym_try_statement_token1] = ACTIONS(1188), + [aux_sym_goto_statement_token1] = ACTIONS(1188), + [aux_sym_continue_statement_token1] = ACTIONS(1188), + [aux_sym_break_statement_token1] = ACTIONS(1188), + [sym_integer] = ACTIONS(1188), + [aux_sym_return_statement_token1] = ACTIONS(1188), + [aux_sym_throw_expression_token1] = ACTIONS(1188), + [aux_sym_while_statement_token1] = ACTIONS(1188), + [aux_sym_while_statement_token2] = ACTIONS(1188), + [aux_sym_do_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token2] = ACTIONS(1188), + [aux_sym_foreach_statement_token1] = ACTIONS(1188), + [aux_sym_foreach_statement_token2] = ACTIONS(1188), + [aux_sym_if_statement_token1] = ACTIONS(1188), + [aux_sym_if_statement_token2] = ACTIONS(1188), + [aux_sym_else_if_clause_token1] = ACTIONS(1188), + [aux_sym_else_clause_token1] = ACTIONS(1188), + [aux_sym_match_expression_token1] = ACTIONS(1188), + [aux_sym_match_default_expression_token1] = ACTIONS(1188), + [aux_sym_switch_statement_token1] = ACTIONS(1188), + [aux_sym_switch_block_token1] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [aux_sym_clone_expression_token1] = ACTIONS(1188), + [aux_sym_print_intrinsic_token1] = ACTIONS(1188), + [aux_sym_object_creation_expression_token1] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [aux_sym__list_destructing_token1] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_self] = ACTIONS(1188), + [anon_sym_parent] = ACTIONS(1188), + [anon_sym_POUND_LBRACK] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [aux_sym_encapsed_string_token1] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1186), + [aux_sym_string_token1] = ACTIONS(1186), + [anon_sym_LT_LT_LT] = ACTIONS(1186), + [anon_sym_BQUOTE] = ACTIONS(1186), + [sym_boolean] = ACTIONS(1188), + [sym_null] = ACTIONS(1188), + [anon_sym_DOLLAR] = ACTIONS(1186), + [aux_sym_yield_expression_token1] = ACTIONS(1188), + [aux_sym_include_expression_token1] = ACTIONS(1188), + [aux_sym_include_once_expression_token1] = ACTIONS(1188), + [aux_sym_require_expression_token1] = ACTIONS(1188), + [aux_sym_require_once_expression_token1] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_name] = ACTIONS(1120), + [anon_sym_QMARK_GT] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [aux_sym_function_static_declaration_token1] = ACTIONS(1120), + [aux_sym_global_declaration_token1] = ACTIONS(1120), + [aux_sym_namespace_definition_token1] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1120), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [aux_sym_trait_declaration_token1] = ACTIONS(1120), + [aux_sym_interface_declaration_token1] = ACTIONS(1120), + [aux_sym_enum_declaration_token1] = ACTIONS(1120), + [aux_sym_enum_case_token1] = ACTIONS(1120), + [aux_sym_class_declaration_token1] = ACTIONS(1120), + [aux_sym_final_modifier_token1] = ACTIONS(1120), + [aux_sym_abstract_modifier_token1] = ACTIONS(1120), + [aux_sym_readonly_modifier_token1] = ACTIONS(1120), + [aux_sym_visibility_modifier_token1] = ACTIONS(1120), + [aux_sym_visibility_modifier_token2] = ACTIONS(1120), + [aux_sym_visibility_modifier_token3] = ACTIONS(1120), + [aux_sym__arrow_function_header_token1] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1118), + [aux_sym_cast_type_token1] = ACTIONS(1120), + [aux_sym_echo_statement_token1] = ACTIONS(1120), + [anon_sym_unset] = ACTIONS(1120), + [aux_sym_declare_statement_token1] = ACTIONS(1120), + [aux_sym_declare_statement_token2] = ACTIONS(1120), + [sym_float] = ACTIONS(1120), + [aux_sym_try_statement_token1] = ACTIONS(1120), + [aux_sym_goto_statement_token1] = ACTIONS(1120), + [aux_sym_continue_statement_token1] = ACTIONS(1120), + [aux_sym_break_statement_token1] = ACTIONS(1120), + [sym_integer] = ACTIONS(1120), + [aux_sym_return_statement_token1] = ACTIONS(1120), + [aux_sym_throw_expression_token1] = ACTIONS(1120), + [aux_sym_while_statement_token1] = ACTIONS(1120), + [aux_sym_while_statement_token2] = ACTIONS(1120), + [aux_sym_do_statement_token1] = ACTIONS(1120), + [aux_sym_for_statement_token1] = ACTIONS(1120), + [aux_sym_for_statement_token2] = ACTIONS(1120), + [aux_sym_foreach_statement_token1] = ACTIONS(1120), + [aux_sym_foreach_statement_token2] = ACTIONS(1120), + [aux_sym_if_statement_token1] = ACTIONS(1120), + [aux_sym_if_statement_token2] = ACTIONS(1120), + [aux_sym_else_if_clause_token1] = ACTIONS(1120), + [aux_sym_else_clause_token1] = ACTIONS(1120), + [aux_sym_match_expression_token1] = ACTIONS(1120), + [aux_sym_match_default_expression_token1] = ACTIONS(1120), + [aux_sym_switch_statement_token1] = ACTIONS(1120), + [aux_sym_switch_block_token1] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [aux_sym_clone_expression_token1] = ACTIONS(1120), + [aux_sym_print_intrinsic_token1] = ACTIONS(1120), + [aux_sym_object_creation_expression_token1] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [aux_sym__list_destructing_token1] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_self] = ACTIONS(1120), + [anon_sym_parent] = ACTIONS(1120), + [anon_sym_POUND_LBRACK] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [aux_sym_encapsed_string_token1] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [aux_sym_string_token1] = ACTIONS(1118), + [anon_sym_LT_LT_LT] = ACTIONS(1118), + [anon_sym_BQUOTE] = ACTIONS(1118), + [sym_boolean] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1118), + [aux_sym_yield_expression_token1] = ACTIONS(1120), + [aux_sym_include_expression_token1] = ACTIONS(1120), + [aux_sym_include_once_expression_token1] = ACTIONS(1120), + [aux_sym_require_expression_token1] = ACTIONS(1120), + [aux_sym_require_once_expression_token1] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [481] = { + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_name] = ACTIONS(1192), + [anon_sym_QMARK_GT] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1190), + [aux_sym_function_static_declaration_token1] = ACTIONS(1192), + [aux_sym_global_declaration_token1] = ACTIONS(1192), + [aux_sym_namespace_definition_token1] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1192), + [anon_sym_BSLASH] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [aux_sym_trait_declaration_token1] = ACTIONS(1192), + [aux_sym_interface_declaration_token1] = ACTIONS(1192), + [aux_sym_enum_declaration_token1] = ACTIONS(1192), + [aux_sym_enum_case_token1] = ACTIONS(1192), + [aux_sym_class_declaration_token1] = ACTIONS(1192), + [aux_sym_final_modifier_token1] = ACTIONS(1192), + [aux_sym_abstract_modifier_token1] = ACTIONS(1192), + [aux_sym_readonly_modifier_token1] = ACTIONS(1192), + [aux_sym_visibility_modifier_token1] = ACTIONS(1192), + [aux_sym_visibility_modifier_token2] = ACTIONS(1192), + [aux_sym_visibility_modifier_token3] = ACTIONS(1192), + [aux_sym__arrow_function_header_token1] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1190), + [aux_sym_cast_type_token1] = ACTIONS(1192), + [aux_sym_echo_statement_token1] = ACTIONS(1192), + [anon_sym_unset] = ACTIONS(1192), + [aux_sym_declare_statement_token1] = ACTIONS(1192), + [aux_sym_declare_statement_token2] = ACTIONS(1192), + [sym_float] = ACTIONS(1192), + [aux_sym_try_statement_token1] = ACTIONS(1192), + [aux_sym_goto_statement_token1] = ACTIONS(1192), + [aux_sym_continue_statement_token1] = ACTIONS(1192), + [aux_sym_break_statement_token1] = ACTIONS(1192), + [sym_integer] = ACTIONS(1192), + [aux_sym_return_statement_token1] = ACTIONS(1192), + [aux_sym_throw_expression_token1] = ACTIONS(1192), + [aux_sym_while_statement_token1] = ACTIONS(1192), + [aux_sym_while_statement_token2] = ACTIONS(1192), + [aux_sym_do_statement_token1] = ACTIONS(1192), + [aux_sym_for_statement_token1] = ACTIONS(1192), + [aux_sym_for_statement_token2] = ACTIONS(1192), + [aux_sym_foreach_statement_token1] = ACTIONS(1192), + [aux_sym_foreach_statement_token2] = ACTIONS(1192), + [aux_sym_if_statement_token1] = ACTIONS(1192), + [aux_sym_if_statement_token2] = ACTIONS(1192), + [aux_sym_else_if_clause_token1] = ACTIONS(1192), + [aux_sym_else_clause_token1] = ACTIONS(1192), + [aux_sym_match_expression_token1] = ACTIONS(1192), + [aux_sym_match_default_expression_token1] = ACTIONS(1192), + [aux_sym_switch_statement_token1] = ACTIONS(1192), + [aux_sym_switch_block_token1] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [aux_sym_clone_expression_token1] = ACTIONS(1192), + [aux_sym_print_intrinsic_token1] = ACTIONS(1192), + [aux_sym_object_creation_expression_token1] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [aux_sym__list_destructing_token1] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_self] = ACTIONS(1192), + [anon_sym_parent] = ACTIONS(1192), + [anon_sym_POUND_LBRACK] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [aux_sym_encapsed_string_token1] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1190), + [aux_sym_string_token1] = ACTIONS(1190), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_BQUOTE] = ACTIONS(1190), + [sym_boolean] = ACTIONS(1192), + [sym_null] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1190), + [aux_sym_yield_expression_token1] = ACTIONS(1192), + [aux_sym_include_expression_token1] = ACTIONS(1192), + [aux_sym_include_once_expression_token1] = ACTIONS(1192), + [aux_sym_require_expression_token1] = ACTIONS(1192), + [aux_sym_require_once_expression_token1] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_name] = ACTIONS(1196), + [anon_sym_QMARK_GT] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1194), + [aux_sym_function_static_declaration_token1] = ACTIONS(1196), + [aux_sym_global_declaration_token1] = ACTIONS(1196), + [aux_sym_namespace_definition_token1] = ACTIONS(1196), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1196), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1196), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1196), + [anon_sym_BSLASH] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [aux_sym_trait_declaration_token1] = ACTIONS(1196), + [aux_sym_interface_declaration_token1] = ACTIONS(1196), + [aux_sym_enum_declaration_token1] = ACTIONS(1196), + [aux_sym_enum_case_token1] = ACTIONS(1196), + [aux_sym_class_declaration_token1] = ACTIONS(1196), + [aux_sym_final_modifier_token1] = ACTIONS(1196), + [aux_sym_abstract_modifier_token1] = ACTIONS(1196), + [aux_sym_readonly_modifier_token1] = ACTIONS(1196), + [aux_sym_visibility_modifier_token1] = ACTIONS(1196), + [aux_sym_visibility_modifier_token2] = ACTIONS(1196), + [aux_sym_visibility_modifier_token3] = ACTIONS(1196), + [aux_sym__arrow_function_header_token1] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1194), + [aux_sym_cast_type_token1] = ACTIONS(1196), + [aux_sym_echo_statement_token1] = ACTIONS(1196), + [anon_sym_unset] = ACTIONS(1196), + [aux_sym_declare_statement_token1] = ACTIONS(1196), + [aux_sym_declare_statement_token2] = ACTIONS(1196), + [sym_float] = ACTIONS(1196), + [aux_sym_try_statement_token1] = ACTIONS(1196), + [aux_sym_goto_statement_token1] = ACTIONS(1196), + [aux_sym_continue_statement_token1] = ACTIONS(1196), + [aux_sym_break_statement_token1] = ACTIONS(1196), + [sym_integer] = ACTIONS(1196), + [aux_sym_return_statement_token1] = ACTIONS(1196), + [aux_sym_throw_expression_token1] = ACTIONS(1196), + [aux_sym_while_statement_token1] = ACTIONS(1196), + [aux_sym_while_statement_token2] = ACTIONS(1196), + [aux_sym_do_statement_token1] = ACTIONS(1196), + [aux_sym_for_statement_token1] = ACTIONS(1196), + [aux_sym_for_statement_token2] = ACTIONS(1196), + [aux_sym_foreach_statement_token1] = ACTIONS(1196), + [aux_sym_foreach_statement_token2] = ACTIONS(1196), + [aux_sym_if_statement_token1] = ACTIONS(1196), + [aux_sym_if_statement_token2] = ACTIONS(1196), + [aux_sym_else_if_clause_token1] = ACTIONS(1196), + [aux_sym_else_clause_token1] = ACTIONS(1196), + [aux_sym_match_expression_token1] = ACTIONS(1196), + [aux_sym_match_default_expression_token1] = ACTIONS(1196), + [aux_sym_switch_statement_token1] = ACTIONS(1196), + [aux_sym_switch_block_token1] = ACTIONS(1196), + [anon_sym_AT] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [aux_sym_clone_expression_token1] = ACTIONS(1196), + [aux_sym_print_intrinsic_token1] = ACTIONS(1196), + [aux_sym_object_creation_expression_token1] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym__list_destructing_token1] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_self] = ACTIONS(1196), + [anon_sym_parent] = ACTIONS(1196), + [anon_sym_POUND_LBRACK] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [aux_sym_encapsed_string_token1] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(1194), + [aux_sym_string_token1] = ACTIONS(1194), + [anon_sym_LT_LT_LT] = ACTIONS(1194), + [anon_sym_BQUOTE] = ACTIONS(1194), + [sym_boolean] = ACTIONS(1196), + [sym_null] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(1194), + [aux_sym_yield_expression_token1] = ACTIONS(1196), + [aux_sym_include_expression_token1] = ACTIONS(1196), + [aux_sym_include_once_expression_token1] = ACTIONS(1196), + [aux_sym_require_expression_token1] = ACTIONS(1196), + [aux_sym_require_once_expression_token1] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + }, + [483] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_name] = ACTIONS(1200), + [anon_sym_QMARK_GT] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [aux_sym_function_static_declaration_token1] = ACTIONS(1200), + [aux_sym_global_declaration_token1] = ACTIONS(1200), + [aux_sym_namespace_definition_token1] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1200), + [anon_sym_BSLASH] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [aux_sym_trait_declaration_token1] = ACTIONS(1200), + [aux_sym_interface_declaration_token1] = ACTIONS(1200), + [aux_sym_enum_declaration_token1] = ACTIONS(1200), + [aux_sym_enum_case_token1] = ACTIONS(1200), + [aux_sym_class_declaration_token1] = ACTIONS(1200), + [aux_sym_final_modifier_token1] = ACTIONS(1200), + [aux_sym_abstract_modifier_token1] = ACTIONS(1200), + [aux_sym_readonly_modifier_token1] = ACTIONS(1200), + [aux_sym_visibility_modifier_token1] = ACTIONS(1200), + [aux_sym_visibility_modifier_token2] = ACTIONS(1200), + [aux_sym_visibility_modifier_token3] = ACTIONS(1200), + [aux_sym__arrow_function_header_token1] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [aux_sym_cast_type_token1] = ACTIONS(1200), + [aux_sym_echo_statement_token1] = ACTIONS(1200), + [anon_sym_unset] = ACTIONS(1200), + [aux_sym_declare_statement_token1] = ACTIONS(1200), + [aux_sym_declare_statement_token2] = ACTIONS(1200), + [sym_float] = ACTIONS(1200), + [aux_sym_try_statement_token1] = ACTIONS(1200), + [aux_sym_goto_statement_token1] = ACTIONS(1200), + [aux_sym_continue_statement_token1] = ACTIONS(1200), + [aux_sym_break_statement_token1] = ACTIONS(1200), + [sym_integer] = ACTIONS(1200), + [aux_sym_return_statement_token1] = ACTIONS(1200), + [aux_sym_throw_expression_token1] = ACTIONS(1200), + [aux_sym_while_statement_token1] = ACTIONS(1200), + [aux_sym_while_statement_token2] = ACTIONS(1200), + [aux_sym_do_statement_token1] = ACTIONS(1200), + [aux_sym_for_statement_token1] = ACTIONS(1200), + [aux_sym_for_statement_token2] = ACTIONS(1200), + [aux_sym_foreach_statement_token1] = ACTIONS(1200), + [aux_sym_foreach_statement_token2] = ACTIONS(1200), + [aux_sym_if_statement_token1] = ACTIONS(1200), + [aux_sym_if_statement_token2] = ACTIONS(1200), + [aux_sym_else_if_clause_token1] = ACTIONS(1200), + [aux_sym_else_clause_token1] = ACTIONS(1200), + [aux_sym_match_expression_token1] = ACTIONS(1200), + [aux_sym_match_default_expression_token1] = ACTIONS(1200), + [aux_sym_switch_statement_token1] = ACTIONS(1200), + [aux_sym_switch_block_token1] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [aux_sym_clone_expression_token1] = ACTIONS(1200), + [aux_sym_print_intrinsic_token1] = ACTIONS(1200), + [aux_sym_object_creation_expression_token1] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [aux_sym__list_destructing_token1] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_self] = ACTIONS(1200), + [anon_sym_parent] = ACTIONS(1200), + [anon_sym_POUND_LBRACK] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [aux_sym_encapsed_string_token1] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [aux_sym_string_token1] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_boolean] = ACTIONS(1200), + [sym_null] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1198), + [aux_sym_yield_expression_token1] = ACTIONS(1200), + [aux_sym_include_expression_token1] = ACTIONS(1200), + [aux_sym_include_once_expression_token1] = ACTIONS(1200), + [aux_sym_require_expression_token1] = ACTIONS(1200), + [aux_sym_require_once_expression_token1] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + }, + [484] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_name] = ACTIONS(1204), + [anon_sym_QMARK_GT] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [aux_sym_function_static_declaration_token1] = ACTIONS(1204), + [aux_sym_global_declaration_token1] = ACTIONS(1204), + [aux_sym_namespace_definition_token1] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1204), + [anon_sym_BSLASH] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [aux_sym_trait_declaration_token1] = ACTIONS(1204), + [aux_sym_interface_declaration_token1] = ACTIONS(1204), + [aux_sym_enum_declaration_token1] = ACTIONS(1204), + [aux_sym_enum_case_token1] = ACTIONS(1204), + [aux_sym_class_declaration_token1] = ACTIONS(1204), + [aux_sym_final_modifier_token1] = ACTIONS(1204), + [aux_sym_abstract_modifier_token1] = ACTIONS(1204), + [aux_sym_readonly_modifier_token1] = ACTIONS(1204), + [aux_sym_visibility_modifier_token1] = ACTIONS(1204), + [aux_sym_visibility_modifier_token2] = ACTIONS(1204), + [aux_sym_visibility_modifier_token3] = ACTIONS(1204), + [aux_sym__arrow_function_header_token1] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [aux_sym_cast_type_token1] = ACTIONS(1204), + [aux_sym_echo_statement_token1] = ACTIONS(1204), + [anon_sym_unset] = ACTIONS(1204), + [aux_sym_declare_statement_token1] = ACTIONS(1204), + [aux_sym_declare_statement_token2] = ACTIONS(1204), + [sym_float] = ACTIONS(1204), + [aux_sym_try_statement_token1] = ACTIONS(1204), + [aux_sym_goto_statement_token1] = ACTIONS(1204), + [aux_sym_continue_statement_token1] = ACTIONS(1204), + [aux_sym_break_statement_token1] = ACTIONS(1204), + [sym_integer] = ACTIONS(1204), + [aux_sym_return_statement_token1] = ACTIONS(1204), + [aux_sym_throw_expression_token1] = ACTIONS(1204), + [aux_sym_while_statement_token1] = ACTIONS(1204), + [aux_sym_while_statement_token2] = ACTIONS(1204), + [aux_sym_do_statement_token1] = ACTIONS(1204), + [aux_sym_for_statement_token1] = ACTIONS(1204), + [aux_sym_for_statement_token2] = ACTIONS(1204), + [aux_sym_foreach_statement_token1] = ACTIONS(1204), + [aux_sym_foreach_statement_token2] = ACTIONS(1204), + [aux_sym_if_statement_token1] = ACTIONS(1204), + [aux_sym_if_statement_token2] = ACTIONS(1204), + [aux_sym_else_if_clause_token1] = ACTIONS(1204), + [aux_sym_else_clause_token1] = ACTIONS(1204), + [aux_sym_match_expression_token1] = ACTIONS(1204), + [aux_sym_match_default_expression_token1] = ACTIONS(1204), + [aux_sym_switch_statement_token1] = ACTIONS(1204), + [aux_sym_switch_block_token1] = ACTIONS(1204), + [anon_sym_AT] = ACTIONS(1202), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [aux_sym_clone_expression_token1] = ACTIONS(1204), + [aux_sym_print_intrinsic_token1] = ACTIONS(1204), + [aux_sym_object_creation_expression_token1] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [aux_sym__list_destructing_token1] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_self] = ACTIONS(1204), + [anon_sym_parent] = ACTIONS(1204), + [anon_sym_POUND_LBRACK] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [aux_sym_encapsed_string_token1] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [aux_sym_string_token1] = ACTIONS(1202), + [anon_sym_LT_LT_LT] = ACTIONS(1202), + [anon_sym_BQUOTE] = ACTIONS(1202), + [sym_boolean] = ACTIONS(1204), + [sym_null] = ACTIONS(1204), + [anon_sym_DOLLAR] = ACTIONS(1202), + [aux_sym_yield_expression_token1] = ACTIONS(1204), + [aux_sym_include_expression_token1] = ACTIONS(1204), + [aux_sym_include_once_expression_token1] = ACTIONS(1204), + [aux_sym_require_expression_token1] = ACTIONS(1204), + [aux_sym_require_once_expression_token1] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [485] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_name] = ACTIONS(1208), + [anon_sym_QMARK_GT] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [aux_sym_function_static_declaration_token1] = ACTIONS(1208), + [aux_sym_global_declaration_token1] = ACTIONS(1208), + [aux_sym_namespace_definition_token1] = ACTIONS(1208), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1208), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1208), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1208), + [anon_sym_BSLASH] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [aux_sym_trait_declaration_token1] = ACTIONS(1208), + [aux_sym_interface_declaration_token1] = ACTIONS(1208), + [aux_sym_enum_declaration_token1] = ACTIONS(1208), + [aux_sym_enum_case_token1] = ACTIONS(1208), + [aux_sym_class_declaration_token1] = ACTIONS(1208), + [aux_sym_final_modifier_token1] = ACTIONS(1208), + [aux_sym_abstract_modifier_token1] = ACTIONS(1208), + [aux_sym_readonly_modifier_token1] = ACTIONS(1208), + [aux_sym_visibility_modifier_token1] = ACTIONS(1208), + [aux_sym_visibility_modifier_token2] = ACTIONS(1208), + [aux_sym_visibility_modifier_token3] = ACTIONS(1208), + [aux_sym__arrow_function_header_token1] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [aux_sym_cast_type_token1] = ACTIONS(1208), + [aux_sym_echo_statement_token1] = ACTIONS(1208), + [anon_sym_unset] = ACTIONS(1208), + [aux_sym_declare_statement_token1] = ACTIONS(1208), + [aux_sym_declare_statement_token2] = ACTIONS(1208), + [sym_float] = ACTIONS(1208), + [aux_sym_try_statement_token1] = ACTIONS(1208), + [aux_sym_goto_statement_token1] = ACTIONS(1208), + [aux_sym_continue_statement_token1] = ACTIONS(1208), + [aux_sym_break_statement_token1] = ACTIONS(1208), + [sym_integer] = ACTIONS(1208), + [aux_sym_return_statement_token1] = ACTIONS(1208), + [aux_sym_throw_expression_token1] = ACTIONS(1208), + [aux_sym_while_statement_token1] = ACTIONS(1208), + [aux_sym_while_statement_token2] = ACTIONS(1208), + [aux_sym_do_statement_token1] = ACTIONS(1208), + [aux_sym_for_statement_token1] = ACTIONS(1208), + [aux_sym_for_statement_token2] = ACTIONS(1208), + [aux_sym_foreach_statement_token1] = ACTIONS(1208), + [aux_sym_foreach_statement_token2] = ACTIONS(1208), + [aux_sym_if_statement_token1] = ACTIONS(1208), + [aux_sym_if_statement_token2] = ACTIONS(1208), + [aux_sym_else_if_clause_token1] = ACTIONS(1208), + [aux_sym_else_clause_token1] = ACTIONS(1208), + [aux_sym_match_expression_token1] = ACTIONS(1208), + [aux_sym_match_default_expression_token1] = ACTIONS(1208), + [aux_sym_switch_statement_token1] = ACTIONS(1208), + [aux_sym_switch_block_token1] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [aux_sym_clone_expression_token1] = ACTIONS(1208), + [aux_sym_print_intrinsic_token1] = ACTIONS(1208), + [aux_sym_object_creation_expression_token1] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [aux_sym__list_destructing_token1] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_self] = ACTIONS(1208), + [anon_sym_parent] = ACTIONS(1208), + [anon_sym_POUND_LBRACK] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [aux_sym_encapsed_string_token1] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [aux_sym_string_token1] = ACTIONS(1206), + [anon_sym_LT_LT_LT] = ACTIONS(1206), + [anon_sym_BQUOTE] = ACTIONS(1206), + [sym_boolean] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [anon_sym_DOLLAR] = ACTIONS(1206), + [aux_sym_yield_expression_token1] = ACTIONS(1208), + [aux_sym_include_expression_token1] = ACTIONS(1208), + [aux_sym_include_once_expression_token1] = ACTIONS(1208), + [aux_sym_require_expression_token1] = ACTIONS(1208), + [aux_sym_require_once_expression_token1] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + }, + [486] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_name] = ACTIONS(1200), + [anon_sym_QMARK_GT] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [aux_sym_function_static_declaration_token1] = ACTIONS(1200), + [aux_sym_global_declaration_token1] = ACTIONS(1200), + [aux_sym_namespace_definition_token1] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1200), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1200), + [anon_sym_BSLASH] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [aux_sym_trait_declaration_token1] = ACTIONS(1200), + [aux_sym_interface_declaration_token1] = ACTIONS(1200), + [aux_sym_enum_declaration_token1] = ACTIONS(1200), + [aux_sym_enum_case_token1] = ACTIONS(1200), + [aux_sym_class_declaration_token1] = ACTIONS(1200), + [aux_sym_final_modifier_token1] = ACTIONS(1200), + [aux_sym_abstract_modifier_token1] = ACTIONS(1200), + [aux_sym_readonly_modifier_token1] = ACTIONS(1200), + [aux_sym_visibility_modifier_token1] = ACTIONS(1200), + [aux_sym_visibility_modifier_token2] = ACTIONS(1200), + [aux_sym_visibility_modifier_token3] = ACTIONS(1200), + [aux_sym__arrow_function_header_token1] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1198), + [aux_sym_cast_type_token1] = ACTIONS(1200), + [aux_sym_echo_statement_token1] = ACTIONS(1200), + [anon_sym_unset] = ACTIONS(1200), + [aux_sym_declare_statement_token1] = ACTIONS(1200), + [aux_sym_declare_statement_token2] = ACTIONS(1200), + [sym_float] = ACTIONS(1200), + [aux_sym_try_statement_token1] = ACTIONS(1200), + [aux_sym_goto_statement_token1] = ACTIONS(1200), + [aux_sym_continue_statement_token1] = ACTIONS(1200), + [aux_sym_break_statement_token1] = ACTIONS(1200), + [sym_integer] = ACTIONS(1200), + [aux_sym_return_statement_token1] = ACTIONS(1200), + [aux_sym_throw_expression_token1] = ACTIONS(1200), + [aux_sym_while_statement_token1] = ACTIONS(1200), + [aux_sym_while_statement_token2] = ACTIONS(1200), + [aux_sym_do_statement_token1] = ACTIONS(1200), + [aux_sym_for_statement_token1] = ACTIONS(1200), + [aux_sym_for_statement_token2] = ACTIONS(1200), + [aux_sym_foreach_statement_token1] = ACTIONS(1200), + [aux_sym_foreach_statement_token2] = ACTIONS(1200), + [aux_sym_if_statement_token1] = ACTIONS(1200), + [aux_sym_if_statement_token2] = ACTIONS(1200), + [aux_sym_else_if_clause_token1] = ACTIONS(1200), + [aux_sym_else_clause_token1] = ACTIONS(1200), + [aux_sym_match_expression_token1] = ACTIONS(1200), + [aux_sym_match_default_expression_token1] = ACTIONS(1200), + [aux_sym_switch_statement_token1] = ACTIONS(1200), + [aux_sym_switch_block_token1] = ACTIONS(1200), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [aux_sym_clone_expression_token1] = ACTIONS(1200), + [aux_sym_print_intrinsic_token1] = ACTIONS(1200), + [aux_sym_object_creation_expression_token1] = ACTIONS(1200), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [aux_sym__list_destructing_token1] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_self] = ACTIONS(1200), + [anon_sym_parent] = ACTIONS(1200), + [anon_sym_POUND_LBRACK] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [aux_sym_encapsed_string_token1] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [aux_sym_string_token1] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [sym_boolean] = ACTIONS(1200), + [sym_null] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1198), + [aux_sym_yield_expression_token1] = ACTIONS(1200), + [aux_sym_include_expression_token1] = ACTIONS(1200), + [aux_sym_include_once_expression_token1] = ACTIONS(1200), + [aux_sym_require_expression_token1] = ACTIONS(1200), + [aux_sym_require_once_expression_token1] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_name] = ACTIONS(1212), + [anon_sym_QMARK_GT] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [aux_sym_function_static_declaration_token1] = ACTIONS(1212), + [aux_sym_global_declaration_token1] = ACTIONS(1212), + [aux_sym_namespace_definition_token1] = ACTIONS(1212), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1212), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1212), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1212), + [anon_sym_BSLASH] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [aux_sym_trait_declaration_token1] = ACTIONS(1212), + [aux_sym_interface_declaration_token1] = ACTIONS(1212), + [aux_sym_enum_declaration_token1] = ACTIONS(1212), + [aux_sym_enum_case_token1] = ACTIONS(1212), + [aux_sym_class_declaration_token1] = ACTIONS(1212), + [aux_sym_final_modifier_token1] = ACTIONS(1212), + [aux_sym_abstract_modifier_token1] = ACTIONS(1212), + [aux_sym_readonly_modifier_token1] = ACTIONS(1212), + [aux_sym_visibility_modifier_token1] = ACTIONS(1212), + [aux_sym_visibility_modifier_token2] = ACTIONS(1212), + [aux_sym_visibility_modifier_token3] = ACTIONS(1212), + [aux_sym__arrow_function_header_token1] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1210), + [aux_sym_cast_type_token1] = ACTIONS(1212), + [aux_sym_echo_statement_token1] = ACTIONS(1212), + [anon_sym_unset] = ACTIONS(1212), + [aux_sym_declare_statement_token1] = ACTIONS(1212), + [aux_sym_declare_statement_token2] = ACTIONS(1212), + [sym_float] = ACTIONS(1212), + [aux_sym_try_statement_token1] = ACTIONS(1212), + [aux_sym_goto_statement_token1] = ACTIONS(1212), + [aux_sym_continue_statement_token1] = ACTIONS(1212), + [aux_sym_break_statement_token1] = ACTIONS(1212), + [sym_integer] = ACTIONS(1212), + [aux_sym_return_statement_token1] = ACTIONS(1212), + [aux_sym_throw_expression_token1] = ACTIONS(1212), + [aux_sym_while_statement_token1] = ACTIONS(1212), + [aux_sym_while_statement_token2] = ACTIONS(1212), + [aux_sym_do_statement_token1] = ACTIONS(1212), + [aux_sym_for_statement_token1] = ACTIONS(1212), + [aux_sym_for_statement_token2] = ACTIONS(1212), + [aux_sym_foreach_statement_token1] = ACTIONS(1212), + [aux_sym_foreach_statement_token2] = ACTIONS(1212), + [aux_sym_if_statement_token1] = ACTIONS(1212), + [aux_sym_if_statement_token2] = ACTIONS(1212), + [aux_sym_else_if_clause_token1] = ACTIONS(1212), + [aux_sym_else_clause_token1] = ACTIONS(1212), + [aux_sym_match_expression_token1] = ACTIONS(1212), + [aux_sym_match_default_expression_token1] = ACTIONS(1212), + [aux_sym_switch_statement_token1] = ACTIONS(1212), + [aux_sym_switch_block_token1] = ACTIONS(1212), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [aux_sym_clone_expression_token1] = ACTIONS(1212), + [aux_sym_print_intrinsic_token1] = ACTIONS(1212), + [aux_sym_object_creation_expression_token1] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [aux_sym__list_destructing_token1] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_self] = ACTIONS(1212), + [anon_sym_parent] = ACTIONS(1212), + [anon_sym_POUND_LBRACK] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [aux_sym_encapsed_string_token1] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [aux_sym_string_token1] = ACTIONS(1210), + [anon_sym_LT_LT_LT] = ACTIONS(1210), + [anon_sym_BQUOTE] = ACTIONS(1210), + [sym_boolean] = ACTIONS(1212), + [sym_null] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1210), + [aux_sym_yield_expression_token1] = ACTIONS(1212), + [aux_sym_include_expression_token1] = ACTIONS(1212), + [aux_sym_include_once_expression_token1] = ACTIONS(1212), + [aux_sym_require_expression_token1] = ACTIONS(1212), + [aux_sym_require_once_expression_token1] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_name] = ACTIONS(1180), + [anon_sym_QMARK_GT] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [aux_sym_function_static_declaration_token1] = ACTIONS(1180), + [aux_sym_global_declaration_token1] = ACTIONS(1180), + [aux_sym_namespace_definition_token1] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1180), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1180), + [anon_sym_BSLASH] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [aux_sym_trait_declaration_token1] = ACTIONS(1180), + [aux_sym_interface_declaration_token1] = ACTIONS(1180), + [aux_sym_enum_declaration_token1] = ACTIONS(1180), + [aux_sym_enum_case_token1] = ACTIONS(1180), + [aux_sym_class_declaration_token1] = ACTIONS(1180), + [aux_sym_final_modifier_token1] = ACTIONS(1180), + [aux_sym_abstract_modifier_token1] = ACTIONS(1180), + [aux_sym_readonly_modifier_token1] = ACTIONS(1180), + [aux_sym_visibility_modifier_token1] = ACTIONS(1180), + [aux_sym_visibility_modifier_token2] = ACTIONS(1180), + [aux_sym_visibility_modifier_token3] = ACTIONS(1180), + [aux_sym__arrow_function_header_token1] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [aux_sym_cast_type_token1] = ACTIONS(1180), + [aux_sym_echo_statement_token1] = ACTIONS(1180), + [anon_sym_unset] = ACTIONS(1180), + [aux_sym_declare_statement_token1] = ACTIONS(1180), + [aux_sym_declare_statement_token2] = ACTIONS(1180), + [sym_float] = ACTIONS(1180), + [aux_sym_try_statement_token1] = ACTIONS(1180), + [aux_sym_goto_statement_token1] = ACTIONS(1180), + [aux_sym_continue_statement_token1] = ACTIONS(1180), + [aux_sym_break_statement_token1] = ACTIONS(1180), + [sym_integer] = ACTIONS(1180), + [aux_sym_return_statement_token1] = ACTIONS(1180), + [aux_sym_throw_expression_token1] = ACTIONS(1180), + [aux_sym_while_statement_token1] = ACTIONS(1180), + [aux_sym_while_statement_token2] = ACTIONS(1180), + [aux_sym_do_statement_token1] = ACTIONS(1180), + [aux_sym_for_statement_token1] = ACTIONS(1180), + [aux_sym_for_statement_token2] = ACTIONS(1180), + [aux_sym_foreach_statement_token1] = ACTIONS(1180), + [aux_sym_foreach_statement_token2] = ACTIONS(1180), + [aux_sym_if_statement_token1] = ACTIONS(1180), + [aux_sym_if_statement_token2] = ACTIONS(1180), + [aux_sym_else_if_clause_token1] = ACTIONS(1180), + [aux_sym_else_clause_token1] = ACTIONS(1180), + [aux_sym_match_expression_token1] = ACTIONS(1180), + [aux_sym_match_default_expression_token1] = ACTIONS(1180), + [aux_sym_switch_statement_token1] = ACTIONS(1180), + [aux_sym_switch_block_token1] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [aux_sym_clone_expression_token1] = ACTIONS(1180), + [aux_sym_print_intrinsic_token1] = ACTIONS(1180), + [aux_sym_object_creation_expression_token1] = ACTIONS(1180), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [aux_sym__list_destructing_token1] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_self] = ACTIONS(1180), + [anon_sym_parent] = ACTIONS(1180), + [anon_sym_POUND_LBRACK] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [aux_sym_encapsed_string_token1] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [aux_sym_string_token1] = ACTIONS(1178), + [anon_sym_LT_LT_LT] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1178), + [sym_boolean] = ACTIONS(1180), + [sym_null] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(1178), + [aux_sym_yield_expression_token1] = ACTIONS(1180), + [aux_sym_include_expression_token1] = ACTIONS(1180), + [aux_sym_include_once_expression_token1] = ACTIONS(1180), + [aux_sym_require_expression_token1] = ACTIONS(1180), + [aux_sym_require_once_expression_token1] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_name] = ACTIONS(1140), + [anon_sym_QMARK_GT] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [aux_sym_function_static_declaration_token1] = ACTIONS(1140), + [aux_sym_global_declaration_token1] = ACTIONS(1140), + [aux_sym_namespace_definition_token1] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1140), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1140), + [anon_sym_BSLASH] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [aux_sym_trait_declaration_token1] = ACTIONS(1140), + [aux_sym_interface_declaration_token1] = ACTIONS(1140), + [aux_sym_enum_declaration_token1] = ACTIONS(1140), + [aux_sym_enum_case_token1] = ACTIONS(1140), + [aux_sym_class_declaration_token1] = ACTIONS(1140), + [aux_sym_final_modifier_token1] = ACTIONS(1140), + [aux_sym_abstract_modifier_token1] = ACTIONS(1140), + [aux_sym_readonly_modifier_token1] = ACTIONS(1140), + [aux_sym_visibility_modifier_token1] = ACTIONS(1140), + [aux_sym_visibility_modifier_token2] = ACTIONS(1140), + [aux_sym_visibility_modifier_token3] = ACTIONS(1140), + [aux_sym__arrow_function_header_token1] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1138), + [aux_sym_cast_type_token1] = ACTIONS(1140), + [aux_sym_echo_statement_token1] = ACTIONS(1140), + [anon_sym_unset] = ACTIONS(1140), + [aux_sym_declare_statement_token1] = ACTIONS(1140), + [aux_sym_declare_statement_token2] = ACTIONS(1140), + [sym_float] = ACTIONS(1140), + [aux_sym_try_statement_token1] = ACTIONS(1140), + [aux_sym_goto_statement_token1] = ACTIONS(1140), + [aux_sym_continue_statement_token1] = ACTIONS(1140), + [aux_sym_break_statement_token1] = ACTIONS(1140), + [sym_integer] = ACTIONS(1140), + [aux_sym_return_statement_token1] = ACTIONS(1140), + [aux_sym_throw_expression_token1] = ACTIONS(1140), + [aux_sym_while_statement_token1] = ACTIONS(1140), + [aux_sym_while_statement_token2] = ACTIONS(1140), + [aux_sym_do_statement_token1] = ACTIONS(1140), + [aux_sym_for_statement_token1] = ACTIONS(1140), + [aux_sym_for_statement_token2] = ACTIONS(1140), + [aux_sym_foreach_statement_token1] = ACTIONS(1140), + [aux_sym_foreach_statement_token2] = ACTIONS(1140), + [aux_sym_if_statement_token1] = ACTIONS(1140), + [aux_sym_if_statement_token2] = ACTIONS(1140), + [aux_sym_else_if_clause_token1] = ACTIONS(1140), + [aux_sym_else_clause_token1] = ACTIONS(1140), + [aux_sym_match_expression_token1] = ACTIONS(1140), + [aux_sym_match_default_expression_token1] = ACTIONS(1140), + [aux_sym_switch_statement_token1] = ACTIONS(1140), + [aux_sym_switch_block_token1] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [aux_sym_clone_expression_token1] = ACTIONS(1140), + [aux_sym_print_intrinsic_token1] = ACTIONS(1140), + [aux_sym_object_creation_expression_token1] = ACTIONS(1140), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [aux_sym__list_destructing_token1] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_self] = ACTIONS(1140), + [anon_sym_parent] = ACTIONS(1140), + [anon_sym_POUND_LBRACK] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [aux_sym_encapsed_string_token1] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [aux_sym_string_token1] = ACTIONS(1138), + [anon_sym_LT_LT_LT] = ACTIONS(1138), + [anon_sym_BQUOTE] = ACTIONS(1138), + [sym_boolean] = ACTIONS(1140), + [sym_null] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1138), + [aux_sym_yield_expression_token1] = ACTIONS(1140), + [aux_sym_include_expression_token1] = ACTIONS(1140), + [aux_sym_include_once_expression_token1] = ACTIONS(1140), + [aux_sym_require_expression_token1] = ACTIONS(1140), + [aux_sym_require_once_expression_token1] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_name] = ACTIONS(1216), + [anon_sym_QMARK_GT] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [aux_sym_function_static_declaration_token1] = ACTIONS(1216), + [aux_sym_global_declaration_token1] = ACTIONS(1216), + [aux_sym_namespace_definition_token1] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1216), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [aux_sym_trait_declaration_token1] = ACTIONS(1216), + [aux_sym_interface_declaration_token1] = ACTIONS(1216), + [aux_sym_enum_declaration_token1] = ACTIONS(1216), + [aux_sym_enum_case_token1] = ACTIONS(1216), + [aux_sym_class_declaration_token1] = ACTIONS(1216), + [aux_sym_final_modifier_token1] = ACTIONS(1216), + [aux_sym_abstract_modifier_token1] = ACTIONS(1216), + [aux_sym_readonly_modifier_token1] = ACTIONS(1216), + [aux_sym_visibility_modifier_token1] = ACTIONS(1216), + [aux_sym_visibility_modifier_token2] = ACTIONS(1216), + [aux_sym_visibility_modifier_token3] = ACTIONS(1216), + [aux_sym__arrow_function_header_token1] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1214), + [aux_sym_cast_type_token1] = ACTIONS(1216), + [aux_sym_echo_statement_token1] = ACTIONS(1216), + [anon_sym_unset] = ACTIONS(1216), + [aux_sym_declare_statement_token1] = ACTIONS(1216), + [aux_sym_declare_statement_token2] = ACTIONS(1216), + [sym_float] = ACTIONS(1216), + [aux_sym_try_statement_token1] = ACTIONS(1216), + [aux_sym_goto_statement_token1] = ACTIONS(1216), + [aux_sym_continue_statement_token1] = ACTIONS(1216), + [aux_sym_break_statement_token1] = ACTIONS(1216), + [sym_integer] = ACTIONS(1216), + [aux_sym_return_statement_token1] = ACTIONS(1216), + [aux_sym_throw_expression_token1] = ACTIONS(1216), + [aux_sym_while_statement_token1] = ACTIONS(1216), + [aux_sym_while_statement_token2] = ACTIONS(1216), + [aux_sym_do_statement_token1] = ACTIONS(1216), + [aux_sym_for_statement_token1] = ACTIONS(1216), + [aux_sym_for_statement_token2] = ACTIONS(1216), + [aux_sym_foreach_statement_token1] = ACTIONS(1216), + [aux_sym_foreach_statement_token2] = ACTIONS(1216), + [aux_sym_if_statement_token1] = ACTIONS(1216), + [aux_sym_if_statement_token2] = ACTIONS(1216), + [aux_sym_else_if_clause_token1] = ACTIONS(1216), + [aux_sym_else_clause_token1] = ACTIONS(1216), + [aux_sym_match_expression_token1] = ACTIONS(1216), + [aux_sym_match_default_expression_token1] = ACTIONS(1216), + [aux_sym_switch_statement_token1] = ACTIONS(1216), + [aux_sym_switch_block_token1] = ACTIONS(1216), + [anon_sym_AT] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [aux_sym_clone_expression_token1] = ACTIONS(1216), + [aux_sym_print_intrinsic_token1] = ACTIONS(1216), + [aux_sym_object_creation_expression_token1] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [aux_sym__list_destructing_token1] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_self] = ACTIONS(1216), + [anon_sym_parent] = ACTIONS(1216), + [anon_sym_POUND_LBRACK] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [aux_sym_encapsed_string_token1] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [aux_sym_string_token1] = ACTIONS(1214), + [anon_sym_LT_LT_LT] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [sym_boolean] = ACTIONS(1216), + [sym_null] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1214), + [aux_sym_yield_expression_token1] = ACTIONS(1216), + [aux_sym_include_expression_token1] = ACTIONS(1216), + [aux_sym_include_once_expression_token1] = ACTIONS(1216), + [aux_sym_require_expression_token1] = ACTIONS(1216), + [aux_sym_require_once_expression_token1] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_name] = ACTIONS(1220), + [anon_sym_QMARK_GT] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [aux_sym_function_static_declaration_token1] = ACTIONS(1220), + [aux_sym_global_declaration_token1] = ACTIONS(1220), + [aux_sym_namespace_definition_token1] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1220), + [anon_sym_BSLASH] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [aux_sym_trait_declaration_token1] = ACTIONS(1220), + [aux_sym_interface_declaration_token1] = ACTIONS(1220), + [aux_sym_enum_declaration_token1] = ACTIONS(1220), + [aux_sym_enum_case_token1] = ACTIONS(1220), + [aux_sym_class_declaration_token1] = ACTIONS(1220), + [aux_sym_final_modifier_token1] = ACTIONS(1220), + [aux_sym_abstract_modifier_token1] = ACTIONS(1220), + [aux_sym_readonly_modifier_token1] = ACTIONS(1220), + [aux_sym_visibility_modifier_token1] = ACTIONS(1220), + [aux_sym_visibility_modifier_token2] = ACTIONS(1220), + [aux_sym_visibility_modifier_token3] = ACTIONS(1220), + [aux_sym__arrow_function_header_token1] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1218), + [aux_sym_cast_type_token1] = ACTIONS(1220), + [aux_sym_echo_statement_token1] = ACTIONS(1220), + [anon_sym_unset] = ACTIONS(1220), + [aux_sym_declare_statement_token1] = ACTIONS(1220), + [aux_sym_declare_statement_token2] = ACTIONS(1220), + [sym_float] = ACTIONS(1220), + [aux_sym_try_statement_token1] = ACTIONS(1220), + [aux_sym_goto_statement_token1] = ACTIONS(1220), + [aux_sym_continue_statement_token1] = ACTIONS(1220), + [aux_sym_break_statement_token1] = ACTIONS(1220), + [sym_integer] = ACTIONS(1220), + [aux_sym_return_statement_token1] = ACTIONS(1220), + [aux_sym_throw_expression_token1] = ACTIONS(1220), + [aux_sym_while_statement_token1] = ACTIONS(1220), + [aux_sym_while_statement_token2] = ACTIONS(1220), + [aux_sym_do_statement_token1] = ACTIONS(1220), + [aux_sym_for_statement_token1] = ACTIONS(1220), + [aux_sym_for_statement_token2] = ACTIONS(1220), + [aux_sym_foreach_statement_token1] = ACTIONS(1220), + [aux_sym_foreach_statement_token2] = ACTIONS(1220), + [aux_sym_if_statement_token1] = ACTIONS(1220), + [aux_sym_if_statement_token2] = ACTIONS(1220), + [aux_sym_else_if_clause_token1] = ACTIONS(1220), + [aux_sym_else_clause_token1] = ACTIONS(1220), + [aux_sym_match_expression_token1] = ACTIONS(1220), + [aux_sym_match_default_expression_token1] = ACTIONS(1220), + [aux_sym_switch_statement_token1] = ACTIONS(1220), + [aux_sym_switch_block_token1] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [aux_sym_clone_expression_token1] = ACTIONS(1220), + [aux_sym_print_intrinsic_token1] = ACTIONS(1220), + [aux_sym_object_creation_expression_token1] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [aux_sym__list_destructing_token1] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_self] = ACTIONS(1220), + [anon_sym_parent] = ACTIONS(1220), + [anon_sym_POUND_LBRACK] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [aux_sym_encapsed_string_token1] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [aux_sym_string_token1] = ACTIONS(1218), + [anon_sym_LT_LT_LT] = ACTIONS(1218), + [anon_sym_BQUOTE] = ACTIONS(1218), + [sym_boolean] = ACTIONS(1220), + [sym_null] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1218), + [aux_sym_yield_expression_token1] = ACTIONS(1220), + [aux_sym_include_expression_token1] = ACTIONS(1220), + [aux_sym_include_once_expression_token1] = ACTIONS(1220), + [aux_sym_require_expression_token1] = ACTIONS(1220), + [aux_sym_require_once_expression_token1] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_name] = ACTIONS(1224), + [anon_sym_QMARK_GT] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [aux_sym_function_static_declaration_token1] = ACTIONS(1224), + [aux_sym_global_declaration_token1] = ACTIONS(1224), + [aux_sym_namespace_definition_token1] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1224), + [anon_sym_BSLASH] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [aux_sym_trait_declaration_token1] = ACTIONS(1224), + [aux_sym_interface_declaration_token1] = ACTIONS(1224), + [aux_sym_enum_declaration_token1] = ACTIONS(1224), + [aux_sym_enum_case_token1] = ACTIONS(1224), + [aux_sym_class_declaration_token1] = ACTIONS(1224), + [aux_sym_final_modifier_token1] = ACTIONS(1224), + [aux_sym_abstract_modifier_token1] = ACTIONS(1224), + [aux_sym_readonly_modifier_token1] = ACTIONS(1224), + [aux_sym_visibility_modifier_token1] = ACTIONS(1224), + [aux_sym_visibility_modifier_token2] = ACTIONS(1224), + [aux_sym_visibility_modifier_token3] = ACTIONS(1224), + [aux_sym__arrow_function_header_token1] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [aux_sym_cast_type_token1] = ACTIONS(1224), + [aux_sym_echo_statement_token1] = ACTIONS(1224), + [anon_sym_unset] = ACTIONS(1224), + [aux_sym_declare_statement_token1] = ACTIONS(1224), + [aux_sym_declare_statement_token2] = ACTIONS(1224), + [sym_float] = ACTIONS(1224), + [aux_sym_try_statement_token1] = ACTIONS(1224), + [aux_sym_goto_statement_token1] = ACTIONS(1224), + [aux_sym_continue_statement_token1] = ACTIONS(1224), + [aux_sym_break_statement_token1] = ACTIONS(1224), + [sym_integer] = ACTIONS(1224), + [aux_sym_return_statement_token1] = ACTIONS(1224), + [aux_sym_throw_expression_token1] = ACTIONS(1224), + [aux_sym_while_statement_token1] = ACTIONS(1224), + [aux_sym_while_statement_token2] = ACTIONS(1224), + [aux_sym_do_statement_token1] = ACTIONS(1224), + [aux_sym_for_statement_token1] = ACTIONS(1224), + [aux_sym_for_statement_token2] = ACTIONS(1224), + [aux_sym_foreach_statement_token1] = ACTIONS(1224), + [aux_sym_foreach_statement_token2] = ACTIONS(1224), + [aux_sym_if_statement_token1] = ACTIONS(1224), + [aux_sym_if_statement_token2] = ACTIONS(1224), + [aux_sym_else_if_clause_token1] = ACTIONS(1224), + [aux_sym_else_clause_token1] = ACTIONS(1224), + [aux_sym_match_expression_token1] = ACTIONS(1224), + [aux_sym_match_default_expression_token1] = ACTIONS(1224), + [aux_sym_switch_statement_token1] = ACTIONS(1224), + [aux_sym_switch_block_token1] = ACTIONS(1224), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [aux_sym_clone_expression_token1] = ACTIONS(1224), + [aux_sym_print_intrinsic_token1] = ACTIONS(1224), + [aux_sym_object_creation_expression_token1] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [aux_sym__list_destructing_token1] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_self] = ACTIONS(1224), + [anon_sym_parent] = ACTIONS(1224), + [anon_sym_POUND_LBRACK] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [aux_sym_encapsed_string_token1] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [aux_sym_string_token1] = ACTIONS(1222), + [anon_sym_LT_LT_LT] = ACTIONS(1222), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_boolean] = ACTIONS(1224), + [sym_null] = ACTIONS(1224), + [anon_sym_DOLLAR] = ACTIONS(1222), + [aux_sym_yield_expression_token1] = ACTIONS(1224), + [aux_sym_include_expression_token1] = ACTIONS(1224), + [aux_sym_include_once_expression_token1] = ACTIONS(1224), + [aux_sym_require_expression_token1] = ACTIONS(1224), + [aux_sym_require_once_expression_token1] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_name] = ACTIONS(1228), + [anon_sym_QMARK_GT] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [aux_sym_function_static_declaration_token1] = ACTIONS(1228), + [aux_sym_global_declaration_token1] = ACTIONS(1228), + [aux_sym_namespace_definition_token1] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1228), + [anon_sym_BSLASH] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [aux_sym_trait_declaration_token1] = ACTIONS(1228), + [aux_sym_interface_declaration_token1] = ACTIONS(1228), + [aux_sym_enum_declaration_token1] = ACTIONS(1228), + [aux_sym_enum_case_token1] = ACTIONS(1228), + [aux_sym_class_declaration_token1] = ACTIONS(1228), + [aux_sym_final_modifier_token1] = ACTIONS(1228), + [aux_sym_abstract_modifier_token1] = ACTIONS(1228), + [aux_sym_readonly_modifier_token1] = ACTIONS(1228), + [aux_sym_visibility_modifier_token1] = ACTIONS(1228), + [aux_sym_visibility_modifier_token2] = ACTIONS(1228), + [aux_sym_visibility_modifier_token3] = ACTIONS(1228), + [aux_sym__arrow_function_header_token1] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [aux_sym_cast_type_token1] = ACTIONS(1228), + [aux_sym_echo_statement_token1] = ACTIONS(1228), + [anon_sym_unset] = ACTIONS(1228), + [aux_sym_declare_statement_token1] = ACTIONS(1228), + [aux_sym_declare_statement_token2] = ACTIONS(1228), + [sym_float] = ACTIONS(1228), + [aux_sym_try_statement_token1] = ACTIONS(1228), + [aux_sym_goto_statement_token1] = ACTIONS(1228), + [aux_sym_continue_statement_token1] = ACTIONS(1228), + [aux_sym_break_statement_token1] = ACTIONS(1228), + [sym_integer] = ACTIONS(1228), + [aux_sym_return_statement_token1] = ACTIONS(1228), + [aux_sym_throw_expression_token1] = ACTIONS(1228), + [aux_sym_while_statement_token1] = ACTIONS(1228), + [aux_sym_while_statement_token2] = ACTIONS(1228), + [aux_sym_do_statement_token1] = ACTIONS(1228), + [aux_sym_for_statement_token1] = ACTIONS(1228), + [aux_sym_for_statement_token2] = ACTIONS(1228), + [aux_sym_foreach_statement_token1] = ACTIONS(1228), + [aux_sym_foreach_statement_token2] = ACTIONS(1228), + [aux_sym_if_statement_token1] = ACTIONS(1228), + [aux_sym_if_statement_token2] = ACTIONS(1228), + [aux_sym_else_if_clause_token1] = ACTIONS(1228), + [aux_sym_else_clause_token1] = ACTIONS(1228), + [aux_sym_match_expression_token1] = ACTIONS(1228), + [aux_sym_match_default_expression_token1] = ACTIONS(1228), + [aux_sym_switch_statement_token1] = ACTIONS(1228), + [aux_sym_switch_block_token1] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [aux_sym_clone_expression_token1] = ACTIONS(1228), + [aux_sym_print_intrinsic_token1] = ACTIONS(1228), + [aux_sym_object_creation_expression_token1] = ACTIONS(1228), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [aux_sym__list_destructing_token1] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_self] = ACTIONS(1228), + [anon_sym_parent] = ACTIONS(1228), + [anon_sym_POUND_LBRACK] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [aux_sym_encapsed_string_token1] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [aux_sym_string_token1] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(1226), + [sym_boolean] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), + [anon_sym_DOLLAR] = ACTIONS(1226), + [aux_sym_yield_expression_token1] = ACTIONS(1228), + [aux_sym_include_expression_token1] = ACTIONS(1228), + [aux_sym_include_once_expression_token1] = ACTIONS(1228), + [aux_sym_require_expression_token1] = ACTIONS(1228), + [aux_sym_require_once_expression_token1] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + }, + [494] = { + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_name] = ACTIONS(1232), + [anon_sym_QMARK_GT] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [aux_sym_function_static_declaration_token1] = ACTIONS(1232), + [aux_sym_global_declaration_token1] = ACTIONS(1232), + [aux_sym_namespace_definition_token1] = ACTIONS(1232), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1232), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1232), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1232), + [anon_sym_BSLASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [aux_sym_trait_declaration_token1] = ACTIONS(1232), + [aux_sym_interface_declaration_token1] = ACTIONS(1232), + [aux_sym_enum_declaration_token1] = ACTIONS(1232), + [aux_sym_enum_case_token1] = ACTIONS(1232), + [aux_sym_class_declaration_token1] = ACTIONS(1232), + [aux_sym_final_modifier_token1] = ACTIONS(1232), + [aux_sym_abstract_modifier_token1] = ACTIONS(1232), + [aux_sym_readonly_modifier_token1] = ACTIONS(1232), + [aux_sym_visibility_modifier_token1] = ACTIONS(1232), + [aux_sym_visibility_modifier_token2] = ACTIONS(1232), + [aux_sym_visibility_modifier_token3] = ACTIONS(1232), + [aux_sym__arrow_function_header_token1] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1230), + [aux_sym_cast_type_token1] = ACTIONS(1232), + [aux_sym_echo_statement_token1] = ACTIONS(1232), + [anon_sym_unset] = ACTIONS(1232), + [aux_sym_declare_statement_token1] = ACTIONS(1232), + [aux_sym_declare_statement_token2] = ACTIONS(1232), + [sym_float] = ACTIONS(1232), + [aux_sym_try_statement_token1] = ACTIONS(1232), + [aux_sym_goto_statement_token1] = ACTIONS(1232), + [aux_sym_continue_statement_token1] = ACTIONS(1232), + [aux_sym_break_statement_token1] = ACTIONS(1232), + [sym_integer] = ACTIONS(1232), + [aux_sym_return_statement_token1] = ACTIONS(1232), + [aux_sym_throw_expression_token1] = ACTIONS(1232), + [aux_sym_while_statement_token1] = ACTIONS(1232), + [aux_sym_while_statement_token2] = ACTIONS(1232), + [aux_sym_do_statement_token1] = ACTIONS(1232), + [aux_sym_for_statement_token1] = ACTIONS(1232), + [aux_sym_for_statement_token2] = ACTIONS(1232), + [aux_sym_foreach_statement_token1] = ACTIONS(1232), + [aux_sym_foreach_statement_token2] = ACTIONS(1232), + [aux_sym_if_statement_token1] = ACTIONS(1232), + [aux_sym_if_statement_token2] = ACTIONS(1232), + [aux_sym_else_if_clause_token1] = ACTIONS(1232), + [aux_sym_else_clause_token1] = ACTIONS(1232), + [aux_sym_match_expression_token1] = ACTIONS(1232), + [aux_sym_match_default_expression_token1] = ACTIONS(1232), + [aux_sym_switch_statement_token1] = ACTIONS(1232), + [aux_sym_switch_block_token1] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [aux_sym_clone_expression_token1] = ACTIONS(1232), + [aux_sym_print_intrinsic_token1] = ACTIONS(1232), + [aux_sym_object_creation_expression_token1] = ACTIONS(1232), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [aux_sym__list_destructing_token1] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_self] = ACTIONS(1232), + [anon_sym_parent] = ACTIONS(1232), + [anon_sym_POUND_LBRACK] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [aux_sym_encapsed_string_token1] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [aux_sym_string_token1] = ACTIONS(1230), + [anon_sym_LT_LT_LT] = ACTIONS(1230), + [anon_sym_BQUOTE] = ACTIONS(1230), + [sym_boolean] = ACTIONS(1232), + [sym_null] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1230), + [aux_sym_yield_expression_token1] = ACTIONS(1232), + [aux_sym_include_expression_token1] = ACTIONS(1232), + [aux_sym_include_once_expression_token1] = ACTIONS(1232), + [aux_sym_require_expression_token1] = ACTIONS(1232), + [aux_sym_require_once_expression_token1] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, + [495] = { + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_name] = ACTIONS(1236), + [anon_sym_QMARK_GT] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [aux_sym_function_static_declaration_token1] = ACTIONS(1236), + [aux_sym_global_declaration_token1] = ACTIONS(1236), + [aux_sym_namespace_definition_token1] = ACTIONS(1236), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1236), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1236), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1236), + [anon_sym_BSLASH] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [aux_sym_trait_declaration_token1] = ACTIONS(1236), + [aux_sym_interface_declaration_token1] = ACTIONS(1236), + [aux_sym_enum_declaration_token1] = ACTIONS(1236), + [aux_sym_enum_case_token1] = ACTIONS(1236), + [aux_sym_class_declaration_token1] = ACTIONS(1236), + [aux_sym_final_modifier_token1] = ACTIONS(1236), + [aux_sym_abstract_modifier_token1] = ACTIONS(1236), + [aux_sym_readonly_modifier_token1] = ACTIONS(1236), + [aux_sym_visibility_modifier_token1] = ACTIONS(1236), + [aux_sym_visibility_modifier_token2] = ACTIONS(1236), + [aux_sym_visibility_modifier_token3] = ACTIONS(1236), + [aux_sym__arrow_function_header_token1] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1234), + [aux_sym_cast_type_token1] = ACTIONS(1236), + [aux_sym_echo_statement_token1] = ACTIONS(1236), + [anon_sym_unset] = ACTIONS(1236), + [aux_sym_declare_statement_token1] = ACTIONS(1236), + [aux_sym_declare_statement_token2] = ACTIONS(1236), + [sym_float] = ACTIONS(1236), + [aux_sym_try_statement_token1] = ACTIONS(1236), + [aux_sym_goto_statement_token1] = ACTIONS(1236), + [aux_sym_continue_statement_token1] = ACTIONS(1236), + [aux_sym_break_statement_token1] = ACTIONS(1236), + [sym_integer] = ACTIONS(1236), + [aux_sym_return_statement_token1] = ACTIONS(1236), + [aux_sym_throw_expression_token1] = ACTIONS(1236), + [aux_sym_while_statement_token1] = ACTIONS(1236), + [aux_sym_while_statement_token2] = ACTIONS(1236), + [aux_sym_do_statement_token1] = ACTIONS(1236), + [aux_sym_for_statement_token1] = ACTIONS(1236), + [aux_sym_for_statement_token2] = ACTIONS(1236), + [aux_sym_foreach_statement_token1] = ACTIONS(1236), + [aux_sym_foreach_statement_token2] = ACTIONS(1236), + [aux_sym_if_statement_token1] = ACTIONS(1236), + [aux_sym_if_statement_token2] = ACTIONS(1236), + [aux_sym_else_if_clause_token1] = ACTIONS(1236), + [aux_sym_else_clause_token1] = ACTIONS(1236), + [aux_sym_match_expression_token1] = ACTIONS(1236), + [aux_sym_match_default_expression_token1] = ACTIONS(1236), + [aux_sym_switch_statement_token1] = ACTIONS(1236), + [aux_sym_switch_block_token1] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [aux_sym_clone_expression_token1] = ACTIONS(1236), + [aux_sym_print_intrinsic_token1] = ACTIONS(1236), + [aux_sym_object_creation_expression_token1] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [aux_sym__list_destructing_token1] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_self] = ACTIONS(1236), + [anon_sym_parent] = ACTIONS(1236), + [anon_sym_POUND_LBRACK] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [aux_sym_encapsed_string_token1] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [aux_sym_string_token1] = ACTIONS(1234), + [anon_sym_LT_LT_LT] = ACTIONS(1234), + [anon_sym_BQUOTE] = ACTIONS(1234), + [sym_boolean] = ACTIONS(1236), + [sym_null] = ACTIONS(1236), + [anon_sym_DOLLAR] = ACTIONS(1234), + [aux_sym_yield_expression_token1] = ACTIONS(1236), + [aux_sym_include_expression_token1] = ACTIONS(1236), + [aux_sym_include_once_expression_token1] = ACTIONS(1236), + [aux_sym_require_expression_token1] = ACTIONS(1236), + [aux_sym_require_once_expression_token1] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_name] = ACTIONS(1240), + [anon_sym_QMARK_GT] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [aux_sym_function_static_declaration_token1] = ACTIONS(1240), + [aux_sym_global_declaration_token1] = ACTIONS(1240), + [aux_sym_namespace_definition_token1] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [aux_sym_trait_declaration_token1] = ACTIONS(1240), + [aux_sym_interface_declaration_token1] = ACTIONS(1240), + [aux_sym_enum_declaration_token1] = ACTIONS(1240), + [aux_sym_enum_case_token1] = ACTIONS(1240), + [aux_sym_class_declaration_token1] = ACTIONS(1240), + [aux_sym_final_modifier_token1] = ACTIONS(1240), + [aux_sym_abstract_modifier_token1] = ACTIONS(1240), + [aux_sym_readonly_modifier_token1] = ACTIONS(1240), + [aux_sym_visibility_modifier_token1] = ACTIONS(1240), + [aux_sym_visibility_modifier_token2] = ACTIONS(1240), + [aux_sym_visibility_modifier_token3] = ACTIONS(1240), + [aux_sym__arrow_function_header_token1] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1238), + [aux_sym_cast_type_token1] = ACTIONS(1240), + [aux_sym_echo_statement_token1] = ACTIONS(1240), + [anon_sym_unset] = ACTIONS(1240), + [aux_sym_declare_statement_token1] = ACTIONS(1240), + [aux_sym_declare_statement_token2] = ACTIONS(1240), + [sym_float] = ACTIONS(1240), + [aux_sym_try_statement_token1] = ACTIONS(1240), + [aux_sym_goto_statement_token1] = ACTIONS(1240), + [aux_sym_continue_statement_token1] = ACTIONS(1240), + [aux_sym_break_statement_token1] = ACTIONS(1240), + [sym_integer] = ACTIONS(1240), + [aux_sym_return_statement_token1] = ACTIONS(1240), + [aux_sym_throw_expression_token1] = ACTIONS(1240), + [aux_sym_while_statement_token1] = ACTIONS(1240), + [aux_sym_while_statement_token2] = ACTIONS(1240), + [aux_sym_do_statement_token1] = ACTIONS(1240), + [aux_sym_for_statement_token1] = ACTIONS(1240), + [aux_sym_for_statement_token2] = ACTIONS(1240), + [aux_sym_foreach_statement_token1] = ACTIONS(1240), + [aux_sym_foreach_statement_token2] = ACTIONS(1240), + [aux_sym_if_statement_token1] = ACTIONS(1240), + [aux_sym_if_statement_token2] = ACTIONS(1240), + [aux_sym_else_if_clause_token1] = ACTIONS(1240), + [aux_sym_else_clause_token1] = ACTIONS(1240), + [aux_sym_match_expression_token1] = ACTIONS(1240), + [aux_sym_match_default_expression_token1] = ACTIONS(1240), + [aux_sym_switch_statement_token1] = ACTIONS(1240), + [aux_sym_switch_block_token1] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [aux_sym_clone_expression_token1] = ACTIONS(1240), + [aux_sym_print_intrinsic_token1] = ACTIONS(1240), + [aux_sym_object_creation_expression_token1] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [aux_sym__list_destructing_token1] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_self] = ACTIONS(1240), + [anon_sym_parent] = ACTIONS(1240), + [anon_sym_POUND_LBRACK] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [aux_sym_encapsed_string_token1] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [aux_sym_string_token1] = ACTIONS(1238), + [anon_sym_LT_LT_LT] = ACTIONS(1238), + [anon_sym_BQUOTE] = ACTIONS(1238), + [sym_boolean] = ACTIONS(1240), + [sym_null] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1238), + [aux_sym_yield_expression_token1] = ACTIONS(1240), + [aux_sym_include_expression_token1] = ACTIONS(1240), + [aux_sym_include_once_expression_token1] = ACTIONS(1240), + [aux_sym_require_expression_token1] = ACTIONS(1240), + [aux_sym_require_once_expression_token1] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [497] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_name] = ACTIONS(1244), + [anon_sym_QMARK_GT] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [aux_sym_function_static_declaration_token1] = ACTIONS(1244), + [aux_sym_global_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_definition_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [aux_sym_trait_declaration_token1] = ACTIONS(1244), + [aux_sym_interface_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_case_token1] = ACTIONS(1244), + [aux_sym_class_declaration_token1] = ACTIONS(1244), + [aux_sym_final_modifier_token1] = ACTIONS(1244), + [aux_sym_abstract_modifier_token1] = ACTIONS(1244), + [aux_sym_readonly_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token2] = ACTIONS(1244), + [aux_sym_visibility_modifier_token3] = ACTIONS(1244), + [aux_sym__arrow_function_header_token1] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1242), + [aux_sym_cast_type_token1] = ACTIONS(1244), + [aux_sym_echo_statement_token1] = ACTIONS(1244), + [anon_sym_unset] = ACTIONS(1244), + [aux_sym_declare_statement_token1] = ACTIONS(1244), + [aux_sym_declare_statement_token2] = ACTIONS(1244), + [sym_float] = ACTIONS(1244), + [aux_sym_try_statement_token1] = ACTIONS(1244), + [aux_sym_goto_statement_token1] = ACTIONS(1244), + [aux_sym_continue_statement_token1] = ACTIONS(1244), + [aux_sym_break_statement_token1] = ACTIONS(1244), + [sym_integer] = ACTIONS(1244), + [aux_sym_return_statement_token1] = ACTIONS(1244), + [aux_sym_throw_expression_token1] = ACTIONS(1244), + [aux_sym_while_statement_token1] = ACTIONS(1244), + [aux_sym_while_statement_token2] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token2] = ACTIONS(1244), + [aux_sym_foreach_statement_token1] = ACTIONS(1244), + [aux_sym_foreach_statement_token2] = ACTIONS(1244), + [aux_sym_if_statement_token1] = ACTIONS(1244), + [aux_sym_if_statement_token2] = ACTIONS(1244), + [aux_sym_else_if_clause_token1] = ACTIONS(1244), + [aux_sym_else_clause_token1] = ACTIONS(1244), + [aux_sym_match_expression_token1] = ACTIONS(1244), + [aux_sym_match_default_expression_token1] = ACTIONS(1244), + [aux_sym_switch_statement_token1] = ACTIONS(1244), + [aux_sym_switch_block_token1] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [aux_sym_clone_expression_token1] = ACTIONS(1244), + [aux_sym_print_intrinsic_token1] = ACTIONS(1244), + [aux_sym_object_creation_expression_token1] = ACTIONS(1244), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [aux_sym__list_destructing_token1] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_self] = ACTIONS(1244), + [anon_sym_parent] = ACTIONS(1244), + [anon_sym_POUND_LBRACK] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [aux_sym_encapsed_string_token1] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [aux_sym_string_token1] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [sym_boolean] = ACTIONS(1244), + [sym_null] = ACTIONS(1244), + [anon_sym_DOLLAR] = ACTIONS(1242), + [aux_sym_yield_expression_token1] = ACTIONS(1244), + [aux_sym_include_expression_token1] = ACTIONS(1244), + [aux_sym_include_once_expression_token1] = ACTIONS(1244), + [aux_sym_require_expression_token1] = ACTIONS(1244), + [aux_sym_require_once_expression_token1] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [498] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_name] = ACTIONS(1248), + [anon_sym_QMARK_GT] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [aux_sym_function_static_declaration_token1] = ACTIONS(1248), + [aux_sym_global_declaration_token1] = ACTIONS(1248), + [aux_sym_namespace_definition_token1] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [aux_sym_trait_declaration_token1] = ACTIONS(1248), + [aux_sym_interface_declaration_token1] = ACTIONS(1248), + [aux_sym_enum_declaration_token1] = ACTIONS(1248), + [aux_sym_enum_case_token1] = ACTIONS(1248), + [aux_sym_class_declaration_token1] = ACTIONS(1248), + [aux_sym_final_modifier_token1] = ACTIONS(1248), + [aux_sym_abstract_modifier_token1] = ACTIONS(1248), + [aux_sym_readonly_modifier_token1] = ACTIONS(1248), + [aux_sym_visibility_modifier_token1] = ACTIONS(1248), + [aux_sym_visibility_modifier_token2] = ACTIONS(1248), + [aux_sym_visibility_modifier_token3] = ACTIONS(1248), + [aux_sym__arrow_function_header_token1] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1246), + [aux_sym_cast_type_token1] = ACTIONS(1248), + [aux_sym_echo_statement_token1] = ACTIONS(1248), + [anon_sym_unset] = ACTIONS(1248), + [aux_sym_declare_statement_token1] = ACTIONS(1248), + [aux_sym_declare_statement_token2] = ACTIONS(1248), + [sym_float] = ACTIONS(1248), + [aux_sym_try_statement_token1] = ACTIONS(1248), + [aux_sym_goto_statement_token1] = ACTIONS(1248), + [aux_sym_continue_statement_token1] = ACTIONS(1248), + [aux_sym_break_statement_token1] = ACTIONS(1248), + [sym_integer] = ACTIONS(1248), + [aux_sym_return_statement_token1] = ACTIONS(1248), + [aux_sym_throw_expression_token1] = ACTIONS(1248), + [aux_sym_while_statement_token1] = ACTIONS(1248), + [aux_sym_while_statement_token2] = ACTIONS(1248), + [aux_sym_do_statement_token1] = ACTIONS(1248), + [aux_sym_for_statement_token1] = ACTIONS(1248), + [aux_sym_for_statement_token2] = ACTIONS(1248), + [aux_sym_foreach_statement_token1] = ACTIONS(1248), + [aux_sym_foreach_statement_token2] = ACTIONS(1248), + [aux_sym_if_statement_token1] = ACTIONS(1248), + [aux_sym_if_statement_token2] = ACTIONS(1248), + [aux_sym_else_if_clause_token1] = ACTIONS(1248), + [aux_sym_else_clause_token1] = ACTIONS(1248), + [aux_sym_match_expression_token1] = ACTIONS(1248), + [aux_sym_match_default_expression_token1] = ACTIONS(1248), + [aux_sym_switch_statement_token1] = ACTIONS(1248), + [aux_sym_switch_block_token1] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [aux_sym_clone_expression_token1] = ACTIONS(1248), + [aux_sym_print_intrinsic_token1] = ACTIONS(1248), + [aux_sym_object_creation_expression_token1] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [aux_sym__list_destructing_token1] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_self] = ACTIONS(1248), + [anon_sym_parent] = ACTIONS(1248), + [anon_sym_POUND_LBRACK] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [aux_sym_encapsed_string_token1] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [aux_sym_string_token1] = ACTIONS(1246), + [anon_sym_LT_LT_LT] = ACTIONS(1246), + [anon_sym_BQUOTE] = ACTIONS(1246), + [sym_boolean] = ACTIONS(1248), + [sym_null] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1246), + [aux_sym_yield_expression_token1] = ACTIONS(1248), + [aux_sym_include_expression_token1] = ACTIONS(1248), + [aux_sym_include_once_expression_token1] = ACTIONS(1248), + [aux_sym_require_expression_token1] = ACTIONS(1248), + [aux_sym_require_once_expression_token1] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_name] = ACTIONS(1252), + [anon_sym_QMARK_GT] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [aux_sym_function_static_declaration_token1] = ACTIONS(1252), + [aux_sym_global_declaration_token1] = ACTIONS(1252), + [aux_sym_namespace_definition_token1] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1252), + [anon_sym_BSLASH] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [aux_sym_trait_declaration_token1] = ACTIONS(1252), + [aux_sym_interface_declaration_token1] = ACTIONS(1252), + [aux_sym_enum_declaration_token1] = ACTIONS(1252), + [aux_sym_enum_case_token1] = ACTIONS(1252), + [aux_sym_class_declaration_token1] = ACTIONS(1252), + [aux_sym_final_modifier_token1] = ACTIONS(1252), + [aux_sym_abstract_modifier_token1] = ACTIONS(1252), + [aux_sym_readonly_modifier_token1] = ACTIONS(1252), + [aux_sym_visibility_modifier_token1] = ACTIONS(1252), + [aux_sym_visibility_modifier_token2] = ACTIONS(1252), + [aux_sym_visibility_modifier_token3] = ACTIONS(1252), + [aux_sym__arrow_function_header_token1] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1250), + [aux_sym_cast_type_token1] = ACTIONS(1252), + [aux_sym_echo_statement_token1] = ACTIONS(1252), + [anon_sym_unset] = ACTIONS(1252), + [aux_sym_declare_statement_token1] = ACTIONS(1252), + [aux_sym_declare_statement_token2] = ACTIONS(1252), + [sym_float] = ACTIONS(1252), + [aux_sym_try_statement_token1] = ACTIONS(1252), + [aux_sym_goto_statement_token1] = ACTIONS(1252), + [aux_sym_continue_statement_token1] = ACTIONS(1252), + [aux_sym_break_statement_token1] = ACTIONS(1252), + [sym_integer] = ACTIONS(1252), + [aux_sym_return_statement_token1] = ACTIONS(1252), + [aux_sym_throw_expression_token1] = ACTIONS(1252), + [aux_sym_while_statement_token1] = ACTIONS(1252), + [aux_sym_while_statement_token2] = ACTIONS(1252), + [aux_sym_do_statement_token1] = ACTIONS(1252), + [aux_sym_for_statement_token1] = ACTIONS(1252), + [aux_sym_for_statement_token2] = ACTIONS(1252), + [aux_sym_foreach_statement_token1] = ACTIONS(1252), + [aux_sym_foreach_statement_token2] = ACTIONS(1252), + [aux_sym_if_statement_token1] = ACTIONS(1252), + [aux_sym_if_statement_token2] = ACTIONS(1252), + [aux_sym_else_if_clause_token1] = ACTIONS(1252), + [aux_sym_else_clause_token1] = ACTIONS(1252), + [aux_sym_match_expression_token1] = ACTIONS(1252), + [aux_sym_match_default_expression_token1] = ACTIONS(1252), + [aux_sym_switch_statement_token1] = ACTIONS(1252), + [aux_sym_switch_block_token1] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [aux_sym_clone_expression_token1] = ACTIONS(1252), + [aux_sym_print_intrinsic_token1] = ACTIONS(1252), + [aux_sym_object_creation_expression_token1] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [aux_sym__list_destructing_token1] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_self] = ACTIONS(1252), + [anon_sym_parent] = ACTIONS(1252), + [anon_sym_POUND_LBRACK] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [aux_sym_encapsed_string_token1] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [aux_sym_string_token1] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(1250), + [anon_sym_BQUOTE] = ACTIONS(1250), + [sym_boolean] = ACTIONS(1252), + [sym_null] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1250), + [aux_sym_yield_expression_token1] = ACTIONS(1252), + [aux_sym_include_expression_token1] = ACTIONS(1252), + [aux_sym_include_once_expression_token1] = ACTIONS(1252), + [aux_sym_require_expression_token1] = ACTIONS(1252), + [aux_sym_require_once_expression_token1] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + }, + [500] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_name] = ACTIONS(1256), + [anon_sym_QMARK_GT] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [aux_sym_function_static_declaration_token1] = ACTIONS(1256), + [aux_sym_global_declaration_token1] = ACTIONS(1256), + [aux_sym_namespace_definition_token1] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1256), + [anon_sym_BSLASH] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [aux_sym_trait_declaration_token1] = ACTIONS(1256), + [aux_sym_interface_declaration_token1] = ACTIONS(1256), + [aux_sym_enum_declaration_token1] = ACTIONS(1256), + [aux_sym_enum_case_token1] = ACTIONS(1256), + [aux_sym_class_declaration_token1] = ACTIONS(1256), + [aux_sym_final_modifier_token1] = ACTIONS(1256), + [aux_sym_abstract_modifier_token1] = ACTIONS(1256), + [aux_sym_readonly_modifier_token1] = ACTIONS(1256), + [aux_sym_visibility_modifier_token1] = ACTIONS(1256), + [aux_sym_visibility_modifier_token2] = ACTIONS(1256), + [aux_sym_visibility_modifier_token3] = ACTIONS(1256), + [aux_sym__arrow_function_header_token1] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1254), + [aux_sym_cast_type_token1] = ACTIONS(1256), + [aux_sym_echo_statement_token1] = ACTIONS(1256), + [anon_sym_unset] = ACTIONS(1256), + [aux_sym_declare_statement_token1] = ACTIONS(1256), + [aux_sym_declare_statement_token2] = ACTIONS(1256), + [sym_float] = ACTIONS(1256), + [aux_sym_try_statement_token1] = ACTIONS(1256), + [aux_sym_goto_statement_token1] = ACTIONS(1256), + [aux_sym_continue_statement_token1] = ACTIONS(1256), + [aux_sym_break_statement_token1] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [aux_sym_return_statement_token1] = ACTIONS(1256), + [aux_sym_throw_expression_token1] = ACTIONS(1256), + [aux_sym_while_statement_token1] = ACTIONS(1256), + [aux_sym_while_statement_token2] = ACTIONS(1256), + [aux_sym_do_statement_token1] = ACTIONS(1256), + [aux_sym_for_statement_token1] = ACTIONS(1256), + [aux_sym_for_statement_token2] = ACTIONS(1256), + [aux_sym_foreach_statement_token1] = ACTIONS(1256), + [aux_sym_foreach_statement_token2] = ACTIONS(1256), + [aux_sym_if_statement_token1] = ACTIONS(1256), + [aux_sym_if_statement_token2] = ACTIONS(1256), + [aux_sym_else_if_clause_token1] = ACTIONS(1256), + [aux_sym_else_clause_token1] = ACTIONS(1256), + [aux_sym_match_expression_token1] = ACTIONS(1256), + [aux_sym_match_default_expression_token1] = ACTIONS(1256), + [aux_sym_switch_statement_token1] = ACTIONS(1256), + [aux_sym_switch_block_token1] = ACTIONS(1256), + [anon_sym_AT] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [aux_sym_clone_expression_token1] = ACTIONS(1256), + [aux_sym_print_intrinsic_token1] = ACTIONS(1256), + [aux_sym_object_creation_expression_token1] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [aux_sym__list_destructing_token1] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_self] = ACTIONS(1256), + [anon_sym_parent] = ACTIONS(1256), + [anon_sym_POUND_LBRACK] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [aux_sym_encapsed_string_token1] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [aux_sym_string_token1] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_BQUOTE] = ACTIONS(1254), + [sym_boolean] = ACTIONS(1256), + [sym_null] = ACTIONS(1256), + [anon_sym_DOLLAR] = ACTIONS(1254), + [aux_sym_yield_expression_token1] = ACTIONS(1256), + [aux_sym_include_expression_token1] = ACTIONS(1256), + [aux_sym_include_once_expression_token1] = ACTIONS(1256), + [aux_sym_require_expression_token1] = ACTIONS(1256), + [aux_sym_require_once_expression_token1] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_name] = ACTIONS(1260), + [anon_sym_QMARK_GT] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [aux_sym_function_static_declaration_token1] = ACTIONS(1260), + [aux_sym_global_declaration_token1] = ACTIONS(1260), + [aux_sym_namespace_definition_token1] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1260), + [anon_sym_BSLASH] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [aux_sym_trait_declaration_token1] = ACTIONS(1260), + [aux_sym_interface_declaration_token1] = ACTIONS(1260), + [aux_sym_enum_declaration_token1] = ACTIONS(1260), + [aux_sym_enum_case_token1] = ACTIONS(1260), + [aux_sym_class_declaration_token1] = ACTIONS(1260), + [aux_sym_final_modifier_token1] = ACTIONS(1260), + [aux_sym_abstract_modifier_token1] = ACTIONS(1260), + [aux_sym_readonly_modifier_token1] = ACTIONS(1260), + [aux_sym_visibility_modifier_token1] = ACTIONS(1260), + [aux_sym_visibility_modifier_token2] = ACTIONS(1260), + [aux_sym_visibility_modifier_token3] = ACTIONS(1260), + [aux_sym__arrow_function_header_token1] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1258), + [aux_sym_cast_type_token1] = ACTIONS(1260), + [aux_sym_echo_statement_token1] = ACTIONS(1260), + [anon_sym_unset] = ACTIONS(1260), + [aux_sym_declare_statement_token1] = ACTIONS(1260), + [aux_sym_declare_statement_token2] = ACTIONS(1260), + [sym_float] = ACTIONS(1260), + [aux_sym_try_statement_token1] = ACTIONS(1260), + [aux_sym_goto_statement_token1] = ACTIONS(1260), + [aux_sym_continue_statement_token1] = ACTIONS(1260), + [aux_sym_break_statement_token1] = ACTIONS(1260), + [sym_integer] = ACTIONS(1260), + [aux_sym_return_statement_token1] = ACTIONS(1260), + [aux_sym_throw_expression_token1] = ACTIONS(1260), + [aux_sym_while_statement_token1] = ACTIONS(1260), + [aux_sym_while_statement_token2] = ACTIONS(1260), + [aux_sym_do_statement_token1] = ACTIONS(1260), + [aux_sym_for_statement_token1] = ACTIONS(1260), + [aux_sym_for_statement_token2] = ACTIONS(1260), + [aux_sym_foreach_statement_token1] = ACTIONS(1260), + [aux_sym_foreach_statement_token2] = ACTIONS(1260), + [aux_sym_if_statement_token1] = ACTIONS(1260), + [aux_sym_if_statement_token2] = ACTIONS(1260), + [aux_sym_else_if_clause_token1] = ACTIONS(1260), + [aux_sym_else_clause_token1] = ACTIONS(1260), + [aux_sym_match_expression_token1] = ACTIONS(1260), + [aux_sym_match_default_expression_token1] = ACTIONS(1260), + [aux_sym_switch_statement_token1] = ACTIONS(1260), + [aux_sym_switch_block_token1] = ACTIONS(1260), + [anon_sym_AT] = ACTIONS(1258), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [aux_sym_clone_expression_token1] = ACTIONS(1260), + [aux_sym_print_intrinsic_token1] = ACTIONS(1260), + [aux_sym_object_creation_expression_token1] = ACTIONS(1260), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [aux_sym__list_destructing_token1] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_self] = ACTIONS(1260), + [anon_sym_parent] = ACTIONS(1260), + [anon_sym_POUND_LBRACK] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [aux_sym_encapsed_string_token1] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [aux_sym_string_token1] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [sym_boolean] = ACTIONS(1260), + [sym_null] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1258), + [aux_sym_yield_expression_token1] = ACTIONS(1260), + [aux_sym_include_expression_token1] = ACTIONS(1260), + [aux_sym_include_once_expression_token1] = ACTIONS(1260), + [aux_sym_require_expression_token1] = ACTIONS(1260), + [aux_sym_require_once_expression_token1] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_name] = ACTIONS(1264), + [anon_sym_QMARK_GT] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [aux_sym_function_static_declaration_token1] = ACTIONS(1264), + [aux_sym_global_declaration_token1] = ACTIONS(1264), + [aux_sym_namespace_definition_token1] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1264), + [anon_sym_BSLASH] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [aux_sym_trait_declaration_token1] = ACTIONS(1264), + [aux_sym_interface_declaration_token1] = ACTIONS(1264), + [aux_sym_enum_declaration_token1] = ACTIONS(1264), + [aux_sym_enum_case_token1] = ACTIONS(1264), + [aux_sym_class_declaration_token1] = ACTIONS(1264), + [aux_sym_final_modifier_token1] = ACTIONS(1264), + [aux_sym_abstract_modifier_token1] = ACTIONS(1264), + [aux_sym_readonly_modifier_token1] = ACTIONS(1264), + [aux_sym_visibility_modifier_token1] = ACTIONS(1264), + [aux_sym_visibility_modifier_token2] = ACTIONS(1264), + [aux_sym_visibility_modifier_token3] = ACTIONS(1264), + [aux_sym__arrow_function_header_token1] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1262), + [aux_sym_cast_type_token1] = ACTIONS(1264), + [aux_sym_echo_statement_token1] = ACTIONS(1264), + [anon_sym_unset] = ACTIONS(1264), + [aux_sym_declare_statement_token1] = ACTIONS(1264), + [aux_sym_declare_statement_token2] = ACTIONS(1264), + [sym_float] = ACTIONS(1264), + [aux_sym_try_statement_token1] = ACTIONS(1264), + [aux_sym_goto_statement_token1] = ACTIONS(1264), + [aux_sym_continue_statement_token1] = ACTIONS(1264), + [aux_sym_break_statement_token1] = ACTIONS(1264), + [sym_integer] = ACTIONS(1264), + [aux_sym_return_statement_token1] = ACTIONS(1264), + [aux_sym_throw_expression_token1] = ACTIONS(1264), + [aux_sym_while_statement_token1] = ACTIONS(1264), + [aux_sym_while_statement_token2] = ACTIONS(1264), + [aux_sym_do_statement_token1] = ACTIONS(1264), + [aux_sym_for_statement_token1] = ACTIONS(1264), + [aux_sym_for_statement_token2] = ACTIONS(1264), + [aux_sym_foreach_statement_token1] = ACTIONS(1264), + [aux_sym_foreach_statement_token2] = ACTIONS(1264), + [aux_sym_if_statement_token1] = ACTIONS(1264), + [aux_sym_if_statement_token2] = ACTIONS(1264), + [aux_sym_else_if_clause_token1] = ACTIONS(1264), + [aux_sym_else_clause_token1] = ACTIONS(1264), + [aux_sym_match_expression_token1] = ACTIONS(1264), + [aux_sym_match_default_expression_token1] = ACTIONS(1264), + [aux_sym_switch_statement_token1] = ACTIONS(1264), + [aux_sym_switch_block_token1] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [aux_sym_clone_expression_token1] = ACTIONS(1264), + [aux_sym_print_intrinsic_token1] = ACTIONS(1264), + [aux_sym_object_creation_expression_token1] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [aux_sym__list_destructing_token1] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_self] = ACTIONS(1264), + [anon_sym_parent] = ACTIONS(1264), + [anon_sym_POUND_LBRACK] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [aux_sym_encapsed_string_token1] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [aux_sym_string_token1] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [sym_boolean] = ACTIONS(1264), + [sym_null] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1262), + [aux_sym_yield_expression_token1] = ACTIONS(1264), + [aux_sym_include_expression_token1] = ACTIONS(1264), + [aux_sym_include_once_expression_token1] = ACTIONS(1264), + [aux_sym_require_expression_token1] = ACTIONS(1264), + [aux_sym_require_once_expression_token1] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_name] = ACTIONS(1268), + [anon_sym_QMARK_GT] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [aux_sym_function_static_declaration_token1] = ACTIONS(1268), + [aux_sym_global_declaration_token1] = ACTIONS(1268), + [aux_sym_namespace_definition_token1] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1268), + [anon_sym_BSLASH] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [aux_sym_trait_declaration_token1] = ACTIONS(1268), + [aux_sym_interface_declaration_token1] = ACTIONS(1268), + [aux_sym_enum_declaration_token1] = ACTIONS(1268), + [aux_sym_enum_case_token1] = ACTIONS(1268), + [aux_sym_class_declaration_token1] = ACTIONS(1268), + [aux_sym_final_modifier_token1] = ACTIONS(1268), + [aux_sym_abstract_modifier_token1] = ACTIONS(1268), + [aux_sym_readonly_modifier_token1] = ACTIONS(1268), + [aux_sym_visibility_modifier_token1] = ACTIONS(1268), + [aux_sym_visibility_modifier_token2] = ACTIONS(1268), + [aux_sym_visibility_modifier_token3] = ACTIONS(1268), + [aux_sym__arrow_function_header_token1] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1266), + [aux_sym_cast_type_token1] = ACTIONS(1268), + [aux_sym_echo_statement_token1] = ACTIONS(1268), + [anon_sym_unset] = ACTIONS(1268), + [aux_sym_declare_statement_token1] = ACTIONS(1268), + [aux_sym_declare_statement_token2] = ACTIONS(1268), + [sym_float] = ACTIONS(1268), + [aux_sym_try_statement_token1] = ACTIONS(1268), + [aux_sym_goto_statement_token1] = ACTIONS(1268), + [aux_sym_continue_statement_token1] = ACTIONS(1268), + [aux_sym_break_statement_token1] = ACTIONS(1268), + [sym_integer] = ACTIONS(1268), + [aux_sym_return_statement_token1] = ACTIONS(1268), + [aux_sym_throw_expression_token1] = ACTIONS(1268), + [aux_sym_while_statement_token1] = ACTIONS(1268), + [aux_sym_while_statement_token2] = ACTIONS(1268), + [aux_sym_do_statement_token1] = ACTIONS(1268), + [aux_sym_for_statement_token1] = ACTIONS(1268), + [aux_sym_for_statement_token2] = ACTIONS(1268), + [aux_sym_foreach_statement_token1] = ACTIONS(1268), + [aux_sym_foreach_statement_token2] = ACTIONS(1268), + [aux_sym_if_statement_token1] = ACTIONS(1268), + [aux_sym_if_statement_token2] = ACTIONS(1268), + [aux_sym_else_if_clause_token1] = ACTIONS(1268), + [aux_sym_else_clause_token1] = ACTIONS(1268), + [aux_sym_match_expression_token1] = ACTIONS(1268), + [aux_sym_match_default_expression_token1] = ACTIONS(1268), + [aux_sym_switch_statement_token1] = ACTIONS(1268), + [aux_sym_switch_block_token1] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [aux_sym_clone_expression_token1] = ACTIONS(1268), + [aux_sym_print_intrinsic_token1] = ACTIONS(1268), + [aux_sym_object_creation_expression_token1] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [aux_sym__list_destructing_token1] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_self] = ACTIONS(1268), + [anon_sym_parent] = ACTIONS(1268), + [anon_sym_POUND_LBRACK] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [aux_sym_encapsed_string_token1] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [aux_sym_string_token1] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [sym_boolean] = ACTIONS(1268), + [sym_null] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1266), + [aux_sym_yield_expression_token1] = ACTIONS(1268), + [aux_sym_include_expression_token1] = ACTIONS(1268), + [aux_sym_include_once_expression_token1] = ACTIONS(1268), + [aux_sym_require_expression_token1] = ACTIONS(1268), + [aux_sym_require_once_expression_token1] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + }, + [504] = { + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_name] = ACTIONS(1272), + [anon_sym_QMARK_GT] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [aux_sym_function_static_declaration_token1] = ACTIONS(1272), + [aux_sym_global_declaration_token1] = ACTIONS(1272), + [aux_sym_namespace_definition_token1] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1272), + [anon_sym_BSLASH] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [aux_sym_trait_declaration_token1] = ACTIONS(1272), + [aux_sym_interface_declaration_token1] = ACTIONS(1272), + [aux_sym_enum_declaration_token1] = ACTIONS(1272), + [aux_sym_enum_case_token1] = ACTIONS(1272), + [aux_sym_class_declaration_token1] = ACTIONS(1272), + [aux_sym_final_modifier_token1] = ACTIONS(1272), + [aux_sym_abstract_modifier_token1] = ACTIONS(1272), + [aux_sym_readonly_modifier_token1] = ACTIONS(1272), + [aux_sym_visibility_modifier_token1] = ACTIONS(1272), + [aux_sym_visibility_modifier_token2] = ACTIONS(1272), + [aux_sym_visibility_modifier_token3] = ACTIONS(1272), + [aux_sym__arrow_function_header_token1] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1270), + [aux_sym_cast_type_token1] = ACTIONS(1272), + [aux_sym_echo_statement_token1] = ACTIONS(1272), + [anon_sym_unset] = ACTIONS(1272), + [aux_sym_declare_statement_token1] = ACTIONS(1272), + [aux_sym_declare_statement_token2] = ACTIONS(1272), + [sym_float] = ACTIONS(1272), + [aux_sym_try_statement_token1] = ACTIONS(1272), + [aux_sym_goto_statement_token1] = ACTIONS(1272), + [aux_sym_continue_statement_token1] = ACTIONS(1272), + [aux_sym_break_statement_token1] = ACTIONS(1272), + [sym_integer] = ACTIONS(1272), + [aux_sym_return_statement_token1] = ACTIONS(1272), + [aux_sym_throw_expression_token1] = ACTIONS(1272), + [aux_sym_while_statement_token1] = ACTIONS(1272), + [aux_sym_while_statement_token2] = ACTIONS(1272), + [aux_sym_do_statement_token1] = ACTIONS(1272), + [aux_sym_for_statement_token1] = ACTIONS(1272), + [aux_sym_for_statement_token2] = ACTIONS(1272), + [aux_sym_foreach_statement_token1] = ACTIONS(1272), + [aux_sym_foreach_statement_token2] = ACTIONS(1272), + [aux_sym_if_statement_token1] = ACTIONS(1272), + [aux_sym_if_statement_token2] = ACTIONS(1272), + [aux_sym_else_if_clause_token1] = ACTIONS(1272), + [aux_sym_else_clause_token1] = ACTIONS(1272), + [aux_sym_match_expression_token1] = ACTIONS(1272), + [aux_sym_match_default_expression_token1] = ACTIONS(1272), + [aux_sym_switch_statement_token1] = ACTIONS(1272), + [aux_sym_switch_block_token1] = ACTIONS(1272), + [anon_sym_AT] = ACTIONS(1270), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [aux_sym_clone_expression_token1] = ACTIONS(1272), + [aux_sym_print_intrinsic_token1] = ACTIONS(1272), + [aux_sym_object_creation_expression_token1] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [aux_sym__list_destructing_token1] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_self] = ACTIONS(1272), + [anon_sym_parent] = ACTIONS(1272), + [anon_sym_POUND_LBRACK] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [aux_sym_encapsed_string_token1] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [aux_sym_string_token1] = ACTIONS(1270), + [anon_sym_LT_LT_LT] = ACTIONS(1270), + [anon_sym_BQUOTE] = ACTIONS(1270), + [sym_boolean] = ACTIONS(1272), + [sym_null] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1270), + [aux_sym_yield_expression_token1] = ACTIONS(1272), + [aux_sym_include_expression_token1] = ACTIONS(1272), + [aux_sym_include_once_expression_token1] = ACTIONS(1272), + [aux_sym_require_expression_token1] = ACTIONS(1272), + [aux_sym_require_once_expression_token1] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_name] = ACTIONS(1276), + [anon_sym_QMARK_GT] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [aux_sym_function_static_declaration_token1] = ACTIONS(1276), + [aux_sym_global_declaration_token1] = ACTIONS(1276), + [aux_sym_namespace_definition_token1] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1276), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [aux_sym_trait_declaration_token1] = ACTIONS(1276), + [aux_sym_interface_declaration_token1] = ACTIONS(1276), + [aux_sym_enum_declaration_token1] = ACTIONS(1276), + [aux_sym_enum_case_token1] = ACTIONS(1276), + [aux_sym_class_declaration_token1] = ACTIONS(1276), + [aux_sym_final_modifier_token1] = ACTIONS(1276), + [aux_sym_abstract_modifier_token1] = ACTIONS(1276), + [aux_sym_readonly_modifier_token1] = ACTIONS(1276), + [aux_sym_visibility_modifier_token1] = ACTIONS(1276), + [aux_sym_visibility_modifier_token2] = ACTIONS(1276), + [aux_sym_visibility_modifier_token3] = ACTIONS(1276), + [aux_sym__arrow_function_header_token1] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1274), + [aux_sym_cast_type_token1] = ACTIONS(1276), + [aux_sym_echo_statement_token1] = ACTIONS(1276), + [anon_sym_unset] = ACTIONS(1276), + [aux_sym_declare_statement_token1] = ACTIONS(1276), + [aux_sym_declare_statement_token2] = ACTIONS(1276), + [sym_float] = ACTIONS(1276), + [aux_sym_try_statement_token1] = ACTIONS(1276), + [aux_sym_goto_statement_token1] = ACTIONS(1276), + [aux_sym_continue_statement_token1] = ACTIONS(1276), + [aux_sym_break_statement_token1] = ACTIONS(1276), + [sym_integer] = ACTIONS(1276), + [aux_sym_return_statement_token1] = ACTIONS(1276), + [aux_sym_throw_expression_token1] = ACTIONS(1276), + [aux_sym_while_statement_token1] = ACTIONS(1276), + [aux_sym_while_statement_token2] = ACTIONS(1276), + [aux_sym_do_statement_token1] = ACTIONS(1276), + [aux_sym_for_statement_token1] = ACTIONS(1276), + [aux_sym_for_statement_token2] = ACTIONS(1276), + [aux_sym_foreach_statement_token1] = ACTIONS(1276), + [aux_sym_foreach_statement_token2] = ACTIONS(1276), + [aux_sym_if_statement_token1] = ACTIONS(1276), + [aux_sym_if_statement_token2] = ACTIONS(1276), + [aux_sym_else_if_clause_token1] = ACTIONS(1276), + [aux_sym_else_clause_token1] = ACTIONS(1276), + [aux_sym_match_expression_token1] = ACTIONS(1276), + [aux_sym_match_default_expression_token1] = ACTIONS(1276), + [aux_sym_switch_statement_token1] = ACTIONS(1276), + [aux_sym_switch_block_token1] = ACTIONS(1276), + [anon_sym_AT] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [aux_sym_clone_expression_token1] = ACTIONS(1276), + [aux_sym_print_intrinsic_token1] = ACTIONS(1276), + [aux_sym_object_creation_expression_token1] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [aux_sym__list_destructing_token1] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_self] = ACTIONS(1276), + [anon_sym_parent] = ACTIONS(1276), + [anon_sym_POUND_LBRACK] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [aux_sym_encapsed_string_token1] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [aux_sym_string_token1] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1274), + [anon_sym_BQUOTE] = ACTIONS(1274), + [sym_boolean] = ACTIONS(1276), + [sym_null] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1274), + [aux_sym_yield_expression_token1] = ACTIONS(1276), + [aux_sym_include_expression_token1] = ACTIONS(1276), + [aux_sym_include_once_expression_token1] = ACTIONS(1276), + [aux_sym_require_expression_token1] = ACTIONS(1276), + [aux_sym_require_once_expression_token1] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [506] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_name] = ACTIONS(1280), + [anon_sym_QMARK_GT] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [aux_sym_function_static_declaration_token1] = ACTIONS(1280), + [aux_sym_global_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_definition_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [aux_sym_trait_declaration_token1] = ACTIONS(1280), + [aux_sym_interface_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_case_token1] = ACTIONS(1280), + [aux_sym_class_declaration_token1] = ACTIONS(1280), + [aux_sym_final_modifier_token1] = ACTIONS(1280), + [aux_sym_abstract_modifier_token1] = ACTIONS(1280), + [aux_sym_readonly_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token2] = ACTIONS(1280), + [aux_sym_visibility_modifier_token3] = ACTIONS(1280), + [aux_sym__arrow_function_header_token1] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1278), + [aux_sym_cast_type_token1] = ACTIONS(1280), + [aux_sym_echo_statement_token1] = ACTIONS(1280), + [anon_sym_unset] = ACTIONS(1280), + [aux_sym_declare_statement_token1] = ACTIONS(1280), + [aux_sym_declare_statement_token2] = ACTIONS(1280), + [sym_float] = ACTIONS(1280), + [aux_sym_try_statement_token1] = ACTIONS(1280), + [aux_sym_goto_statement_token1] = ACTIONS(1280), + [aux_sym_continue_statement_token1] = ACTIONS(1280), + [aux_sym_break_statement_token1] = ACTIONS(1280), + [sym_integer] = ACTIONS(1280), + [aux_sym_return_statement_token1] = ACTIONS(1280), + [aux_sym_throw_expression_token1] = ACTIONS(1280), + [aux_sym_while_statement_token1] = ACTIONS(1280), + [aux_sym_while_statement_token2] = ACTIONS(1280), + [aux_sym_do_statement_token1] = ACTIONS(1280), + [aux_sym_for_statement_token1] = ACTIONS(1280), + [aux_sym_for_statement_token2] = ACTIONS(1280), + [aux_sym_foreach_statement_token1] = ACTIONS(1280), + [aux_sym_foreach_statement_token2] = ACTIONS(1280), + [aux_sym_if_statement_token1] = ACTIONS(1280), + [aux_sym_if_statement_token2] = ACTIONS(1280), + [aux_sym_else_if_clause_token1] = ACTIONS(1280), + [aux_sym_else_clause_token1] = ACTIONS(1280), + [aux_sym_match_expression_token1] = ACTIONS(1280), + [aux_sym_match_default_expression_token1] = ACTIONS(1280), + [aux_sym_switch_statement_token1] = ACTIONS(1280), + [aux_sym_switch_block_token1] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [aux_sym_clone_expression_token1] = ACTIONS(1280), + [aux_sym_print_intrinsic_token1] = ACTIONS(1280), + [aux_sym_object_creation_expression_token1] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [aux_sym__list_destructing_token1] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_self] = ACTIONS(1280), + [anon_sym_parent] = ACTIONS(1280), + [anon_sym_POUND_LBRACK] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [aux_sym_encapsed_string_token1] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [aux_sym_string_token1] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_BQUOTE] = ACTIONS(1278), + [sym_boolean] = ACTIONS(1280), + [sym_null] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1278), + [aux_sym_yield_expression_token1] = ACTIONS(1280), + [aux_sym_include_expression_token1] = ACTIONS(1280), + [aux_sym_include_once_expression_token1] = ACTIONS(1280), + [aux_sym_require_expression_token1] = ACTIONS(1280), + [aux_sym_require_once_expression_token1] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_name] = ACTIONS(1284), + [anon_sym_QMARK_GT] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [aux_sym_function_static_declaration_token1] = ACTIONS(1284), + [aux_sym_global_declaration_token1] = ACTIONS(1284), + [aux_sym_namespace_definition_token1] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [aux_sym_trait_declaration_token1] = ACTIONS(1284), + [aux_sym_interface_declaration_token1] = ACTIONS(1284), + [aux_sym_enum_declaration_token1] = ACTIONS(1284), + [aux_sym_enum_case_token1] = ACTIONS(1284), + [aux_sym_class_declaration_token1] = ACTIONS(1284), + [aux_sym_final_modifier_token1] = ACTIONS(1284), + [aux_sym_abstract_modifier_token1] = ACTIONS(1284), + [aux_sym_readonly_modifier_token1] = ACTIONS(1284), + [aux_sym_visibility_modifier_token1] = ACTIONS(1284), + [aux_sym_visibility_modifier_token2] = ACTIONS(1284), + [aux_sym_visibility_modifier_token3] = ACTIONS(1284), + [aux_sym__arrow_function_header_token1] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1282), + [aux_sym_cast_type_token1] = ACTIONS(1284), + [aux_sym_echo_statement_token1] = ACTIONS(1284), + [anon_sym_unset] = ACTIONS(1284), + [aux_sym_declare_statement_token1] = ACTIONS(1284), + [aux_sym_declare_statement_token2] = ACTIONS(1284), + [sym_float] = ACTIONS(1284), + [aux_sym_try_statement_token1] = ACTIONS(1284), + [aux_sym_goto_statement_token1] = ACTIONS(1284), + [aux_sym_continue_statement_token1] = ACTIONS(1284), + [aux_sym_break_statement_token1] = ACTIONS(1284), + [sym_integer] = ACTIONS(1284), + [aux_sym_return_statement_token1] = ACTIONS(1284), + [aux_sym_throw_expression_token1] = ACTIONS(1284), + [aux_sym_while_statement_token1] = ACTIONS(1284), + [aux_sym_while_statement_token2] = ACTIONS(1284), + [aux_sym_do_statement_token1] = ACTIONS(1284), + [aux_sym_for_statement_token1] = ACTIONS(1284), + [aux_sym_for_statement_token2] = ACTIONS(1284), + [aux_sym_foreach_statement_token1] = ACTIONS(1284), + [aux_sym_foreach_statement_token2] = ACTIONS(1284), + [aux_sym_if_statement_token1] = ACTIONS(1284), + [aux_sym_if_statement_token2] = ACTIONS(1284), + [aux_sym_else_if_clause_token1] = ACTIONS(1284), + [aux_sym_else_clause_token1] = ACTIONS(1284), + [aux_sym_match_expression_token1] = ACTIONS(1284), + [aux_sym_match_default_expression_token1] = ACTIONS(1284), + [aux_sym_switch_statement_token1] = ACTIONS(1284), + [aux_sym_switch_block_token1] = ACTIONS(1284), + [anon_sym_AT] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [aux_sym_clone_expression_token1] = ACTIONS(1284), + [aux_sym_print_intrinsic_token1] = ACTIONS(1284), + [aux_sym_object_creation_expression_token1] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [aux_sym__list_destructing_token1] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_self] = ACTIONS(1284), + [anon_sym_parent] = ACTIONS(1284), + [anon_sym_POUND_LBRACK] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [aux_sym_encapsed_string_token1] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [aux_sym_string_token1] = ACTIONS(1282), + [anon_sym_LT_LT_LT] = ACTIONS(1282), + [anon_sym_BQUOTE] = ACTIONS(1282), + [sym_boolean] = ACTIONS(1284), + [sym_null] = ACTIONS(1284), + [anon_sym_DOLLAR] = ACTIONS(1282), + [aux_sym_yield_expression_token1] = ACTIONS(1284), + [aux_sym_include_expression_token1] = ACTIONS(1284), + [aux_sym_include_once_expression_token1] = ACTIONS(1284), + [aux_sym_require_expression_token1] = ACTIONS(1284), + [aux_sym_require_once_expression_token1] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + }, + [508] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_name] = ACTIONS(1288), + [anon_sym_QMARK_GT] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [aux_sym_function_static_declaration_token1] = ACTIONS(1288), + [aux_sym_global_declaration_token1] = ACTIONS(1288), + [aux_sym_namespace_definition_token1] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1288), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [aux_sym_trait_declaration_token1] = ACTIONS(1288), + [aux_sym_interface_declaration_token1] = ACTIONS(1288), + [aux_sym_enum_declaration_token1] = ACTIONS(1288), + [aux_sym_enum_case_token1] = ACTIONS(1288), + [aux_sym_class_declaration_token1] = ACTIONS(1288), + [aux_sym_final_modifier_token1] = ACTIONS(1288), + [aux_sym_abstract_modifier_token1] = ACTIONS(1288), + [aux_sym_readonly_modifier_token1] = ACTIONS(1288), + [aux_sym_visibility_modifier_token1] = ACTIONS(1288), + [aux_sym_visibility_modifier_token2] = ACTIONS(1288), + [aux_sym_visibility_modifier_token3] = ACTIONS(1288), + [aux_sym__arrow_function_header_token1] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1286), + [aux_sym_cast_type_token1] = ACTIONS(1288), + [aux_sym_echo_statement_token1] = ACTIONS(1288), + [anon_sym_unset] = ACTIONS(1288), + [aux_sym_declare_statement_token1] = ACTIONS(1288), + [aux_sym_declare_statement_token2] = ACTIONS(1288), + [sym_float] = ACTIONS(1288), + [aux_sym_try_statement_token1] = ACTIONS(1288), + [aux_sym_goto_statement_token1] = ACTIONS(1288), + [aux_sym_continue_statement_token1] = ACTIONS(1288), + [aux_sym_break_statement_token1] = ACTIONS(1288), + [sym_integer] = ACTIONS(1288), + [aux_sym_return_statement_token1] = ACTIONS(1288), + [aux_sym_throw_expression_token1] = ACTIONS(1288), + [aux_sym_while_statement_token1] = ACTIONS(1288), + [aux_sym_while_statement_token2] = ACTIONS(1288), + [aux_sym_do_statement_token1] = ACTIONS(1288), + [aux_sym_for_statement_token1] = ACTIONS(1288), + [aux_sym_for_statement_token2] = ACTIONS(1288), + [aux_sym_foreach_statement_token1] = ACTIONS(1288), + [aux_sym_foreach_statement_token2] = ACTIONS(1288), + [aux_sym_if_statement_token1] = ACTIONS(1288), + [aux_sym_if_statement_token2] = ACTIONS(1288), + [aux_sym_else_if_clause_token1] = ACTIONS(1288), + [aux_sym_else_clause_token1] = ACTIONS(1288), + [aux_sym_match_expression_token1] = ACTIONS(1288), + [aux_sym_match_default_expression_token1] = ACTIONS(1288), + [aux_sym_switch_statement_token1] = ACTIONS(1288), + [aux_sym_switch_block_token1] = ACTIONS(1288), + [anon_sym_AT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [aux_sym_clone_expression_token1] = ACTIONS(1288), + [aux_sym_print_intrinsic_token1] = ACTIONS(1288), + [aux_sym_object_creation_expression_token1] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [aux_sym__list_destructing_token1] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_self] = ACTIONS(1288), + [anon_sym_parent] = ACTIONS(1288), + [anon_sym_POUND_LBRACK] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [aux_sym_encapsed_string_token1] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [aux_sym_string_token1] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_BQUOTE] = ACTIONS(1286), + [sym_boolean] = ACTIONS(1288), + [sym_null] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1286), + [aux_sym_yield_expression_token1] = ACTIONS(1288), + [aux_sym_include_expression_token1] = ACTIONS(1288), + [aux_sym_include_once_expression_token1] = ACTIONS(1288), + [aux_sym_require_expression_token1] = ACTIONS(1288), + [aux_sym_require_once_expression_token1] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_name] = ACTIONS(1292), + [anon_sym_QMARK_GT] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [aux_sym_function_static_declaration_token1] = ACTIONS(1292), + [aux_sym_global_declaration_token1] = ACTIONS(1292), + [aux_sym_namespace_definition_token1] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [aux_sym_trait_declaration_token1] = ACTIONS(1292), + [aux_sym_interface_declaration_token1] = ACTIONS(1292), + [aux_sym_enum_declaration_token1] = ACTIONS(1292), + [aux_sym_enum_case_token1] = ACTIONS(1292), + [aux_sym_class_declaration_token1] = ACTIONS(1292), + [aux_sym_final_modifier_token1] = ACTIONS(1292), + [aux_sym_abstract_modifier_token1] = ACTIONS(1292), + [aux_sym_readonly_modifier_token1] = ACTIONS(1292), + [aux_sym_visibility_modifier_token1] = ACTIONS(1292), + [aux_sym_visibility_modifier_token2] = ACTIONS(1292), + [aux_sym_visibility_modifier_token3] = ACTIONS(1292), + [aux_sym__arrow_function_header_token1] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1290), + [aux_sym_cast_type_token1] = ACTIONS(1292), + [aux_sym_echo_statement_token1] = ACTIONS(1292), + [anon_sym_unset] = ACTIONS(1292), + [aux_sym_declare_statement_token1] = ACTIONS(1292), + [aux_sym_declare_statement_token2] = ACTIONS(1292), + [sym_float] = ACTIONS(1292), + [aux_sym_try_statement_token1] = ACTIONS(1292), + [aux_sym_goto_statement_token1] = ACTIONS(1292), + [aux_sym_continue_statement_token1] = ACTIONS(1292), + [aux_sym_break_statement_token1] = ACTIONS(1292), + [sym_integer] = ACTIONS(1292), + [aux_sym_return_statement_token1] = ACTIONS(1292), + [aux_sym_throw_expression_token1] = ACTIONS(1292), + [aux_sym_while_statement_token1] = ACTIONS(1292), + [aux_sym_while_statement_token2] = ACTIONS(1292), + [aux_sym_do_statement_token1] = ACTIONS(1292), + [aux_sym_for_statement_token1] = ACTIONS(1292), + [aux_sym_for_statement_token2] = ACTIONS(1292), + [aux_sym_foreach_statement_token1] = ACTIONS(1292), + [aux_sym_foreach_statement_token2] = ACTIONS(1292), + [aux_sym_if_statement_token1] = ACTIONS(1292), + [aux_sym_if_statement_token2] = ACTIONS(1292), + [aux_sym_else_if_clause_token1] = ACTIONS(1292), + [aux_sym_else_clause_token1] = ACTIONS(1292), + [aux_sym_match_expression_token1] = ACTIONS(1292), + [aux_sym_match_default_expression_token1] = ACTIONS(1292), + [aux_sym_switch_statement_token1] = ACTIONS(1292), + [aux_sym_switch_block_token1] = ACTIONS(1292), + [anon_sym_AT] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [aux_sym_clone_expression_token1] = ACTIONS(1292), + [aux_sym_print_intrinsic_token1] = ACTIONS(1292), + [aux_sym_object_creation_expression_token1] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [aux_sym__list_destructing_token1] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_self] = ACTIONS(1292), + [anon_sym_parent] = ACTIONS(1292), + [anon_sym_POUND_LBRACK] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [aux_sym_encapsed_string_token1] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [aux_sym_string_token1] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_BQUOTE] = ACTIONS(1290), + [sym_boolean] = ACTIONS(1292), + [sym_null] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1290), + [aux_sym_yield_expression_token1] = ACTIONS(1292), + [aux_sym_include_expression_token1] = ACTIONS(1292), + [aux_sym_include_once_expression_token1] = ACTIONS(1292), + [aux_sym_require_expression_token1] = ACTIONS(1292), + [aux_sym_require_once_expression_token1] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_name] = ACTIONS(1296), + [anon_sym_QMARK_GT] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [aux_sym_function_static_declaration_token1] = ACTIONS(1296), + [aux_sym_global_declaration_token1] = ACTIONS(1296), + [aux_sym_namespace_definition_token1] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1296), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [aux_sym_trait_declaration_token1] = ACTIONS(1296), + [aux_sym_interface_declaration_token1] = ACTIONS(1296), + [aux_sym_enum_declaration_token1] = ACTIONS(1296), + [aux_sym_enum_case_token1] = ACTIONS(1296), + [aux_sym_class_declaration_token1] = ACTIONS(1296), + [aux_sym_final_modifier_token1] = ACTIONS(1296), + [aux_sym_abstract_modifier_token1] = ACTIONS(1296), + [aux_sym_readonly_modifier_token1] = ACTIONS(1296), + [aux_sym_visibility_modifier_token1] = ACTIONS(1296), + [aux_sym_visibility_modifier_token2] = ACTIONS(1296), + [aux_sym_visibility_modifier_token3] = ACTIONS(1296), + [aux_sym__arrow_function_header_token1] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1294), + [aux_sym_cast_type_token1] = ACTIONS(1296), + [aux_sym_echo_statement_token1] = ACTIONS(1296), + [anon_sym_unset] = ACTIONS(1296), + [aux_sym_declare_statement_token1] = ACTIONS(1296), + [aux_sym_declare_statement_token2] = ACTIONS(1296), + [sym_float] = ACTIONS(1296), + [aux_sym_try_statement_token1] = ACTIONS(1296), + [aux_sym_goto_statement_token1] = ACTIONS(1296), + [aux_sym_continue_statement_token1] = ACTIONS(1296), + [aux_sym_break_statement_token1] = ACTIONS(1296), + [sym_integer] = ACTIONS(1296), + [aux_sym_return_statement_token1] = ACTIONS(1296), + [aux_sym_throw_expression_token1] = ACTIONS(1296), + [aux_sym_while_statement_token1] = ACTIONS(1296), + [aux_sym_while_statement_token2] = ACTIONS(1296), + [aux_sym_do_statement_token1] = ACTIONS(1296), + [aux_sym_for_statement_token1] = ACTIONS(1296), + [aux_sym_for_statement_token2] = ACTIONS(1296), + [aux_sym_foreach_statement_token1] = ACTIONS(1296), + [aux_sym_foreach_statement_token2] = ACTIONS(1296), + [aux_sym_if_statement_token1] = ACTIONS(1296), + [aux_sym_if_statement_token2] = ACTIONS(1296), + [aux_sym_else_if_clause_token1] = ACTIONS(1296), + [aux_sym_else_clause_token1] = ACTIONS(1296), + [aux_sym_match_expression_token1] = ACTIONS(1296), + [aux_sym_match_default_expression_token1] = ACTIONS(1296), + [aux_sym_switch_statement_token1] = ACTIONS(1296), + [aux_sym_switch_block_token1] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [aux_sym_clone_expression_token1] = ACTIONS(1296), + [aux_sym_print_intrinsic_token1] = ACTIONS(1296), + [aux_sym_object_creation_expression_token1] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [aux_sym__list_destructing_token1] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_self] = ACTIONS(1296), + [anon_sym_parent] = ACTIONS(1296), + [anon_sym_POUND_LBRACK] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [aux_sym_encapsed_string_token1] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [aux_sym_string_token1] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [sym_boolean] = ACTIONS(1296), + [sym_null] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [aux_sym_yield_expression_token1] = ACTIONS(1296), + [aux_sym_include_expression_token1] = ACTIONS(1296), + [aux_sym_include_once_expression_token1] = ACTIONS(1296), + [aux_sym_require_expression_token1] = ACTIONS(1296), + [aux_sym_require_once_expression_token1] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [511] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_name] = ACTIONS(1300), + [anon_sym_QMARK_GT] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [aux_sym_function_static_declaration_token1] = ACTIONS(1300), + [aux_sym_global_declaration_token1] = ACTIONS(1300), + [aux_sym_namespace_definition_token1] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1300), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [aux_sym_trait_declaration_token1] = ACTIONS(1300), + [aux_sym_interface_declaration_token1] = ACTIONS(1300), + [aux_sym_enum_declaration_token1] = ACTIONS(1300), + [aux_sym_enum_case_token1] = ACTIONS(1300), + [aux_sym_class_declaration_token1] = ACTIONS(1300), + [aux_sym_final_modifier_token1] = ACTIONS(1300), + [aux_sym_abstract_modifier_token1] = ACTIONS(1300), + [aux_sym_readonly_modifier_token1] = ACTIONS(1300), + [aux_sym_visibility_modifier_token1] = ACTIONS(1300), + [aux_sym_visibility_modifier_token2] = ACTIONS(1300), + [aux_sym_visibility_modifier_token3] = ACTIONS(1300), + [aux_sym__arrow_function_header_token1] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1298), + [aux_sym_cast_type_token1] = ACTIONS(1300), + [aux_sym_echo_statement_token1] = ACTIONS(1300), + [anon_sym_unset] = ACTIONS(1300), + [aux_sym_declare_statement_token1] = ACTIONS(1300), + [aux_sym_declare_statement_token2] = ACTIONS(1300), + [sym_float] = ACTIONS(1300), + [aux_sym_try_statement_token1] = ACTIONS(1300), + [aux_sym_goto_statement_token1] = ACTIONS(1300), + [aux_sym_continue_statement_token1] = ACTIONS(1300), + [aux_sym_break_statement_token1] = ACTIONS(1300), + [sym_integer] = ACTIONS(1300), + [aux_sym_return_statement_token1] = ACTIONS(1300), + [aux_sym_throw_expression_token1] = ACTIONS(1300), + [aux_sym_while_statement_token1] = ACTIONS(1300), + [aux_sym_while_statement_token2] = ACTIONS(1300), + [aux_sym_do_statement_token1] = ACTIONS(1300), + [aux_sym_for_statement_token1] = ACTIONS(1300), + [aux_sym_for_statement_token2] = ACTIONS(1300), + [aux_sym_foreach_statement_token1] = ACTIONS(1300), + [aux_sym_foreach_statement_token2] = ACTIONS(1300), + [aux_sym_if_statement_token1] = ACTIONS(1300), + [aux_sym_if_statement_token2] = ACTIONS(1300), + [aux_sym_else_if_clause_token1] = ACTIONS(1300), + [aux_sym_else_clause_token1] = ACTIONS(1300), + [aux_sym_match_expression_token1] = ACTIONS(1300), + [aux_sym_match_default_expression_token1] = ACTIONS(1300), + [aux_sym_switch_statement_token1] = ACTIONS(1300), + [aux_sym_switch_block_token1] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [aux_sym_clone_expression_token1] = ACTIONS(1300), + [aux_sym_print_intrinsic_token1] = ACTIONS(1300), + [aux_sym_object_creation_expression_token1] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [aux_sym__list_destructing_token1] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_self] = ACTIONS(1300), + [anon_sym_parent] = ACTIONS(1300), + [anon_sym_POUND_LBRACK] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [aux_sym_encapsed_string_token1] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [aux_sym_string_token1] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [sym_boolean] = ACTIONS(1300), + [sym_null] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1298), + [aux_sym_yield_expression_token1] = ACTIONS(1300), + [aux_sym_include_expression_token1] = ACTIONS(1300), + [aux_sym_include_once_expression_token1] = ACTIONS(1300), + [aux_sym_require_expression_token1] = ACTIONS(1300), + [aux_sym_require_once_expression_token1] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_name] = ACTIONS(1304), + [anon_sym_QMARK_GT] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [aux_sym_function_static_declaration_token1] = ACTIONS(1304), + [aux_sym_global_declaration_token1] = ACTIONS(1304), + [aux_sym_namespace_definition_token1] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1304), + [anon_sym_BSLASH] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [aux_sym_trait_declaration_token1] = ACTIONS(1304), + [aux_sym_interface_declaration_token1] = ACTIONS(1304), + [aux_sym_enum_declaration_token1] = ACTIONS(1304), + [aux_sym_enum_case_token1] = ACTIONS(1304), + [aux_sym_class_declaration_token1] = ACTIONS(1304), + [aux_sym_final_modifier_token1] = ACTIONS(1304), + [aux_sym_abstract_modifier_token1] = ACTIONS(1304), + [aux_sym_readonly_modifier_token1] = ACTIONS(1304), + [aux_sym_visibility_modifier_token1] = ACTIONS(1304), + [aux_sym_visibility_modifier_token2] = ACTIONS(1304), + [aux_sym_visibility_modifier_token3] = ACTIONS(1304), + [aux_sym__arrow_function_header_token1] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1302), + [aux_sym_cast_type_token1] = ACTIONS(1304), + [aux_sym_echo_statement_token1] = ACTIONS(1304), + [anon_sym_unset] = ACTIONS(1304), + [aux_sym_declare_statement_token1] = ACTIONS(1304), + [aux_sym_declare_statement_token2] = ACTIONS(1304), + [sym_float] = ACTIONS(1304), + [aux_sym_try_statement_token1] = ACTIONS(1304), + [aux_sym_goto_statement_token1] = ACTIONS(1304), + [aux_sym_continue_statement_token1] = ACTIONS(1304), + [aux_sym_break_statement_token1] = ACTIONS(1304), + [sym_integer] = ACTIONS(1304), + [aux_sym_return_statement_token1] = ACTIONS(1304), + [aux_sym_throw_expression_token1] = ACTIONS(1304), + [aux_sym_while_statement_token1] = ACTIONS(1304), + [aux_sym_while_statement_token2] = ACTIONS(1304), + [aux_sym_do_statement_token1] = ACTIONS(1304), + [aux_sym_for_statement_token1] = ACTIONS(1304), + [aux_sym_for_statement_token2] = ACTIONS(1304), + [aux_sym_foreach_statement_token1] = ACTIONS(1304), + [aux_sym_foreach_statement_token2] = ACTIONS(1304), + [aux_sym_if_statement_token1] = ACTIONS(1304), + [aux_sym_if_statement_token2] = ACTIONS(1304), + [aux_sym_else_if_clause_token1] = ACTIONS(1304), + [aux_sym_else_clause_token1] = ACTIONS(1304), + [aux_sym_match_expression_token1] = ACTIONS(1304), + [aux_sym_match_default_expression_token1] = ACTIONS(1304), + [aux_sym_switch_statement_token1] = ACTIONS(1304), + [aux_sym_switch_block_token1] = ACTIONS(1304), + [anon_sym_AT] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [aux_sym_clone_expression_token1] = ACTIONS(1304), + [aux_sym_print_intrinsic_token1] = ACTIONS(1304), + [aux_sym_object_creation_expression_token1] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [aux_sym__list_destructing_token1] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_self] = ACTIONS(1304), + [anon_sym_parent] = ACTIONS(1304), + [anon_sym_POUND_LBRACK] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [aux_sym_encapsed_string_token1] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [aux_sym_string_token1] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_boolean] = ACTIONS(1304), + [sym_null] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1302), + [aux_sym_yield_expression_token1] = ACTIONS(1304), + [aux_sym_include_expression_token1] = ACTIONS(1304), + [aux_sym_include_once_expression_token1] = ACTIONS(1304), + [aux_sym_require_expression_token1] = ACTIONS(1304), + [aux_sym_require_once_expression_token1] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_name] = ACTIONS(1308), + [anon_sym_QMARK_GT] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [aux_sym_function_static_declaration_token1] = ACTIONS(1308), + [aux_sym_global_declaration_token1] = ACTIONS(1308), + [aux_sym_namespace_definition_token1] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1308), + [anon_sym_BSLASH] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [aux_sym_trait_declaration_token1] = ACTIONS(1308), + [aux_sym_interface_declaration_token1] = ACTIONS(1308), + [aux_sym_enum_declaration_token1] = ACTIONS(1308), + [aux_sym_enum_case_token1] = ACTIONS(1308), + [aux_sym_class_declaration_token1] = ACTIONS(1308), + [aux_sym_final_modifier_token1] = ACTIONS(1308), + [aux_sym_abstract_modifier_token1] = ACTIONS(1308), + [aux_sym_readonly_modifier_token1] = ACTIONS(1308), + [aux_sym_visibility_modifier_token1] = ACTIONS(1308), + [aux_sym_visibility_modifier_token2] = ACTIONS(1308), + [aux_sym_visibility_modifier_token3] = ACTIONS(1308), + [aux_sym__arrow_function_header_token1] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1306), + [aux_sym_cast_type_token1] = ACTIONS(1308), + [aux_sym_echo_statement_token1] = ACTIONS(1308), + [anon_sym_unset] = ACTIONS(1308), + [aux_sym_declare_statement_token1] = ACTIONS(1308), + [aux_sym_declare_statement_token2] = ACTIONS(1308), + [sym_float] = ACTIONS(1308), + [aux_sym_try_statement_token1] = ACTIONS(1308), + [aux_sym_goto_statement_token1] = ACTIONS(1308), + [aux_sym_continue_statement_token1] = ACTIONS(1308), + [aux_sym_break_statement_token1] = ACTIONS(1308), + [sym_integer] = ACTIONS(1308), + [aux_sym_return_statement_token1] = ACTIONS(1308), + [aux_sym_throw_expression_token1] = ACTIONS(1308), + [aux_sym_while_statement_token1] = ACTIONS(1308), + [aux_sym_while_statement_token2] = ACTIONS(1308), + [aux_sym_do_statement_token1] = ACTIONS(1308), + [aux_sym_for_statement_token1] = ACTIONS(1308), + [aux_sym_for_statement_token2] = ACTIONS(1308), + [aux_sym_foreach_statement_token1] = ACTIONS(1308), + [aux_sym_foreach_statement_token2] = ACTIONS(1308), + [aux_sym_if_statement_token1] = ACTIONS(1308), + [aux_sym_if_statement_token2] = ACTIONS(1308), + [aux_sym_else_if_clause_token1] = ACTIONS(1308), + [aux_sym_else_clause_token1] = ACTIONS(1308), + [aux_sym_match_expression_token1] = ACTIONS(1308), + [aux_sym_match_default_expression_token1] = ACTIONS(1308), + [aux_sym_switch_statement_token1] = ACTIONS(1308), + [aux_sym_switch_block_token1] = ACTIONS(1308), + [anon_sym_AT] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [aux_sym_clone_expression_token1] = ACTIONS(1308), + [aux_sym_print_intrinsic_token1] = ACTIONS(1308), + [aux_sym_object_creation_expression_token1] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [aux_sym__list_destructing_token1] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_self] = ACTIONS(1308), + [anon_sym_parent] = ACTIONS(1308), + [anon_sym_POUND_LBRACK] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [aux_sym_encapsed_string_token1] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [aux_sym_string_token1] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [sym_boolean] = ACTIONS(1308), + [sym_null] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1306), + [aux_sym_yield_expression_token1] = ACTIONS(1308), + [aux_sym_include_expression_token1] = ACTIONS(1308), + [aux_sym_include_once_expression_token1] = ACTIONS(1308), + [aux_sym_require_expression_token1] = ACTIONS(1308), + [aux_sym_require_once_expression_token1] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_name] = ACTIONS(1312), + [anon_sym_QMARK_GT] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [aux_sym_function_static_declaration_token1] = ACTIONS(1312), + [aux_sym_global_declaration_token1] = ACTIONS(1312), + [aux_sym_namespace_definition_token1] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1312), + [anon_sym_BSLASH] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [aux_sym_trait_declaration_token1] = ACTIONS(1312), + [aux_sym_interface_declaration_token1] = ACTIONS(1312), + [aux_sym_enum_declaration_token1] = ACTIONS(1312), + [aux_sym_enum_case_token1] = ACTIONS(1312), + [aux_sym_class_declaration_token1] = ACTIONS(1312), + [aux_sym_final_modifier_token1] = ACTIONS(1312), + [aux_sym_abstract_modifier_token1] = ACTIONS(1312), + [aux_sym_readonly_modifier_token1] = ACTIONS(1312), + [aux_sym_visibility_modifier_token1] = ACTIONS(1312), + [aux_sym_visibility_modifier_token2] = ACTIONS(1312), + [aux_sym_visibility_modifier_token3] = ACTIONS(1312), + [aux_sym__arrow_function_header_token1] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1310), + [aux_sym_cast_type_token1] = ACTIONS(1312), + [aux_sym_echo_statement_token1] = ACTIONS(1312), + [anon_sym_unset] = ACTIONS(1312), + [aux_sym_declare_statement_token1] = ACTIONS(1312), + [aux_sym_declare_statement_token2] = ACTIONS(1312), + [sym_float] = ACTIONS(1312), + [aux_sym_try_statement_token1] = ACTIONS(1312), + [aux_sym_goto_statement_token1] = ACTIONS(1312), + [aux_sym_continue_statement_token1] = ACTIONS(1312), + [aux_sym_break_statement_token1] = ACTIONS(1312), + [sym_integer] = ACTIONS(1312), + [aux_sym_return_statement_token1] = ACTIONS(1312), + [aux_sym_throw_expression_token1] = ACTIONS(1312), + [aux_sym_while_statement_token1] = ACTIONS(1312), + [aux_sym_while_statement_token2] = ACTIONS(1312), + [aux_sym_do_statement_token1] = ACTIONS(1312), + [aux_sym_for_statement_token1] = ACTIONS(1312), + [aux_sym_for_statement_token2] = ACTIONS(1312), + [aux_sym_foreach_statement_token1] = ACTIONS(1312), + [aux_sym_foreach_statement_token2] = ACTIONS(1312), + [aux_sym_if_statement_token1] = ACTIONS(1312), + [aux_sym_if_statement_token2] = ACTIONS(1312), + [aux_sym_else_if_clause_token1] = ACTIONS(1312), + [aux_sym_else_clause_token1] = ACTIONS(1312), + [aux_sym_match_expression_token1] = ACTIONS(1312), + [aux_sym_match_default_expression_token1] = ACTIONS(1312), + [aux_sym_switch_statement_token1] = ACTIONS(1312), + [aux_sym_switch_block_token1] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [aux_sym_clone_expression_token1] = ACTIONS(1312), + [aux_sym_print_intrinsic_token1] = ACTIONS(1312), + [aux_sym_object_creation_expression_token1] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [aux_sym__list_destructing_token1] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_self] = ACTIONS(1312), + [anon_sym_parent] = ACTIONS(1312), + [anon_sym_POUND_LBRACK] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [aux_sym_encapsed_string_token1] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [aux_sym_string_token1] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [sym_boolean] = ACTIONS(1312), + [sym_null] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1310), + [aux_sym_yield_expression_token1] = ACTIONS(1312), + [aux_sym_include_expression_token1] = ACTIONS(1312), + [aux_sym_include_once_expression_token1] = ACTIONS(1312), + [aux_sym_require_expression_token1] = ACTIONS(1312), + [aux_sym_require_once_expression_token1] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [515] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_name] = ACTIONS(1316), + [anon_sym_QMARK_GT] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [aux_sym_function_static_declaration_token1] = ACTIONS(1316), + [aux_sym_global_declaration_token1] = ACTIONS(1316), + [aux_sym_namespace_definition_token1] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1316), + [anon_sym_BSLASH] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [aux_sym_trait_declaration_token1] = ACTIONS(1316), + [aux_sym_interface_declaration_token1] = ACTIONS(1316), + [aux_sym_enum_declaration_token1] = ACTIONS(1316), + [aux_sym_enum_case_token1] = ACTIONS(1316), + [aux_sym_class_declaration_token1] = ACTIONS(1316), + [aux_sym_final_modifier_token1] = ACTIONS(1316), + [aux_sym_abstract_modifier_token1] = ACTIONS(1316), + [aux_sym_readonly_modifier_token1] = ACTIONS(1316), + [aux_sym_visibility_modifier_token1] = ACTIONS(1316), + [aux_sym_visibility_modifier_token2] = ACTIONS(1316), + [aux_sym_visibility_modifier_token3] = ACTIONS(1316), + [aux_sym__arrow_function_header_token1] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1314), + [aux_sym_cast_type_token1] = ACTIONS(1316), + [aux_sym_echo_statement_token1] = ACTIONS(1316), + [anon_sym_unset] = ACTIONS(1316), + [aux_sym_declare_statement_token1] = ACTIONS(1316), + [aux_sym_declare_statement_token2] = ACTIONS(1316), + [sym_float] = ACTIONS(1316), + [aux_sym_try_statement_token1] = ACTIONS(1316), + [aux_sym_goto_statement_token1] = ACTIONS(1316), + [aux_sym_continue_statement_token1] = ACTIONS(1316), + [aux_sym_break_statement_token1] = ACTIONS(1316), + [sym_integer] = ACTIONS(1316), + [aux_sym_return_statement_token1] = ACTIONS(1316), + [aux_sym_throw_expression_token1] = ACTIONS(1316), + [aux_sym_while_statement_token1] = ACTIONS(1316), + [aux_sym_while_statement_token2] = ACTIONS(1316), + [aux_sym_do_statement_token1] = ACTIONS(1316), + [aux_sym_for_statement_token1] = ACTIONS(1316), + [aux_sym_for_statement_token2] = ACTIONS(1316), + [aux_sym_foreach_statement_token1] = ACTIONS(1316), + [aux_sym_foreach_statement_token2] = ACTIONS(1316), + [aux_sym_if_statement_token1] = ACTIONS(1316), + [aux_sym_if_statement_token2] = ACTIONS(1316), + [aux_sym_else_if_clause_token1] = ACTIONS(1316), + [aux_sym_else_clause_token1] = ACTIONS(1316), + [aux_sym_match_expression_token1] = ACTIONS(1316), + [aux_sym_match_default_expression_token1] = ACTIONS(1316), + [aux_sym_switch_statement_token1] = ACTIONS(1316), + [aux_sym_switch_block_token1] = ACTIONS(1316), + [anon_sym_AT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [aux_sym_clone_expression_token1] = ACTIONS(1316), + [aux_sym_print_intrinsic_token1] = ACTIONS(1316), + [aux_sym_object_creation_expression_token1] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [aux_sym__list_destructing_token1] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_self] = ACTIONS(1316), + [anon_sym_parent] = ACTIONS(1316), + [anon_sym_POUND_LBRACK] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [aux_sym_encapsed_string_token1] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [aux_sym_string_token1] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [sym_boolean] = ACTIONS(1316), + [sym_null] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1314), + [aux_sym_yield_expression_token1] = ACTIONS(1316), + [aux_sym_include_expression_token1] = ACTIONS(1316), + [aux_sym_include_once_expression_token1] = ACTIONS(1316), + [aux_sym_require_expression_token1] = ACTIONS(1316), + [aux_sym_require_once_expression_token1] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + }, + [516] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_name] = ACTIONS(1320), + [anon_sym_QMARK_GT] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_function_static_declaration_token1] = ACTIONS(1320), + [aux_sym_global_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_definition_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1320), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [aux_sym_trait_declaration_token1] = ACTIONS(1320), + [aux_sym_interface_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_case_token1] = ACTIONS(1320), + [aux_sym_class_declaration_token1] = ACTIONS(1320), + [aux_sym_final_modifier_token1] = ACTIONS(1320), + [aux_sym_abstract_modifier_token1] = ACTIONS(1320), + [aux_sym_readonly_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token2] = ACTIONS(1320), + [aux_sym_visibility_modifier_token3] = ACTIONS(1320), + [aux_sym__arrow_function_header_token1] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1318), + [aux_sym_cast_type_token1] = ACTIONS(1320), + [aux_sym_echo_statement_token1] = ACTIONS(1320), + [anon_sym_unset] = ACTIONS(1320), + [aux_sym_declare_statement_token1] = ACTIONS(1320), + [aux_sym_declare_statement_token2] = ACTIONS(1320), + [sym_float] = ACTIONS(1320), + [aux_sym_try_statement_token1] = ACTIONS(1320), + [aux_sym_goto_statement_token1] = ACTIONS(1320), + [aux_sym_continue_statement_token1] = ACTIONS(1320), + [aux_sym_break_statement_token1] = ACTIONS(1320), + [sym_integer] = ACTIONS(1320), + [aux_sym_return_statement_token1] = ACTIONS(1320), + [aux_sym_throw_expression_token1] = ACTIONS(1320), + [aux_sym_while_statement_token1] = ACTIONS(1320), + [aux_sym_while_statement_token2] = ACTIONS(1320), + [aux_sym_do_statement_token1] = ACTIONS(1320), + [aux_sym_for_statement_token1] = ACTIONS(1320), + [aux_sym_for_statement_token2] = ACTIONS(1320), + [aux_sym_foreach_statement_token1] = ACTIONS(1320), + [aux_sym_foreach_statement_token2] = ACTIONS(1320), + [aux_sym_if_statement_token1] = ACTIONS(1320), + [aux_sym_if_statement_token2] = ACTIONS(1320), + [aux_sym_else_if_clause_token1] = ACTIONS(1320), + [aux_sym_else_clause_token1] = ACTIONS(1320), + [aux_sym_match_expression_token1] = ACTIONS(1320), + [aux_sym_match_default_expression_token1] = ACTIONS(1320), + [aux_sym_switch_statement_token1] = ACTIONS(1320), + [aux_sym_switch_block_token1] = ACTIONS(1320), + [anon_sym_AT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [aux_sym_clone_expression_token1] = ACTIONS(1320), + [aux_sym_print_intrinsic_token1] = ACTIONS(1320), + [aux_sym_object_creation_expression_token1] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [aux_sym__list_destructing_token1] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_self] = ACTIONS(1320), + [anon_sym_parent] = ACTIONS(1320), + [anon_sym_POUND_LBRACK] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [aux_sym_encapsed_string_token1] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [aux_sym_string_token1] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [sym_boolean] = ACTIONS(1320), + [sym_null] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1318), + [aux_sym_yield_expression_token1] = ACTIONS(1320), + [aux_sym_include_expression_token1] = ACTIONS(1320), + [aux_sym_include_once_expression_token1] = ACTIONS(1320), + [aux_sym_require_expression_token1] = ACTIONS(1320), + [aux_sym_require_once_expression_token1] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [517] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_name] = ACTIONS(1324), + [anon_sym_QMARK_GT] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [aux_sym_function_static_declaration_token1] = ACTIONS(1324), + [aux_sym_global_declaration_token1] = ACTIONS(1324), + [aux_sym_namespace_definition_token1] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1324), + [anon_sym_BSLASH] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [aux_sym_trait_declaration_token1] = ACTIONS(1324), + [aux_sym_interface_declaration_token1] = ACTIONS(1324), + [aux_sym_enum_declaration_token1] = ACTIONS(1324), + [aux_sym_enum_case_token1] = ACTIONS(1324), + [aux_sym_class_declaration_token1] = ACTIONS(1324), + [aux_sym_final_modifier_token1] = ACTIONS(1324), + [aux_sym_abstract_modifier_token1] = ACTIONS(1324), + [aux_sym_readonly_modifier_token1] = ACTIONS(1324), + [aux_sym_visibility_modifier_token1] = ACTIONS(1324), + [aux_sym_visibility_modifier_token2] = ACTIONS(1324), + [aux_sym_visibility_modifier_token3] = ACTIONS(1324), + [aux_sym__arrow_function_header_token1] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1322), + [aux_sym_cast_type_token1] = ACTIONS(1324), + [aux_sym_echo_statement_token1] = ACTIONS(1324), + [anon_sym_unset] = ACTIONS(1324), + [aux_sym_declare_statement_token1] = ACTIONS(1324), + [aux_sym_declare_statement_token2] = ACTIONS(1324), + [sym_float] = ACTIONS(1324), + [aux_sym_try_statement_token1] = ACTIONS(1324), + [aux_sym_goto_statement_token1] = ACTIONS(1324), + [aux_sym_continue_statement_token1] = ACTIONS(1324), + [aux_sym_break_statement_token1] = ACTIONS(1324), + [sym_integer] = ACTIONS(1324), + [aux_sym_return_statement_token1] = ACTIONS(1324), + [aux_sym_throw_expression_token1] = ACTIONS(1324), + [aux_sym_while_statement_token1] = ACTIONS(1324), + [aux_sym_while_statement_token2] = ACTIONS(1324), + [aux_sym_do_statement_token1] = ACTIONS(1324), + [aux_sym_for_statement_token1] = ACTIONS(1324), + [aux_sym_for_statement_token2] = ACTIONS(1324), + [aux_sym_foreach_statement_token1] = ACTIONS(1324), + [aux_sym_foreach_statement_token2] = ACTIONS(1324), + [aux_sym_if_statement_token1] = ACTIONS(1324), + [aux_sym_if_statement_token2] = ACTIONS(1324), + [aux_sym_else_if_clause_token1] = ACTIONS(1324), + [aux_sym_else_clause_token1] = ACTIONS(1324), + [aux_sym_match_expression_token1] = ACTIONS(1324), + [aux_sym_match_default_expression_token1] = ACTIONS(1324), + [aux_sym_switch_statement_token1] = ACTIONS(1324), + [aux_sym_switch_block_token1] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [aux_sym_clone_expression_token1] = ACTIONS(1324), + [aux_sym_print_intrinsic_token1] = ACTIONS(1324), + [aux_sym_object_creation_expression_token1] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [aux_sym__list_destructing_token1] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_self] = ACTIONS(1324), + [anon_sym_parent] = ACTIONS(1324), + [anon_sym_POUND_LBRACK] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [aux_sym_encapsed_string_token1] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [aux_sym_string_token1] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [sym_boolean] = ACTIONS(1324), + [sym_null] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1322), + [aux_sym_yield_expression_token1] = ACTIONS(1324), + [aux_sym_include_expression_token1] = ACTIONS(1324), + [aux_sym_include_once_expression_token1] = ACTIONS(1324), + [aux_sym_require_expression_token1] = ACTIONS(1324), + [aux_sym_require_once_expression_token1] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [518] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_name] = ACTIONS(1328), + [anon_sym_QMARK_GT] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [aux_sym_function_static_declaration_token1] = ACTIONS(1328), + [aux_sym_global_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_definition_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [aux_sym_trait_declaration_token1] = ACTIONS(1328), + [aux_sym_interface_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_case_token1] = ACTIONS(1328), + [aux_sym_class_declaration_token1] = ACTIONS(1328), + [aux_sym_final_modifier_token1] = ACTIONS(1328), + [aux_sym_abstract_modifier_token1] = ACTIONS(1328), + [aux_sym_readonly_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token2] = ACTIONS(1328), + [aux_sym_visibility_modifier_token3] = ACTIONS(1328), + [aux_sym__arrow_function_header_token1] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_cast_type_token1] = ACTIONS(1328), + [aux_sym_echo_statement_token1] = ACTIONS(1328), + [anon_sym_unset] = ACTIONS(1328), + [aux_sym_declare_statement_token1] = ACTIONS(1328), + [aux_sym_declare_statement_token2] = ACTIONS(1328), + [sym_float] = ACTIONS(1328), + [aux_sym_try_statement_token1] = ACTIONS(1328), + [aux_sym_goto_statement_token1] = ACTIONS(1328), + [aux_sym_continue_statement_token1] = ACTIONS(1328), + [aux_sym_break_statement_token1] = ACTIONS(1328), + [sym_integer] = ACTIONS(1328), + [aux_sym_return_statement_token1] = ACTIONS(1328), + [aux_sym_throw_expression_token1] = ACTIONS(1328), + [aux_sym_while_statement_token1] = ACTIONS(1328), + [aux_sym_while_statement_token2] = ACTIONS(1328), + [aux_sym_do_statement_token1] = ACTIONS(1328), + [aux_sym_for_statement_token1] = ACTIONS(1328), + [aux_sym_for_statement_token2] = ACTIONS(1328), + [aux_sym_foreach_statement_token1] = ACTIONS(1328), + [aux_sym_foreach_statement_token2] = ACTIONS(1328), + [aux_sym_if_statement_token1] = ACTIONS(1328), + [aux_sym_if_statement_token2] = ACTIONS(1328), + [aux_sym_else_if_clause_token1] = ACTIONS(1328), + [aux_sym_else_clause_token1] = ACTIONS(1328), + [aux_sym_match_expression_token1] = ACTIONS(1328), + [aux_sym_match_default_expression_token1] = ACTIONS(1328), + [aux_sym_switch_statement_token1] = ACTIONS(1328), + [aux_sym_switch_block_token1] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [aux_sym_clone_expression_token1] = ACTIONS(1328), + [aux_sym_print_intrinsic_token1] = ACTIONS(1328), + [aux_sym_object_creation_expression_token1] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [aux_sym__list_destructing_token1] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_self] = ACTIONS(1328), + [anon_sym_parent] = ACTIONS(1328), + [anon_sym_POUND_LBRACK] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [aux_sym_encapsed_string_token1] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [aux_sym_string_token1] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [sym_boolean] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1326), + [aux_sym_yield_expression_token1] = ACTIONS(1328), + [aux_sym_include_expression_token1] = ACTIONS(1328), + [aux_sym_include_once_expression_token1] = ACTIONS(1328), + [aux_sym_require_expression_token1] = ACTIONS(1328), + [aux_sym_require_once_expression_token1] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_name] = ACTIONS(1332), + [anon_sym_QMARK_GT] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [aux_sym_function_static_declaration_token1] = ACTIONS(1332), + [aux_sym_global_declaration_token1] = ACTIONS(1332), + [aux_sym_namespace_definition_token1] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1332), + [anon_sym_BSLASH] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [aux_sym_trait_declaration_token1] = ACTIONS(1332), + [aux_sym_interface_declaration_token1] = ACTIONS(1332), + [aux_sym_enum_declaration_token1] = ACTIONS(1332), + [aux_sym_enum_case_token1] = ACTIONS(1332), + [aux_sym_class_declaration_token1] = ACTIONS(1332), + [aux_sym_final_modifier_token1] = ACTIONS(1332), + [aux_sym_abstract_modifier_token1] = ACTIONS(1332), + [aux_sym_readonly_modifier_token1] = ACTIONS(1332), + [aux_sym_visibility_modifier_token1] = ACTIONS(1332), + [aux_sym_visibility_modifier_token2] = ACTIONS(1332), + [aux_sym_visibility_modifier_token3] = ACTIONS(1332), + [aux_sym__arrow_function_header_token1] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1330), + [aux_sym_cast_type_token1] = ACTIONS(1332), + [aux_sym_echo_statement_token1] = ACTIONS(1332), + [anon_sym_unset] = ACTIONS(1332), + [aux_sym_declare_statement_token1] = ACTIONS(1332), + [aux_sym_declare_statement_token2] = ACTIONS(1332), + [sym_float] = ACTIONS(1332), + [aux_sym_try_statement_token1] = ACTIONS(1332), + [aux_sym_goto_statement_token1] = ACTIONS(1332), + [aux_sym_continue_statement_token1] = ACTIONS(1332), + [aux_sym_break_statement_token1] = ACTIONS(1332), + [sym_integer] = ACTIONS(1332), + [aux_sym_return_statement_token1] = ACTIONS(1332), + [aux_sym_throw_expression_token1] = ACTIONS(1332), + [aux_sym_while_statement_token1] = ACTIONS(1332), + [aux_sym_while_statement_token2] = ACTIONS(1332), + [aux_sym_do_statement_token1] = ACTIONS(1332), + [aux_sym_for_statement_token1] = ACTIONS(1332), + [aux_sym_for_statement_token2] = ACTIONS(1332), + [aux_sym_foreach_statement_token1] = ACTIONS(1332), + [aux_sym_foreach_statement_token2] = ACTIONS(1332), + [aux_sym_if_statement_token1] = ACTIONS(1332), + [aux_sym_if_statement_token2] = ACTIONS(1332), + [aux_sym_else_if_clause_token1] = ACTIONS(1332), + [aux_sym_else_clause_token1] = ACTIONS(1332), + [aux_sym_match_expression_token1] = ACTIONS(1332), + [aux_sym_match_default_expression_token1] = ACTIONS(1332), + [aux_sym_switch_statement_token1] = ACTIONS(1332), + [aux_sym_switch_block_token1] = ACTIONS(1332), + [anon_sym_AT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [aux_sym_clone_expression_token1] = ACTIONS(1332), + [aux_sym_print_intrinsic_token1] = ACTIONS(1332), + [aux_sym_object_creation_expression_token1] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [aux_sym__list_destructing_token1] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_self] = ACTIONS(1332), + [anon_sym_parent] = ACTIONS(1332), + [anon_sym_POUND_LBRACK] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [aux_sym_encapsed_string_token1] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [aux_sym_string_token1] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [sym_boolean] = ACTIONS(1332), + [sym_null] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1330), + [aux_sym_yield_expression_token1] = ACTIONS(1332), + [aux_sym_include_expression_token1] = ACTIONS(1332), + [aux_sym_include_once_expression_token1] = ACTIONS(1332), + [aux_sym_require_expression_token1] = ACTIONS(1332), + [aux_sym_require_once_expression_token1] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_name] = ACTIONS(1336), + [anon_sym_QMARK_GT] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [aux_sym_function_static_declaration_token1] = ACTIONS(1336), + [aux_sym_global_declaration_token1] = ACTIONS(1336), + [aux_sym_namespace_definition_token1] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1336), + [anon_sym_BSLASH] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [aux_sym_trait_declaration_token1] = ACTIONS(1336), + [aux_sym_interface_declaration_token1] = ACTIONS(1336), + [aux_sym_enum_declaration_token1] = ACTIONS(1336), + [aux_sym_enum_case_token1] = ACTIONS(1336), + [aux_sym_class_declaration_token1] = ACTIONS(1336), + [aux_sym_final_modifier_token1] = ACTIONS(1336), + [aux_sym_abstract_modifier_token1] = ACTIONS(1336), + [aux_sym_readonly_modifier_token1] = ACTIONS(1336), + [aux_sym_visibility_modifier_token1] = ACTIONS(1336), + [aux_sym_visibility_modifier_token2] = ACTIONS(1336), + [aux_sym_visibility_modifier_token3] = ACTIONS(1336), + [aux_sym__arrow_function_header_token1] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_cast_type_token1] = ACTIONS(1336), + [aux_sym_echo_statement_token1] = ACTIONS(1336), + [anon_sym_unset] = ACTIONS(1336), + [aux_sym_declare_statement_token1] = ACTIONS(1336), + [aux_sym_declare_statement_token2] = ACTIONS(1336), + [sym_float] = ACTIONS(1336), + [aux_sym_try_statement_token1] = ACTIONS(1336), + [aux_sym_goto_statement_token1] = ACTIONS(1336), + [aux_sym_continue_statement_token1] = ACTIONS(1336), + [aux_sym_break_statement_token1] = ACTIONS(1336), + [sym_integer] = ACTIONS(1336), + [aux_sym_return_statement_token1] = ACTIONS(1336), + [aux_sym_throw_expression_token1] = ACTIONS(1336), + [aux_sym_while_statement_token1] = ACTIONS(1336), + [aux_sym_while_statement_token2] = ACTIONS(1336), + [aux_sym_do_statement_token1] = ACTIONS(1336), + [aux_sym_for_statement_token1] = ACTIONS(1336), + [aux_sym_for_statement_token2] = ACTIONS(1336), + [aux_sym_foreach_statement_token1] = ACTIONS(1336), + [aux_sym_foreach_statement_token2] = ACTIONS(1336), + [aux_sym_if_statement_token1] = ACTIONS(1336), + [aux_sym_if_statement_token2] = ACTIONS(1336), + [aux_sym_else_if_clause_token1] = ACTIONS(1336), + [aux_sym_else_clause_token1] = ACTIONS(1336), + [aux_sym_match_expression_token1] = ACTIONS(1336), + [aux_sym_match_default_expression_token1] = ACTIONS(1336), + [aux_sym_switch_statement_token1] = ACTIONS(1336), + [aux_sym_switch_block_token1] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [aux_sym_clone_expression_token1] = ACTIONS(1336), + [aux_sym_print_intrinsic_token1] = ACTIONS(1336), + [aux_sym_object_creation_expression_token1] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [aux_sym__list_destructing_token1] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_self] = ACTIONS(1336), + [anon_sym_parent] = ACTIONS(1336), + [anon_sym_POUND_LBRACK] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [aux_sym_encapsed_string_token1] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [aux_sym_string_token1] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1334), + [sym_boolean] = ACTIONS(1336), + [sym_null] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1334), + [aux_sym_yield_expression_token1] = ACTIONS(1336), + [aux_sym_include_expression_token1] = ACTIONS(1336), + [aux_sym_include_once_expression_token1] = ACTIONS(1336), + [aux_sym_require_expression_token1] = ACTIONS(1336), + [aux_sym_require_once_expression_token1] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_name] = ACTIONS(1340), + [anon_sym_QMARK_GT] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [aux_sym_function_static_declaration_token1] = ACTIONS(1340), + [aux_sym_global_declaration_token1] = ACTIONS(1340), + [aux_sym_namespace_definition_token1] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1340), + [anon_sym_BSLASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [aux_sym_trait_declaration_token1] = ACTIONS(1340), + [aux_sym_interface_declaration_token1] = ACTIONS(1340), + [aux_sym_enum_declaration_token1] = ACTIONS(1340), + [aux_sym_enum_case_token1] = ACTIONS(1340), + [aux_sym_class_declaration_token1] = ACTIONS(1340), + [aux_sym_final_modifier_token1] = ACTIONS(1340), + [aux_sym_abstract_modifier_token1] = ACTIONS(1340), + [aux_sym_readonly_modifier_token1] = ACTIONS(1340), + [aux_sym_visibility_modifier_token1] = ACTIONS(1340), + [aux_sym_visibility_modifier_token2] = ACTIONS(1340), + [aux_sym_visibility_modifier_token3] = ACTIONS(1340), + [aux_sym__arrow_function_header_token1] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1338), + [aux_sym_cast_type_token1] = ACTIONS(1340), + [aux_sym_echo_statement_token1] = ACTIONS(1340), + [anon_sym_unset] = ACTIONS(1340), + [aux_sym_declare_statement_token1] = ACTIONS(1340), + [aux_sym_declare_statement_token2] = ACTIONS(1340), + [sym_float] = ACTIONS(1340), + [aux_sym_try_statement_token1] = ACTIONS(1340), + [aux_sym_goto_statement_token1] = ACTIONS(1340), + [aux_sym_continue_statement_token1] = ACTIONS(1340), + [aux_sym_break_statement_token1] = ACTIONS(1340), + [sym_integer] = ACTIONS(1340), + [aux_sym_return_statement_token1] = ACTIONS(1340), + [aux_sym_throw_expression_token1] = ACTIONS(1340), + [aux_sym_while_statement_token1] = ACTIONS(1340), + [aux_sym_while_statement_token2] = ACTIONS(1340), + [aux_sym_do_statement_token1] = ACTIONS(1340), + [aux_sym_for_statement_token1] = ACTIONS(1340), + [aux_sym_for_statement_token2] = ACTIONS(1340), + [aux_sym_foreach_statement_token1] = ACTIONS(1340), + [aux_sym_foreach_statement_token2] = ACTIONS(1340), + [aux_sym_if_statement_token1] = ACTIONS(1340), + [aux_sym_if_statement_token2] = ACTIONS(1340), + [aux_sym_else_if_clause_token1] = ACTIONS(1340), + [aux_sym_else_clause_token1] = ACTIONS(1340), + [aux_sym_match_expression_token1] = ACTIONS(1340), + [aux_sym_match_default_expression_token1] = ACTIONS(1340), + [aux_sym_switch_statement_token1] = ACTIONS(1340), + [aux_sym_switch_block_token1] = ACTIONS(1340), + [anon_sym_AT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [aux_sym_clone_expression_token1] = ACTIONS(1340), + [aux_sym_print_intrinsic_token1] = ACTIONS(1340), + [aux_sym_object_creation_expression_token1] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [aux_sym__list_destructing_token1] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_self] = ACTIONS(1340), + [anon_sym_parent] = ACTIONS(1340), + [anon_sym_POUND_LBRACK] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [aux_sym_encapsed_string_token1] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [aux_sym_string_token1] = ACTIONS(1338), + [anon_sym_LT_LT_LT] = ACTIONS(1338), + [anon_sym_BQUOTE] = ACTIONS(1338), + [sym_boolean] = ACTIONS(1340), + [sym_null] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1338), + [aux_sym_yield_expression_token1] = ACTIONS(1340), + [aux_sym_include_expression_token1] = ACTIONS(1340), + [aux_sym_include_once_expression_token1] = ACTIONS(1340), + [aux_sym_require_expression_token1] = ACTIONS(1340), + [aux_sym_require_once_expression_token1] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [522] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_name] = ACTIONS(1344), + [anon_sym_QMARK_GT] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [aux_sym_function_static_declaration_token1] = ACTIONS(1344), + [aux_sym_global_declaration_token1] = ACTIONS(1344), + [aux_sym_namespace_definition_token1] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1344), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [aux_sym_trait_declaration_token1] = ACTIONS(1344), + [aux_sym_interface_declaration_token1] = ACTIONS(1344), + [aux_sym_enum_declaration_token1] = ACTIONS(1344), + [aux_sym_enum_case_token1] = ACTIONS(1344), + [aux_sym_class_declaration_token1] = ACTIONS(1344), + [aux_sym_final_modifier_token1] = ACTIONS(1344), + [aux_sym_abstract_modifier_token1] = ACTIONS(1344), + [aux_sym_readonly_modifier_token1] = ACTIONS(1344), + [aux_sym_visibility_modifier_token1] = ACTIONS(1344), + [aux_sym_visibility_modifier_token2] = ACTIONS(1344), + [aux_sym_visibility_modifier_token3] = ACTIONS(1344), + [aux_sym__arrow_function_header_token1] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1342), + [aux_sym_cast_type_token1] = ACTIONS(1344), + [aux_sym_echo_statement_token1] = ACTIONS(1344), + [anon_sym_unset] = ACTIONS(1344), + [aux_sym_declare_statement_token1] = ACTIONS(1344), + [aux_sym_declare_statement_token2] = ACTIONS(1344), + [sym_float] = ACTIONS(1344), + [aux_sym_try_statement_token1] = ACTIONS(1344), + [aux_sym_goto_statement_token1] = ACTIONS(1344), + [aux_sym_continue_statement_token1] = ACTIONS(1344), + [aux_sym_break_statement_token1] = ACTIONS(1344), + [sym_integer] = ACTIONS(1344), + [aux_sym_return_statement_token1] = ACTIONS(1344), + [aux_sym_throw_expression_token1] = ACTIONS(1344), + [aux_sym_while_statement_token1] = ACTIONS(1344), + [aux_sym_while_statement_token2] = ACTIONS(1344), + [aux_sym_do_statement_token1] = ACTIONS(1344), + [aux_sym_for_statement_token1] = ACTIONS(1344), + [aux_sym_for_statement_token2] = ACTIONS(1344), + [aux_sym_foreach_statement_token1] = ACTIONS(1344), + [aux_sym_foreach_statement_token2] = ACTIONS(1344), + [aux_sym_if_statement_token1] = ACTIONS(1344), + [aux_sym_if_statement_token2] = ACTIONS(1344), + [aux_sym_else_if_clause_token1] = ACTIONS(1344), + [aux_sym_else_clause_token1] = ACTIONS(1344), + [aux_sym_match_expression_token1] = ACTIONS(1344), + [aux_sym_match_default_expression_token1] = ACTIONS(1344), + [aux_sym_switch_statement_token1] = ACTIONS(1344), + [aux_sym_switch_block_token1] = ACTIONS(1344), + [anon_sym_AT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [aux_sym_clone_expression_token1] = ACTIONS(1344), + [aux_sym_print_intrinsic_token1] = ACTIONS(1344), + [aux_sym_object_creation_expression_token1] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [aux_sym__list_destructing_token1] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_self] = ACTIONS(1344), + [anon_sym_parent] = ACTIONS(1344), + [anon_sym_POUND_LBRACK] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [aux_sym_encapsed_string_token1] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [aux_sym_string_token1] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [sym_boolean] = ACTIONS(1344), + [sym_null] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1342), + [aux_sym_yield_expression_token1] = ACTIONS(1344), + [aux_sym_include_expression_token1] = ACTIONS(1344), + [aux_sym_include_once_expression_token1] = ACTIONS(1344), + [aux_sym_require_expression_token1] = ACTIONS(1344), + [aux_sym_require_once_expression_token1] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_name] = ACTIONS(1348), + [anon_sym_QMARK_GT] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [aux_sym_function_static_declaration_token1] = ACTIONS(1348), + [aux_sym_global_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_definition_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [aux_sym_trait_declaration_token1] = ACTIONS(1348), + [aux_sym_interface_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_case_token1] = ACTIONS(1348), + [aux_sym_class_declaration_token1] = ACTIONS(1348), + [aux_sym_final_modifier_token1] = ACTIONS(1348), + [aux_sym_abstract_modifier_token1] = ACTIONS(1348), + [aux_sym_readonly_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token2] = ACTIONS(1348), + [aux_sym_visibility_modifier_token3] = ACTIONS(1348), + [aux_sym__arrow_function_header_token1] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1346), + [aux_sym_cast_type_token1] = ACTIONS(1348), + [aux_sym_echo_statement_token1] = ACTIONS(1348), + [anon_sym_unset] = ACTIONS(1348), + [aux_sym_declare_statement_token1] = ACTIONS(1348), + [aux_sym_declare_statement_token2] = ACTIONS(1348), + [sym_float] = ACTIONS(1348), + [aux_sym_try_statement_token1] = ACTIONS(1348), + [aux_sym_goto_statement_token1] = ACTIONS(1348), + [aux_sym_continue_statement_token1] = ACTIONS(1348), + [aux_sym_break_statement_token1] = ACTIONS(1348), + [sym_integer] = ACTIONS(1348), + [aux_sym_return_statement_token1] = ACTIONS(1348), + [aux_sym_throw_expression_token1] = ACTIONS(1348), + [aux_sym_while_statement_token1] = ACTIONS(1348), + [aux_sym_while_statement_token2] = ACTIONS(1348), + [aux_sym_do_statement_token1] = ACTIONS(1348), + [aux_sym_for_statement_token1] = ACTIONS(1348), + [aux_sym_for_statement_token2] = ACTIONS(1348), + [aux_sym_foreach_statement_token1] = ACTIONS(1348), + [aux_sym_foreach_statement_token2] = ACTIONS(1348), + [aux_sym_if_statement_token1] = ACTIONS(1348), + [aux_sym_if_statement_token2] = ACTIONS(1348), + [aux_sym_else_if_clause_token1] = ACTIONS(1348), + [aux_sym_else_clause_token1] = ACTIONS(1348), + [aux_sym_match_expression_token1] = ACTIONS(1348), + [aux_sym_match_default_expression_token1] = ACTIONS(1348), + [aux_sym_switch_statement_token1] = ACTIONS(1348), + [aux_sym_switch_block_token1] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [aux_sym_clone_expression_token1] = ACTIONS(1348), + [aux_sym_print_intrinsic_token1] = ACTIONS(1348), + [aux_sym_object_creation_expression_token1] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [aux_sym__list_destructing_token1] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_self] = ACTIONS(1348), + [anon_sym_parent] = ACTIONS(1348), + [anon_sym_POUND_LBRACK] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [aux_sym_encapsed_string_token1] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [aux_sym_string_token1] = ACTIONS(1346), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [sym_boolean] = ACTIONS(1348), + [sym_null] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1346), + [aux_sym_yield_expression_token1] = ACTIONS(1348), + [aux_sym_include_expression_token1] = ACTIONS(1348), + [aux_sym_include_once_expression_token1] = ACTIONS(1348), + [aux_sym_require_expression_token1] = ACTIONS(1348), + [aux_sym_require_once_expression_token1] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [524] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_name] = ACTIONS(1352), + [anon_sym_QMARK_GT] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [aux_sym_function_static_declaration_token1] = ACTIONS(1352), + [aux_sym_global_declaration_token1] = ACTIONS(1352), + [aux_sym_namespace_definition_token1] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1352), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [aux_sym_trait_declaration_token1] = ACTIONS(1352), + [aux_sym_interface_declaration_token1] = ACTIONS(1352), + [aux_sym_enum_declaration_token1] = ACTIONS(1352), + [aux_sym_enum_case_token1] = ACTIONS(1352), + [aux_sym_class_declaration_token1] = ACTIONS(1352), + [aux_sym_final_modifier_token1] = ACTIONS(1352), + [aux_sym_abstract_modifier_token1] = ACTIONS(1352), + [aux_sym_readonly_modifier_token1] = ACTIONS(1352), + [aux_sym_visibility_modifier_token1] = ACTIONS(1352), + [aux_sym_visibility_modifier_token2] = ACTIONS(1352), + [aux_sym_visibility_modifier_token3] = ACTIONS(1352), + [aux_sym__arrow_function_header_token1] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1350), + [aux_sym_cast_type_token1] = ACTIONS(1352), + [aux_sym_echo_statement_token1] = ACTIONS(1352), + [anon_sym_unset] = ACTIONS(1352), + [aux_sym_declare_statement_token1] = ACTIONS(1352), + [aux_sym_declare_statement_token2] = ACTIONS(1352), + [sym_float] = ACTIONS(1352), + [aux_sym_try_statement_token1] = ACTIONS(1352), + [aux_sym_goto_statement_token1] = ACTIONS(1352), + [aux_sym_continue_statement_token1] = ACTIONS(1352), + [aux_sym_break_statement_token1] = ACTIONS(1352), + [sym_integer] = ACTIONS(1352), + [aux_sym_return_statement_token1] = ACTIONS(1352), + [aux_sym_throw_expression_token1] = ACTIONS(1352), + [aux_sym_while_statement_token1] = ACTIONS(1352), + [aux_sym_while_statement_token2] = ACTIONS(1352), + [aux_sym_do_statement_token1] = ACTIONS(1352), + [aux_sym_for_statement_token1] = ACTIONS(1352), + [aux_sym_for_statement_token2] = ACTIONS(1352), + [aux_sym_foreach_statement_token1] = ACTIONS(1352), + [aux_sym_foreach_statement_token2] = ACTIONS(1352), + [aux_sym_if_statement_token1] = ACTIONS(1352), + [aux_sym_if_statement_token2] = ACTIONS(1352), + [aux_sym_else_if_clause_token1] = ACTIONS(1352), + [aux_sym_else_clause_token1] = ACTIONS(1352), + [aux_sym_match_expression_token1] = ACTIONS(1352), + [aux_sym_match_default_expression_token1] = ACTIONS(1352), + [aux_sym_switch_statement_token1] = ACTIONS(1352), + [aux_sym_switch_block_token1] = ACTIONS(1352), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [aux_sym_clone_expression_token1] = ACTIONS(1352), + [aux_sym_print_intrinsic_token1] = ACTIONS(1352), + [aux_sym_object_creation_expression_token1] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [aux_sym__list_destructing_token1] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_self] = ACTIONS(1352), + [anon_sym_parent] = ACTIONS(1352), + [anon_sym_POUND_LBRACK] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [aux_sym_encapsed_string_token1] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [aux_sym_string_token1] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [sym_boolean] = ACTIONS(1352), + [sym_null] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1350), + [aux_sym_yield_expression_token1] = ACTIONS(1352), + [aux_sym_include_expression_token1] = ACTIONS(1352), + [aux_sym_include_once_expression_token1] = ACTIONS(1352), + [aux_sym_require_expression_token1] = ACTIONS(1352), + [aux_sym_require_once_expression_token1] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [525] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_name] = ACTIONS(1356), + [anon_sym_QMARK_GT] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [aux_sym_function_static_declaration_token1] = ACTIONS(1356), + [aux_sym_global_declaration_token1] = ACTIONS(1356), + [aux_sym_namespace_definition_token1] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [aux_sym_trait_declaration_token1] = ACTIONS(1356), + [aux_sym_interface_declaration_token1] = ACTIONS(1356), + [aux_sym_enum_declaration_token1] = ACTIONS(1356), + [aux_sym_enum_case_token1] = ACTIONS(1356), + [aux_sym_class_declaration_token1] = ACTIONS(1356), + [aux_sym_final_modifier_token1] = ACTIONS(1356), + [aux_sym_abstract_modifier_token1] = ACTIONS(1356), + [aux_sym_readonly_modifier_token1] = ACTIONS(1356), + [aux_sym_visibility_modifier_token1] = ACTIONS(1356), + [aux_sym_visibility_modifier_token2] = ACTIONS(1356), + [aux_sym_visibility_modifier_token3] = ACTIONS(1356), + [aux_sym__arrow_function_header_token1] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [aux_sym_cast_type_token1] = ACTIONS(1356), + [aux_sym_echo_statement_token1] = ACTIONS(1356), + [anon_sym_unset] = ACTIONS(1356), + [aux_sym_declare_statement_token1] = ACTIONS(1356), + [aux_sym_declare_statement_token2] = ACTIONS(1356), + [sym_float] = ACTIONS(1356), + [aux_sym_try_statement_token1] = ACTIONS(1356), + [aux_sym_goto_statement_token1] = ACTIONS(1356), + [aux_sym_continue_statement_token1] = ACTIONS(1356), + [aux_sym_break_statement_token1] = ACTIONS(1356), + [sym_integer] = ACTIONS(1356), + [aux_sym_return_statement_token1] = ACTIONS(1356), + [aux_sym_throw_expression_token1] = ACTIONS(1356), + [aux_sym_while_statement_token1] = ACTIONS(1356), + [aux_sym_while_statement_token2] = ACTIONS(1356), + [aux_sym_do_statement_token1] = ACTIONS(1356), + [aux_sym_for_statement_token1] = ACTIONS(1356), + [aux_sym_for_statement_token2] = ACTIONS(1356), + [aux_sym_foreach_statement_token1] = ACTIONS(1356), + [aux_sym_foreach_statement_token2] = ACTIONS(1356), + [aux_sym_if_statement_token1] = ACTIONS(1356), + [aux_sym_if_statement_token2] = ACTIONS(1356), + [aux_sym_else_if_clause_token1] = ACTIONS(1356), + [aux_sym_else_clause_token1] = ACTIONS(1356), + [aux_sym_match_expression_token1] = ACTIONS(1356), + [aux_sym_match_default_expression_token1] = ACTIONS(1356), + [aux_sym_switch_statement_token1] = ACTIONS(1356), + [aux_sym_switch_block_token1] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [aux_sym_clone_expression_token1] = ACTIONS(1356), + [aux_sym_print_intrinsic_token1] = ACTIONS(1356), + [aux_sym_object_creation_expression_token1] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [aux_sym__list_destructing_token1] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_self] = ACTIONS(1356), + [anon_sym_parent] = ACTIONS(1356), + [anon_sym_POUND_LBRACK] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [aux_sym_encapsed_string_token1] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [aux_sym_string_token1] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [sym_boolean] = ACTIONS(1356), + [sym_null] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1354), + [aux_sym_yield_expression_token1] = ACTIONS(1356), + [aux_sym_include_expression_token1] = ACTIONS(1356), + [aux_sym_include_once_expression_token1] = ACTIONS(1356), + [aux_sym_require_expression_token1] = ACTIONS(1356), + [aux_sym_require_once_expression_token1] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [526] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_name] = ACTIONS(1360), + [anon_sym_QMARK_GT] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [aux_sym_function_static_declaration_token1] = ACTIONS(1360), + [aux_sym_global_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_definition_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [aux_sym_trait_declaration_token1] = ACTIONS(1360), + [aux_sym_interface_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_case_token1] = ACTIONS(1360), + [aux_sym_class_declaration_token1] = ACTIONS(1360), + [aux_sym_final_modifier_token1] = ACTIONS(1360), + [aux_sym_abstract_modifier_token1] = ACTIONS(1360), + [aux_sym_readonly_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token2] = ACTIONS(1360), + [aux_sym_visibility_modifier_token3] = ACTIONS(1360), + [aux_sym__arrow_function_header_token1] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [aux_sym_cast_type_token1] = ACTIONS(1360), + [aux_sym_echo_statement_token1] = ACTIONS(1360), + [anon_sym_unset] = ACTIONS(1360), + [aux_sym_declare_statement_token1] = ACTIONS(1360), + [aux_sym_declare_statement_token2] = ACTIONS(1360), + [sym_float] = ACTIONS(1360), + [aux_sym_try_statement_token1] = ACTIONS(1360), + [aux_sym_goto_statement_token1] = ACTIONS(1360), + [aux_sym_continue_statement_token1] = ACTIONS(1360), + [aux_sym_break_statement_token1] = ACTIONS(1360), + [sym_integer] = ACTIONS(1360), + [aux_sym_return_statement_token1] = ACTIONS(1360), + [aux_sym_throw_expression_token1] = ACTIONS(1360), + [aux_sym_while_statement_token1] = ACTIONS(1360), + [aux_sym_while_statement_token2] = ACTIONS(1360), + [aux_sym_do_statement_token1] = ACTIONS(1360), + [aux_sym_for_statement_token1] = ACTIONS(1360), + [aux_sym_for_statement_token2] = ACTIONS(1360), + [aux_sym_foreach_statement_token1] = ACTIONS(1360), + [aux_sym_foreach_statement_token2] = ACTIONS(1360), + [aux_sym_if_statement_token1] = ACTIONS(1360), + [aux_sym_if_statement_token2] = ACTIONS(1360), + [aux_sym_else_if_clause_token1] = ACTIONS(1360), + [aux_sym_else_clause_token1] = ACTIONS(1360), + [aux_sym_match_expression_token1] = ACTIONS(1360), + [aux_sym_match_default_expression_token1] = ACTIONS(1360), + [aux_sym_switch_statement_token1] = ACTIONS(1360), + [aux_sym_switch_block_token1] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [aux_sym_clone_expression_token1] = ACTIONS(1360), + [aux_sym_print_intrinsic_token1] = ACTIONS(1360), + [aux_sym_object_creation_expression_token1] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [aux_sym__list_destructing_token1] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_self] = ACTIONS(1360), + [anon_sym_parent] = ACTIONS(1360), + [anon_sym_POUND_LBRACK] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [aux_sym_encapsed_string_token1] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [aux_sym_string_token1] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [sym_boolean] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [aux_sym_yield_expression_token1] = ACTIONS(1360), + [aux_sym_include_expression_token1] = ACTIONS(1360), + [aux_sym_include_once_expression_token1] = ACTIONS(1360), + [aux_sym_require_expression_token1] = ACTIONS(1360), + [aux_sym_require_once_expression_token1] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [527] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_name] = ACTIONS(1364), + [anon_sym_QMARK_GT] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_function_static_declaration_token1] = ACTIONS(1364), + [aux_sym_global_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_definition_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [aux_sym_trait_declaration_token1] = ACTIONS(1364), + [aux_sym_interface_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_case_token1] = ACTIONS(1364), + [aux_sym_class_declaration_token1] = ACTIONS(1364), + [aux_sym_final_modifier_token1] = ACTIONS(1364), + [aux_sym_abstract_modifier_token1] = ACTIONS(1364), + [aux_sym_readonly_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token2] = ACTIONS(1364), + [aux_sym_visibility_modifier_token3] = ACTIONS(1364), + [aux_sym__arrow_function_header_token1] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1362), + [aux_sym_cast_type_token1] = ACTIONS(1364), + [aux_sym_echo_statement_token1] = ACTIONS(1364), + [anon_sym_unset] = ACTIONS(1364), + [aux_sym_declare_statement_token1] = ACTIONS(1364), + [aux_sym_declare_statement_token2] = ACTIONS(1364), + [sym_float] = ACTIONS(1364), + [aux_sym_try_statement_token1] = ACTIONS(1364), + [aux_sym_goto_statement_token1] = ACTIONS(1364), + [aux_sym_continue_statement_token1] = ACTIONS(1364), + [aux_sym_break_statement_token1] = ACTIONS(1364), + [sym_integer] = ACTIONS(1364), + [aux_sym_return_statement_token1] = ACTIONS(1364), + [aux_sym_throw_expression_token1] = ACTIONS(1364), + [aux_sym_while_statement_token1] = ACTIONS(1364), + [aux_sym_while_statement_token2] = ACTIONS(1364), + [aux_sym_do_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token2] = ACTIONS(1364), + [aux_sym_foreach_statement_token1] = ACTIONS(1364), + [aux_sym_foreach_statement_token2] = ACTIONS(1364), + [aux_sym_if_statement_token1] = ACTIONS(1364), + [aux_sym_if_statement_token2] = ACTIONS(1364), + [aux_sym_else_if_clause_token1] = ACTIONS(1364), + [aux_sym_else_clause_token1] = ACTIONS(1364), + [aux_sym_match_expression_token1] = ACTIONS(1364), + [aux_sym_match_default_expression_token1] = ACTIONS(1364), + [aux_sym_switch_statement_token1] = ACTIONS(1364), + [aux_sym_switch_block_token1] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_clone_expression_token1] = ACTIONS(1364), + [aux_sym_print_intrinsic_token1] = ACTIONS(1364), + [aux_sym_object_creation_expression_token1] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [aux_sym__list_destructing_token1] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_self] = ACTIONS(1364), + [anon_sym_parent] = ACTIONS(1364), + [anon_sym_POUND_LBRACK] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [aux_sym_encapsed_string_token1] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [aux_sym_string_token1] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [sym_boolean] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1362), + [aux_sym_yield_expression_token1] = ACTIONS(1364), + [aux_sym_include_expression_token1] = ACTIONS(1364), + [aux_sym_include_once_expression_token1] = ACTIONS(1364), + [aux_sym_require_expression_token1] = ACTIONS(1364), + [aux_sym_require_once_expression_token1] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, + [528] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_name] = ACTIONS(1368), + [anon_sym_QMARK_GT] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_function_static_declaration_token1] = ACTIONS(1368), + [aux_sym_global_declaration_token1] = ACTIONS(1368), + [aux_sym_namespace_definition_token1] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1368), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [aux_sym_trait_declaration_token1] = ACTIONS(1368), + [aux_sym_interface_declaration_token1] = ACTIONS(1368), + [aux_sym_enum_declaration_token1] = ACTIONS(1368), + [aux_sym_enum_case_token1] = ACTIONS(1368), + [aux_sym_class_declaration_token1] = ACTIONS(1368), + [aux_sym_final_modifier_token1] = ACTIONS(1368), + [aux_sym_abstract_modifier_token1] = ACTIONS(1368), + [aux_sym_readonly_modifier_token1] = ACTIONS(1368), + [aux_sym_visibility_modifier_token1] = ACTIONS(1368), + [aux_sym_visibility_modifier_token2] = ACTIONS(1368), + [aux_sym_visibility_modifier_token3] = ACTIONS(1368), + [aux_sym__arrow_function_header_token1] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1366), + [aux_sym_cast_type_token1] = ACTIONS(1368), + [aux_sym_echo_statement_token1] = ACTIONS(1368), + [anon_sym_unset] = ACTIONS(1368), + [aux_sym_declare_statement_token1] = ACTIONS(1368), + [aux_sym_declare_statement_token2] = ACTIONS(1368), + [sym_float] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_goto_statement_token1] = ACTIONS(1368), + [aux_sym_continue_statement_token1] = ACTIONS(1368), + [aux_sym_break_statement_token1] = ACTIONS(1368), + [sym_integer] = ACTIONS(1368), + [aux_sym_return_statement_token1] = ACTIONS(1368), + [aux_sym_throw_expression_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token2] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token2] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token2] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_if_statement_token2] = ACTIONS(1368), + [aux_sym_else_if_clause_token1] = ACTIONS(1368), + [aux_sym_else_clause_token1] = ACTIONS(1368), + [aux_sym_match_expression_token1] = ACTIONS(1368), + [aux_sym_match_default_expression_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_switch_block_token1] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [aux_sym_clone_expression_token1] = ACTIONS(1368), + [aux_sym_print_intrinsic_token1] = ACTIONS(1368), + [aux_sym_object_creation_expression_token1] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [aux_sym__list_destructing_token1] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_self] = ACTIONS(1368), + [anon_sym_parent] = ACTIONS(1368), + [anon_sym_POUND_LBRACK] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [aux_sym_encapsed_string_token1] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [aux_sym_string_token1] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [sym_boolean] = ACTIONS(1368), + [sym_null] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1366), + [aux_sym_yield_expression_token1] = ACTIONS(1368), + [aux_sym_include_expression_token1] = ACTIONS(1368), + [aux_sym_include_once_expression_token1] = ACTIONS(1368), + [aux_sym_require_expression_token1] = ACTIONS(1368), + [aux_sym_require_once_expression_token1] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [529] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_name] = ACTIONS(1372), + [anon_sym_QMARK_GT] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [aux_sym_function_static_declaration_token1] = ACTIONS(1372), + [aux_sym_global_declaration_token1] = ACTIONS(1372), + [aux_sym_namespace_definition_token1] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [aux_sym_trait_declaration_token1] = ACTIONS(1372), + [aux_sym_interface_declaration_token1] = ACTIONS(1372), + [aux_sym_enum_declaration_token1] = ACTIONS(1372), + [aux_sym_enum_case_token1] = ACTIONS(1372), + [aux_sym_class_declaration_token1] = ACTIONS(1372), + [aux_sym_final_modifier_token1] = ACTIONS(1372), + [aux_sym_abstract_modifier_token1] = ACTIONS(1372), + [aux_sym_readonly_modifier_token1] = ACTIONS(1372), + [aux_sym_visibility_modifier_token1] = ACTIONS(1372), + [aux_sym_visibility_modifier_token2] = ACTIONS(1372), + [aux_sym_visibility_modifier_token3] = ACTIONS(1372), + [aux_sym__arrow_function_header_token1] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [aux_sym_cast_type_token1] = ACTIONS(1372), + [aux_sym_echo_statement_token1] = ACTIONS(1372), + [anon_sym_unset] = ACTIONS(1372), + [aux_sym_declare_statement_token1] = ACTIONS(1372), + [aux_sym_declare_statement_token2] = ACTIONS(1372), + [sym_float] = ACTIONS(1372), + [aux_sym_try_statement_token1] = ACTIONS(1372), + [aux_sym_goto_statement_token1] = ACTIONS(1372), + [aux_sym_continue_statement_token1] = ACTIONS(1372), + [aux_sym_break_statement_token1] = ACTIONS(1372), + [sym_integer] = ACTIONS(1372), + [aux_sym_return_statement_token1] = ACTIONS(1372), + [aux_sym_throw_expression_token1] = ACTIONS(1372), + [aux_sym_while_statement_token1] = ACTIONS(1372), + [aux_sym_while_statement_token2] = ACTIONS(1372), + [aux_sym_do_statement_token1] = ACTIONS(1372), + [aux_sym_for_statement_token1] = ACTIONS(1372), + [aux_sym_for_statement_token2] = ACTIONS(1372), + [aux_sym_foreach_statement_token1] = ACTIONS(1372), + [aux_sym_foreach_statement_token2] = ACTIONS(1372), + [aux_sym_if_statement_token1] = ACTIONS(1372), + [aux_sym_if_statement_token2] = ACTIONS(1372), + [aux_sym_else_if_clause_token1] = ACTIONS(1372), + [aux_sym_else_clause_token1] = ACTIONS(1372), + [aux_sym_match_expression_token1] = ACTIONS(1372), + [aux_sym_match_default_expression_token1] = ACTIONS(1372), + [aux_sym_switch_statement_token1] = ACTIONS(1372), + [aux_sym_switch_block_token1] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [aux_sym_clone_expression_token1] = ACTIONS(1372), + [aux_sym_print_intrinsic_token1] = ACTIONS(1372), + [aux_sym_object_creation_expression_token1] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [aux_sym__list_destructing_token1] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_self] = ACTIONS(1372), + [anon_sym_parent] = ACTIONS(1372), + [anon_sym_POUND_LBRACK] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [aux_sym_encapsed_string_token1] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [aux_sym_string_token1] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_boolean] = ACTIONS(1372), + [sym_null] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1370), + [aux_sym_yield_expression_token1] = ACTIONS(1372), + [aux_sym_include_expression_token1] = ACTIONS(1372), + [aux_sym_include_once_expression_token1] = ACTIONS(1372), + [aux_sym_require_expression_token1] = ACTIONS(1372), + [aux_sym_require_once_expression_token1] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [530] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_name] = ACTIONS(1000), + [anon_sym_QMARK_GT] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [aux_sym_function_static_declaration_token1] = ACTIONS(1000), + [aux_sym_global_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_definition_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1000), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1000), + [anon_sym_BSLASH] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [aux_sym_trait_declaration_token1] = ACTIONS(1000), + [aux_sym_interface_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_declaration_token1] = ACTIONS(1000), + [aux_sym_enum_case_token1] = ACTIONS(1000), + [aux_sym_class_declaration_token1] = ACTIONS(1000), + [aux_sym_final_modifier_token1] = ACTIONS(1000), + [aux_sym_abstract_modifier_token1] = ACTIONS(1000), + [aux_sym_readonly_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token1] = ACTIONS(1000), + [aux_sym_visibility_modifier_token2] = ACTIONS(1000), + [aux_sym_visibility_modifier_token3] = ACTIONS(1000), + [aux_sym__arrow_function_header_token1] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [aux_sym_cast_type_token1] = ACTIONS(1000), + [aux_sym_echo_statement_token1] = ACTIONS(1000), + [anon_sym_unset] = ACTIONS(1000), + [aux_sym_declare_statement_token1] = ACTIONS(1000), + [aux_sym_declare_statement_token2] = ACTIONS(1000), + [sym_float] = ACTIONS(1000), + [aux_sym_try_statement_token1] = ACTIONS(1000), + [aux_sym_goto_statement_token1] = ACTIONS(1000), + [aux_sym_continue_statement_token1] = ACTIONS(1000), + [aux_sym_break_statement_token1] = ACTIONS(1000), + [sym_integer] = ACTIONS(1000), + [aux_sym_return_statement_token1] = ACTIONS(1000), + [aux_sym_throw_expression_token1] = ACTIONS(1000), + [aux_sym_while_statement_token1] = ACTIONS(1000), + [aux_sym_while_statement_token2] = ACTIONS(1000), + [aux_sym_do_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token1] = ACTIONS(1000), + [aux_sym_for_statement_token2] = ACTIONS(1000), + [aux_sym_foreach_statement_token1] = ACTIONS(1000), + [aux_sym_foreach_statement_token2] = ACTIONS(1000), + [aux_sym_if_statement_token1] = ACTIONS(1000), + [aux_sym_if_statement_token2] = ACTIONS(1000), + [aux_sym_else_if_clause_token1] = ACTIONS(1000), + [aux_sym_else_clause_token1] = ACTIONS(1000), + [aux_sym_match_expression_token1] = ACTIONS(1000), + [aux_sym_match_default_expression_token1] = ACTIONS(1000), + [aux_sym_switch_statement_token1] = ACTIONS(1000), + [aux_sym_switch_block_token1] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [aux_sym_clone_expression_token1] = ACTIONS(1000), + [aux_sym_print_intrinsic_token1] = ACTIONS(1000), + [aux_sym_object_creation_expression_token1] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [aux_sym__list_destructing_token1] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_self] = ACTIONS(1000), + [anon_sym_parent] = ACTIONS(1000), + [anon_sym_POUND_LBRACK] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [aux_sym_encapsed_string_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [aux_sym_string_token1] = ACTIONS(998), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(998), + [sym_boolean] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [aux_sym_yield_expression_token1] = ACTIONS(1000), + [aux_sym_include_expression_token1] = ACTIONS(1000), + [aux_sym_include_once_expression_token1] = ACTIONS(1000), + [aux_sym_require_expression_token1] = ACTIONS(1000), + [aux_sym_require_once_expression_token1] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [531] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_name] = ACTIONS(1376), + [anon_sym_QMARK_GT] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [aux_sym_function_static_declaration_token1] = ACTIONS(1376), + [aux_sym_global_declaration_token1] = ACTIONS(1376), + [aux_sym_namespace_definition_token1] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1376), + [anon_sym_BSLASH] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [aux_sym_trait_declaration_token1] = ACTIONS(1376), + [aux_sym_interface_declaration_token1] = ACTIONS(1376), + [aux_sym_enum_declaration_token1] = ACTIONS(1376), + [aux_sym_enum_case_token1] = ACTIONS(1376), + [aux_sym_class_declaration_token1] = ACTIONS(1376), + [aux_sym_final_modifier_token1] = ACTIONS(1376), + [aux_sym_abstract_modifier_token1] = ACTIONS(1376), + [aux_sym_readonly_modifier_token1] = ACTIONS(1376), + [aux_sym_visibility_modifier_token1] = ACTIONS(1376), + [aux_sym_visibility_modifier_token2] = ACTIONS(1376), + [aux_sym_visibility_modifier_token3] = ACTIONS(1376), + [aux_sym__arrow_function_header_token1] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [aux_sym_cast_type_token1] = ACTIONS(1376), + [aux_sym_echo_statement_token1] = ACTIONS(1376), + [anon_sym_unset] = ACTIONS(1376), + [aux_sym_declare_statement_token1] = ACTIONS(1376), + [aux_sym_declare_statement_token2] = ACTIONS(1376), + [sym_float] = ACTIONS(1376), + [aux_sym_try_statement_token1] = ACTIONS(1376), + [aux_sym_goto_statement_token1] = ACTIONS(1376), + [aux_sym_continue_statement_token1] = ACTIONS(1376), + [aux_sym_break_statement_token1] = ACTIONS(1376), + [sym_integer] = ACTIONS(1376), + [aux_sym_return_statement_token1] = ACTIONS(1376), + [aux_sym_throw_expression_token1] = ACTIONS(1376), + [aux_sym_while_statement_token1] = ACTIONS(1376), + [aux_sym_while_statement_token2] = ACTIONS(1376), + [aux_sym_do_statement_token1] = ACTIONS(1376), + [aux_sym_for_statement_token1] = ACTIONS(1376), + [aux_sym_for_statement_token2] = ACTIONS(1376), + [aux_sym_foreach_statement_token1] = ACTIONS(1376), + [aux_sym_foreach_statement_token2] = ACTIONS(1376), + [aux_sym_if_statement_token1] = ACTIONS(1376), + [aux_sym_if_statement_token2] = ACTIONS(1376), + [aux_sym_else_if_clause_token1] = ACTIONS(1376), + [aux_sym_else_clause_token1] = ACTIONS(1376), + [aux_sym_match_expression_token1] = ACTIONS(1376), + [aux_sym_match_default_expression_token1] = ACTIONS(1376), + [aux_sym_switch_statement_token1] = ACTIONS(1376), + [aux_sym_switch_block_token1] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_clone_expression_token1] = ACTIONS(1376), + [aux_sym_print_intrinsic_token1] = ACTIONS(1376), + [aux_sym_object_creation_expression_token1] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [aux_sym__list_destructing_token1] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_self] = ACTIONS(1376), + [anon_sym_parent] = ACTIONS(1376), + [anon_sym_POUND_LBRACK] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [aux_sym_encapsed_string_token1] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [aux_sym_string_token1] = ACTIONS(1374), + [anon_sym_LT_LT_LT] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [sym_boolean] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1374), + [aux_sym_yield_expression_token1] = ACTIONS(1376), + [aux_sym_include_expression_token1] = ACTIONS(1376), + [aux_sym_include_once_expression_token1] = ACTIONS(1376), + [aux_sym_require_expression_token1] = ACTIONS(1376), + [aux_sym_require_once_expression_token1] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [532] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_name] = ACTIONS(1380), + [anon_sym_QMARK_GT] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [aux_sym_function_static_declaration_token1] = ACTIONS(1380), + [aux_sym_global_declaration_token1] = ACTIONS(1380), + [aux_sym_namespace_definition_token1] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1380), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [aux_sym_trait_declaration_token1] = ACTIONS(1380), + [aux_sym_interface_declaration_token1] = ACTIONS(1380), + [aux_sym_enum_declaration_token1] = ACTIONS(1380), + [aux_sym_enum_case_token1] = ACTIONS(1380), + [aux_sym_class_declaration_token1] = ACTIONS(1380), + [aux_sym_final_modifier_token1] = ACTIONS(1380), + [aux_sym_abstract_modifier_token1] = ACTIONS(1380), + [aux_sym_readonly_modifier_token1] = ACTIONS(1380), + [aux_sym_visibility_modifier_token1] = ACTIONS(1380), + [aux_sym_visibility_modifier_token2] = ACTIONS(1380), + [aux_sym_visibility_modifier_token3] = ACTIONS(1380), + [aux_sym__arrow_function_header_token1] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1378), + [aux_sym_cast_type_token1] = ACTIONS(1380), + [aux_sym_echo_statement_token1] = ACTIONS(1380), + [anon_sym_unset] = ACTIONS(1380), + [aux_sym_declare_statement_token1] = ACTIONS(1380), + [aux_sym_declare_statement_token2] = ACTIONS(1380), + [sym_float] = ACTIONS(1380), + [aux_sym_try_statement_token1] = ACTIONS(1380), + [aux_sym_goto_statement_token1] = ACTIONS(1380), + [aux_sym_continue_statement_token1] = ACTIONS(1380), + [aux_sym_break_statement_token1] = ACTIONS(1380), + [sym_integer] = ACTIONS(1380), + [aux_sym_return_statement_token1] = ACTIONS(1380), + [aux_sym_throw_expression_token1] = ACTIONS(1380), + [aux_sym_while_statement_token1] = ACTIONS(1380), + [aux_sym_while_statement_token2] = ACTIONS(1380), + [aux_sym_do_statement_token1] = ACTIONS(1380), + [aux_sym_for_statement_token1] = ACTIONS(1380), + [aux_sym_for_statement_token2] = ACTIONS(1380), + [aux_sym_foreach_statement_token1] = ACTIONS(1380), + [aux_sym_foreach_statement_token2] = ACTIONS(1380), + [aux_sym_if_statement_token1] = ACTIONS(1380), + [aux_sym_if_statement_token2] = ACTIONS(1380), + [aux_sym_else_if_clause_token1] = ACTIONS(1380), + [aux_sym_else_clause_token1] = ACTIONS(1380), + [aux_sym_match_expression_token1] = ACTIONS(1380), + [aux_sym_match_default_expression_token1] = ACTIONS(1380), + [aux_sym_switch_statement_token1] = ACTIONS(1380), + [aux_sym_switch_block_token1] = ACTIONS(1380), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [aux_sym_clone_expression_token1] = ACTIONS(1380), + [aux_sym_print_intrinsic_token1] = ACTIONS(1380), + [aux_sym_object_creation_expression_token1] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [aux_sym__list_destructing_token1] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_self] = ACTIONS(1380), + [anon_sym_parent] = ACTIONS(1380), + [anon_sym_POUND_LBRACK] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [aux_sym_encapsed_string_token1] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [aux_sym_string_token1] = ACTIONS(1378), + [anon_sym_LT_LT_LT] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [sym_boolean] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1378), + [aux_sym_yield_expression_token1] = ACTIONS(1380), + [aux_sym_include_expression_token1] = ACTIONS(1380), + [aux_sym_include_once_expression_token1] = ACTIONS(1380), + [aux_sym_require_expression_token1] = ACTIONS(1380), + [aux_sym_require_once_expression_token1] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [533] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_name] = ACTIONS(1384), + [anon_sym_QMARK_GT] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_function_static_declaration_token1] = ACTIONS(1384), + [aux_sym_global_declaration_token1] = ACTIONS(1384), + [aux_sym_namespace_definition_token1] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1384), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [aux_sym_trait_declaration_token1] = ACTIONS(1384), + [aux_sym_interface_declaration_token1] = ACTIONS(1384), + [aux_sym_enum_declaration_token1] = ACTIONS(1384), + [aux_sym_enum_case_token1] = ACTIONS(1384), + [aux_sym_class_declaration_token1] = ACTIONS(1384), + [aux_sym_final_modifier_token1] = ACTIONS(1384), + [aux_sym_abstract_modifier_token1] = ACTIONS(1384), + [aux_sym_readonly_modifier_token1] = ACTIONS(1384), + [aux_sym_visibility_modifier_token1] = ACTIONS(1384), + [aux_sym_visibility_modifier_token2] = ACTIONS(1384), + [aux_sym_visibility_modifier_token3] = ACTIONS(1384), + [aux_sym__arrow_function_header_token1] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [aux_sym_cast_type_token1] = ACTIONS(1384), + [aux_sym_echo_statement_token1] = ACTIONS(1384), + [anon_sym_unset] = ACTIONS(1384), + [aux_sym_declare_statement_token1] = ACTIONS(1384), + [aux_sym_declare_statement_token2] = ACTIONS(1384), + [sym_float] = ACTIONS(1384), + [aux_sym_try_statement_token1] = ACTIONS(1384), + [aux_sym_goto_statement_token1] = ACTIONS(1384), + [aux_sym_continue_statement_token1] = ACTIONS(1384), + [aux_sym_break_statement_token1] = ACTIONS(1384), + [sym_integer] = ACTIONS(1384), + [aux_sym_return_statement_token1] = ACTIONS(1384), + [aux_sym_throw_expression_token1] = ACTIONS(1384), + [aux_sym_while_statement_token1] = ACTIONS(1384), + [aux_sym_while_statement_token2] = ACTIONS(1384), + [aux_sym_do_statement_token1] = ACTIONS(1384), + [aux_sym_for_statement_token1] = ACTIONS(1384), + [aux_sym_for_statement_token2] = ACTIONS(1384), + [aux_sym_foreach_statement_token1] = ACTIONS(1384), + [aux_sym_foreach_statement_token2] = ACTIONS(1384), + [aux_sym_if_statement_token1] = ACTIONS(1384), + [aux_sym_if_statement_token2] = ACTIONS(1384), + [aux_sym_else_if_clause_token1] = ACTIONS(1384), + [aux_sym_else_clause_token1] = ACTIONS(1384), + [aux_sym_match_expression_token1] = ACTIONS(1384), + [aux_sym_match_default_expression_token1] = ACTIONS(1384), + [aux_sym_switch_statement_token1] = ACTIONS(1384), + [aux_sym_switch_block_token1] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_clone_expression_token1] = ACTIONS(1384), + [aux_sym_print_intrinsic_token1] = ACTIONS(1384), + [aux_sym_object_creation_expression_token1] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [aux_sym__list_destructing_token1] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_self] = ACTIONS(1384), + [anon_sym_parent] = ACTIONS(1384), + [anon_sym_POUND_LBRACK] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [aux_sym_encapsed_string_token1] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [aux_sym_string_token1] = ACTIONS(1382), + [anon_sym_LT_LT_LT] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [sym_boolean] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1382), + [aux_sym_yield_expression_token1] = ACTIONS(1384), + [aux_sym_include_expression_token1] = ACTIONS(1384), + [aux_sym_include_once_expression_token1] = ACTIONS(1384), + [aux_sym_require_expression_token1] = ACTIONS(1384), + [aux_sym_require_once_expression_token1] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [534] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_name] = ACTIONS(1388), + [anon_sym_QMARK_GT] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [aux_sym_function_static_declaration_token1] = ACTIONS(1388), + [aux_sym_global_declaration_token1] = ACTIONS(1388), + [aux_sym_namespace_definition_token1] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [aux_sym_trait_declaration_token1] = ACTIONS(1388), + [aux_sym_interface_declaration_token1] = ACTIONS(1388), + [aux_sym_enum_declaration_token1] = ACTIONS(1388), + [aux_sym_enum_case_token1] = ACTIONS(1388), + [aux_sym_class_declaration_token1] = ACTIONS(1388), + [aux_sym_final_modifier_token1] = ACTIONS(1388), + [aux_sym_abstract_modifier_token1] = ACTIONS(1388), + [aux_sym_readonly_modifier_token1] = ACTIONS(1388), + [aux_sym_visibility_modifier_token1] = ACTIONS(1388), + [aux_sym_visibility_modifier_token2] = ACTIONS(1388), + [aux_sym_visibility_modifier_token3] = ACTIONS(1388), + [aux_sym__arrow_function_header_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [aux_sym_cast_type_token1] = ACTIONS(1388), + [aux_sym_echo_statement_token1] = ACTIONS(1388), + [anon_sym_unset] = ACTIONS(1388), + [aux_sym_declare_statement_token1] = ACTIONS(1388), + [aux_sym_declare_statement_token2] = ACTIONS(1388), + [sym_float] = ACTIONS(1388), + [aux_sym_try_statement_token1] = ACTIONS(1388), + [aux_sym_goto_statement_token1] = ACTIONS(1388), + [aux_sym_continue_statement_token1] = ACTIONS(1388), + [aux_sym_break_statement_token1] = ACTIONS(1388), + [sym_integer] = ACTIONS(1388), + [aux_sym_return_statement_token1] = ACTIONS(1388), + [aux_sym_throw_expression_token1] = ACTIONS(1388), + [aux_sym_while_statement_token1] = ACTIONS(1388), + [aux_sym_while_statement_token2] = ACTIONS(1388), + [aux_sym_do_statement_token1] = ACTIONS(1388), + [aux_sym_for_statement_token1] = ACTIONS(1388), + [aux_sym_for_statement_token2] = ACTIONS(1388), + [aux_sym_foreach_statement_token1] = ACTIONS(1388), + [aux_sym_foreach_statement_token2] = ACTIONS(1388), + [aux_sym_if_statement_token1] = ACTIONS(1388), + [aux_sym_if_statement_token2] = ACTIONS(1388), + [aux_sym_else_if_clause_token1] = ACTIONS(1388), + [aux_sym_else_clause_token1] = ACTIONS(1388), + [aux_sym_match_expression_token1] = ACTIONS(1388), + [aux_sym_match_default_expression_token1] = ACTIONS(1388), + [aux_sym_switch_statement_token1] = ACTIONS(1388), + [aux_sym_switch_block_token1] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [aux_sym_clone_expression_token1] = ACTIONS(1388), + [aux_sym_print_intrinsic_token1] = ACTIONS(1388), + [aux_sym_object_creation_expression_token1] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [aux_sym__list_destructing_token1] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_self] = ACTIONS(1388), + [anon_sym_parent] = ACTIONS(1388), + [anon_sym_POUND_LBRACK] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [aux_sym_encapsed_string_token1] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [aux_sym_string_token1] = ACTIONS(1386), + [anon_sym_LT_LT_LT] = ACTIONS(1386), + [anon_sym_BQUOTE] = ACTIONS(1386), + [sym_boolean] = ACTIONS(1388), + [sym_null] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1386), + [aux_sym_yield_expression_token1] = ACTIONS(1388), + [aux_sym_include_expression_token1] = ACTIONS(1388), + [aux_sym_include_once_expression_token1] = ACTIONS(1388), + [aux_sym_require_expression_token1] = ACTIONS(1388), + [aux_sym_require_once_expression_token1] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [535] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_name] = ACTIONS(1392), + [anon_sym_QMARK_GT] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [aux_sym_function_static_declaration_token1] = ACTIONS(1392), + [aux_sym_global_declaration_token1] = ACTIONS(1392), + [aux_sym_namespace_definition_token1] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [aux_sym_trait_declaration_token1] = ACTIONS(1392), + [aux_sym_interface_declaration_token1] = ACTIONS(1392), + [aux_sym_enum_declaration_token1] = ACTIONS(1392), + [aux_sym_enum_case_token1] = ACTIONS(1392), + [aux_sym_class_declaration_token1] = ACTIONS(1392), + [aux_sym_final_modifier_token1] = ACTIONS(1392), + [aux_sym_abstract_modifier_token1] = ACTIONS(1392), + [aux_sym_readonly_modifier_token1] = ACTIONS(1392), + [aux_sym_visibility_modifier_token1] = ACTIONS(1392), + [aux_sym_visibility_modifier_token2] = ACTIONS(1392), + [aux_sym_visibility_modifier_token3] = ACTIONS(1392), + [aux_sym__arrow_function_header_token1] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_cast_type_token1] = ACTIONS(1392), + [aux_sym_echo_statement_token1] = ACTIONS(1392), + [anon_sym_unset] = ACTIONS(1392), + [aux_sym_declare_statement_token1] = ACTIONS(1392), + [aux_sym_declare_statement_token2] = ACTIONS(1392), + [sym_float] = ACTIONS(1392), + [aux_sym_try_statement_token1] = ACTIONS(1392), + [aux_sym_goto_statement_token1] = ACTIONS(1392), + [aux_sym_continue_statement_token1] = ACTIONS(1392), + [aux_sym_break_statement_token1] = ACTIONS(1392), + [sym_integer] = ACTIONS(1392), + [aux_sym_return_statement_token1] = ACTIONS(1392), + [aux_sym_throw_expression_token1] = ACTIONS(1392), + [aux_sym_while_statement_token1] = ACTIONS(1392), + [aux_sym_while_statement_token2] = ACTIONS(1392), + [aux_sym_do_statement_token1] = ACTIONS(1392), + [aux_sym_for_statement_token1] = ACTIONS(1392), + [aux_sym_for_statement_token2] = ACTIONS(1392), + [aux_sym_foreach_statement_token1] = ACTIONS(1392), + [aux_sym_foreach_statement_token2] = ACTIONS(1392), + [aux_sym_if_statement_token1] = ACTIONS(1392), + [aux_sym_if_statement_token2] = ACTIONS(1392), + [aux_sym_else_if_clause_token1] = ACTIONS(1392), + [aux_sym_else_clause_token1] = ACTIONS(1392), + [aux_sym_match_expression_token1] = ACTIONS(1392), + [aux_sym_match_default_expression_token1] = ACTIONS(1392), + [aux_sym_switch_statement_token1] = ACTIONS(1392), + [aux_sym_switch_block_token1] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [aux_sym_clone_expression_token1] = ACTIONS(1392), + [aux_sym_print_intrinsic_token1] = ACTIONS(1392), + [aux_sym_object_creation_expression_token1] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [aux_sym__list_destructing_token1] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_self] = ACTIONS(1392), + [anon_sym_parent] = ACTIONS(1392), + [anon_sym_POUND_LBRACK] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [aux_sym_encapsed_string_token1] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [aux_sym_string_token1] = ACTIONS(1390), + [anon_sym_LT_LT_LT] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(1390), + [sym_boolean] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1390), + [aux_sym_yield_expression_token1] = ACTIONS(1392), + [aux_sym_include_expression_token1] = ACTIONS(1392), + [aux_sym_include_once_expression_token1] = ACTIONS(1392), + [aux_sym_require_expression_token1] = ACTIONS(1392), + [aux_sym_require_once_expression_token1] = ACTIONS(1392), + [sym_comment] = ACTIONS(3), + }, + [536] = { + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_name] = ACTIONS(1396), + [anon_sym_QMARK_GT] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [aux_sym_function_static_declaration_token1] = ACTIONS(1396), + [aux_sym_global_declaration_token1] = ACTIONS(1396), + [aux_sym_namespace_definition_token1] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1396), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [aux_sym_trait_declaration_token1] = ACTIONS(1396), + [aux_sym_interface_declaration_token1] = ACTIONS(1396), + [aux_sym_enum_declaration_token1] = ACTIONS(1396), + [aux_sym_enum_case_token1] = ACTIONS(1396), + [aux_sym_class_declaration_token1] = ACTIONS(1396), + [aux_sym_final_modifier_token1] = ACTIONS(1396), + [aux_sym_abstract_modifier_token1] = ACTIONS(1396), + [aux_sym_readonly_modifier_token1] = ACTIONS(1396), + [aux_sym_visibility_modifier_token1] = ACTIONS(1396), + [aux_sym_visibility_modifier_token2] = ACTIONS(1396), + [aux_sym_visibility_modifier_token3] = ACTIONS(1396), + [aux_sym__arrow_function_header_token1] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1394), + [aux_sym_cast_type_token1] = ACTIONS(1396), + [aux_sym_echo_statement_token1] = ACTIONS(1396), + [anon_sym_unset] = ACTIONS(1396), + [aux_sym_declare_statement_token1] = ACTIONS(1396), + [aux_sym_declare_statement_token2] = ACTIONS(1396), + [sym_float] = ACTIONS(1396), + [aux_sym_try_statement_token1] = ACTIONS(1396), + [aux_sym_goto_statement_token1] = ACTIONS(1396), + [aux_sym_continue_statement_token1] = ACTIONS(1396), + [aux_sym_break_statement_token1] = ACTIONS(1396), + [sym_integer] = ACTIONS(1396), + [aux_sym_return_statement_token1] = ACTIONS(1396), + [aux_sym_throw_expression_token1] = ACTIONS(1396), + [aux_sym_while_statement_token1] = ACTIONS(1396), + [aux_sym_while_statement_token2] = ACTIONS(1396), + [aux_sym_do_statement_token1] = ACTIONS(1396), + [aux_sym_for_statement_token1] = ACTIONS(1396), + [aux_sym_for_statement_token2] = ACTIONS(1396), + [aux_sym_foreach_statement_token1] = ACTIONS(1396), + [aux_sym_foreach_statement_token2] = ACTIONS(1396), + [aux_sym_if_statement_token1] = ACTIONS(1396), + [aux_sym_if_statement_token2] = ACTIONS(1396), + [aux_sym_else_if_clause_token1] = ACTIONS(1396), + [aux_sym_else_clause_token1] = ACTIONS(1396), + [aux_sym_match_expression_token1] = ACTIONS(1396), + [aux_sym_match_default_expression_token1] = ACTIONS(1396), + [aux_sym_switch_statement_token1] = ACTIONS(1396), + [aux_sym_switch_block_token1] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [aux_sym_clone_expression_token1] = ACTIONS(1396), + [aux_sym_print_intrinsic_token1] = ACTIONS(1396), + [aux_sym_object_creation_expression_token1] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [aux_sym__list_destructing_token1] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_self] = ACTIONS(1396), + [anon_sym_parent] = ACTIONS(1396), + [anon_sym_POUND_LBRACK] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [aux_sym_encapsed_string_token1] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [aux_sym_string_token1] = ACTIONS(1394), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), + [sym_boolean] = ACTIONS(1396), + [sym_null] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1394), + [aux_sym_yield_expression_token1] = ACTIONS(1396), + [aux_sym_include_expression_token1] = ACTIONS(1396), + [aux_sym_include_once_expression_token1] = ACTIONS(1396), + [aux_sym_require_expression_token1] = ACTIONS(1396), + [aux_sym_require_once_expression_token1] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + }, + [537] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_name] = ACTIONS(1400), + [anon_sym_QMARK_GT] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [aux_sym_function_static_declaration_token1] = ACTIONS(1400), + [aux_sym_global_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_definition_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [aux_sym_trait_declaration_token1] = ACTIONS(1400), + [aux_sym_interface_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_case_token1] = ACTIONS(1400), + [aux_sym_class_declaration_token1] = ACTIONS(1400), + [aux_sym_final_modifier_token1] = ACTIONS(1400), + [aux_sym_abstract_modifier_token1] = ACTIONS(1400), + [aux_sym_readonly_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token2] = ACTIONS(1400), + [aux_sym_visibility_modifier_token3] = ACTIONS(1400), + [aux_sym__arrow_function_header_token1] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [aux_sym_cast_type_token1] = ACTIONS(1400), + [aux_sym_echo_statement_token1] = ACTIONS(1400), + [anon_sym_unset] = ACTIONS(1400), + [aux_sym_declare_statement_token1] = ACTIONS(1400), + [aux_sym_declare_statement_token2] = ACTIONS(1400), + [sym_float] = ACTIONS(1400), + [aux_sym_try_statement_token1] = ACTIONS(1400), + [aux_sym_goto_statement_token1] = ACTIONS(1400), + [aux_sym_continue_statement_token1] = ACTIONS(1400), + [aux_sym_break_statement_token1] = ACTIONS(1400), + [sym_integer] = ACTIONS(1400), + [aux_sym_return_statement_token1] = ACTIONS(1400), + [aux_sym_throw_expression_token1] = ACTIONS(1400), + [aux_sym_while_statement_token1] = ACTIONS(1400), + [aux_sym_while_statement_token2] = ACTIONS(1400), + [aux_sym_do_statement_token1] = ACTIONS(1400), + [aux_sym_for_statement_token1] = ACTIONS(1400), + [aux_sym_for_statement_token2] = ACTIONS(1400), + [aux_sym_foreach_statement_token1] = ACTIONS(1400), + [aux_sym_foreach_statement_token2] = ACTIONS(1400), + [aux_sym_if_statement_token1] = ACTIONS(1400), + [aux_sym_if_statement_token2] = ACTIONS(1400), + [aux_sym_else_if_clause_token1] = ACTIONS(1400), + [aux_sym_else_clause_token1] = ACTIONS(1400), + [aux_sym_match_expression_token1] = ACTIONS(1400), + [aux_sym_match_default_expression_token1] = ACTIONS(1400), + [aux_sym_switch_statement_token1] = ACTIONS(1400), + [aux_sym_switch_block_token1] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [aux_sym_clone_expression_token1] = ACTIONS(1400), + [aux_sym_print_intrinsic_token1] = ACTIONS(1400), + [aux_sym_object_creation_expression_token1] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [aux_sym__list_destructing_token1] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_self] = ACTIONS(1400), + [anon_sym_parent] = ACTIONS(1400), + [anon_sym_POUND_LBRACK] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [aux_sym_encapsed_string_token1] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [aux_sym_string_token1] = ACTIONS(1398), + [anon_sym_LT_LT_LT] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_boolean] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1398), + [aux_sym_yield_expression_token1] = ACTIONS(1400), + [aux_sym_include_expression_token1] = ACTIONS(1400), + [aux_sym_include_once_expression_token1] = ACTIONS(1400), + [aux_sym_require_expression_token1] = ACTIONS(1400), + [aux_sym_require_once_expression_token1] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [538] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_name] = ACTIONS(1400), + [anon_sym_QMARK_GT] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [aux_sym_function_static_declaration_token1] = ACTIONS(1400), + [aux_sym_global_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_definition_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [aux_sym_trait_declaration_token1] = ACTIONS(1400), + [aux_sym_interface_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_case_token1] = ACTIONS(1400), + [aux_sym_class_declaration_token1] = ACTIONS(1400), + [aux_sym_final_modifier_token1] = ACTIONS(1400), + [aux_sym_abstract_modifier_token1] = ACTIONS(1400), + [aux_sym_readonly_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token2] = ACTIONS(1400), + [aux_sym_visibility_modifier_token3] = ACTIONS(1400), + [aux_sym__arrow_function_header_token1] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [aux_sym_cast_type_token1] = ACTIONS(1400), + [aux_sym_echo_statement_token1] = ACTIONS(1400), + [anon_sym_unset] = ACTIONS(1400), + [aux_sym_declare_statement_token1] = ACTIONS(1400), + [aux_sym_declare_statement_token2] = ACTIONS(1400), + [sym_float] = ACTIONS(1400), + [aux_sym_try_statement_token1] = ACTIONS(1400), + [aux_sym_goto_statement_token1] = ACTIONS(1400), + [aux_sym_continue_statement_token1] = ACTIONS(1400), + [aux_sym_break_statement_token1] = ACTIONS(1400), + [sym_integer] = ACTIONS(1400), + [aux_sym_return_statement_token1] = ACTIONS(1400), + [aux_sym_throw_expression_token1] = ACTIONS(1400), + [aux_sym_while_statement_token1] = ACTIONS(1400), + [aux_sym_while_statement_token2] = ACTIONS(1400), + [aux_sym_do_statement_token1] = ACTIONS(1400), + [aux_sym_for_statement_token1] = ACTIONS(1400), + [aux_sym_for_statement_token2] = ACTIONS(1400), + [aux_sym_foreach_statement_token1] = ACTIONS(1400), + [aux_sym_foreach_statement_token2] = ACTIONS(1400), + [aux_sym_if_statement_token1] = ACTIONS(1400), + [aux_sym_if_statement_token2] = ACTIONS(1400), + [aux_sym_else_if_clause_token1] = ACTIONS(1400), + [aux_sym_else_clause_token1] = ACTIONS(1400), + [aux_sym_match_expression_token1] = ACTIONS(1400), + [aux_sym_match_default_expression_token1] = ACTIONS(1400), + [aux_sym_switch_statement_token1] = ACTIONS(1400), + [aux_sym_switch_block_token1] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [aux_sym_clone_expression_token1] = ACTIONS(1400), + [aux_sym_print_intrinsic_token1] = ACTIONS(1400), + [aux_sym_object_creation_expression_token1] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [aux_sym__list_destructing_token1] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_self] = ACTIONS(1400), + [anon_sym_parent] = ACTIONS(1400), + [anon_sym_POUND_LBRACK] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [aux_sym_encapsed_string_token1] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [aux_sym_string_token1] = ACTIONS(1398), + [anon_sym_LT_LT_LT] = ACTIONS(1398), + [anon_sym_BQUOTE] = ACTIONS(1398), + [sym_boolean] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1398), + [aux_sym_yield_expression_token1] = ACTIONS(1400), + [aux_sym_include_expression_token1] = ACTIONS(1400), + [aux_sym_include_once_expression_token1] = ACTIONS(1400), + [aux_sym_require_expression_token1] = ACTIONS(1400), + [aux_sym_require_once_expression_token1] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_name] = ACTIONS(1404), + [anon_sym_QMARK_GT] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_function_static_declaration_token1] = ACTIONS(1404), + [aux_sym_global_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_definition_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1404), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [aux_sym_trait_declaration_token1] = ACTIONS(1404), + [aux_sym_interface_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_case_token1] = ACTIONS(1404), + [aux_sym_class_declaration_token1] = ACTIONS(1404), + [aux_sym_final_modifier_token1] = ACTIONS(1404), + [aux_sym_abstract_modifier_token1] = ACTIONS(1404), + [aux_sym_readonly_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token2] = ACTIONS(1404), + [aux_sym_visibility_modifier_token3] = ACTIONS(1404), + [aux_sym__arrow_function_header_token1] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [aux_sym_cast_type_token1] = ACTIONS(1404), + [aux_sym_echo_statement_token1] = ACTIONS(1404), + [anon_sym_unset] = ACTIONS(1404), + [aux_sym_declare_statement_token1] = ACTIONS(1404), + [aux_sym_declare_statement_token2] = ACTIONS(1404), + [sym_float] = ACTIONS(1404), + [aux_sym_try_statement_token1] = ACTIONS(1404), + [aux_sym_goto_statement_token1] = ACTIONS(1404), + [aux_sym_continue_statement_token1] = ACTIONS(1404), + [aux_sym_break_statement_token1] = ACTIONS(1404), + [sym_integer] = ACTIONS(1404), + [aux_sym_return_statement_token1] = ACTIONS(1404), + [aux_sym_throw_expression_token1] = ACTIONS(1404), + [aux_sym_while_statement_token1] = ACTIONS(1404), + [aux_sym_while_statement_token2] = ACTIONS(1404), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_for_statement_token1] = ACTIONS(1404), + [aux_sym_for_statement_token2] = ACTIONS(1404), + [aux_sym_foreach_statement_token1] = ACTIONS(1404), + [aux_sym_foreach_statement_token2] = ACTIONS(1404), + [aux_sym_if_statement_token1] = ACTIONS(1404), + [aux_sym_if_statement_token2] = ACTIONS(1404), + [aux_sym_else_if_clause_token1] = ACTIONS(1404), + [aux_sym_else_clause_token1] = ACTIONS(1404), + [aux_sym_match_expression_token1] = ACTIONS(1404), + [aux_sym_match_default_expression_token1] = ACTIONS(1404), + [aux_sym_switch_statement_token1] = ACTIONS(1404), + [aux_sym_switch_block_token1] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_clone_expression_token1] = ACTIONS(1404), + [aux_sym_print_intrinsic_token1] = ACTIONS(1404), + [aux_sym_object_creation_expression_token1] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [aux_sym__list_destructing_token1] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_self] = ACTIONS(1404), + [anon_sym_parent] = ACTIONS(1404), + [anon_sym_POUND_LBRACK] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [aux_sym_encapsed_string_token1] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [aux_sym_string_token1] = ACTIONS(1402), + [anon_sym_LT_LT_LT] = ACTIONS(1402), + [anon_sym_BQUOTE] = ACTIONS(1402), + [sym_boolean] = ACTIONS(1404), + [sym_null] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1402), + [aux_sym_yield_expression_token1] = ACTIONS(1404), + [aux_sym_include_expression_token1] = ACTIONS(1404), + [aux_sym_include_once_expression_token1] = ACTIONS(1404), + [aux_sym_require_expression_token1] = ACTIONS(1404), + [aux_sym_require_once_expression_token1] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_name] = ACTIONS(1408), + [anon_sym_QMARK_GT] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [aux_sym_function_static_declaration_token1] = ACTIONS(1408), + [aux_sym_global_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_definition_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [aux_sym_trait_declaration_token1] = ACTIONS(1408), + [aux_sym_interface_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_case_token1] = ACTIONS(1408), + [aux_sym_class_declaration_token1] = ACTIONS(1408), + [aux_sym_final_modifier_token1] = ACTIONS(1408), + [aux_sym_abstract_modifier_token1] = ACTIONS(1408), + [aux_sym_readonly_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token2] = ACTIONS(1408), + [aux_sym_visibility_modifier_token3] = ACTIONS(1408), + [aux_sym__arrow_function_header_token1] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1406), + [aux_sym_cast_type_token1] = ACTIONS(1408), + [aux_sym_echo_statement_token1] = ACTIONS(1408), + [anon_sym_unset] = ACTIONS(1408), + [aux_sym_declare_statement_token1] = ACTIONS(1408), + [aux_sym_declare_statement_token2] = ACTIONS(1408), + [sym_float] = ACTIONS(1408), + [aux_sym_try_statement_token1] = ACTIONS(1408), + [aux_sym_goto_statement_token1] = ACTIONS(1408), + [aux_sym_continue_statement_token1] = ACTIONS(1408), + [aux_sym_break_statement_token1] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [aux_sym_return_statement_token1] = ACTIONS(1408), + [aux_sym_throw_expression_token1] = ACTIONS(1408), + [aux_sym_while_statement_token1] = ACTIONS(1408), + [aux_sym_while_statement_token2] = ACTIONS(1408), + [aux_sym_do_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token2] = ACTIONS(1408), + [aux_sym_foreach_statement_token1] = ACTIONS(1408), + [aux_sym_foreach_statement_token2] = ACTIONS(1408), + [aux_sym_if_statement_token1] = ACTIONS(1408), + [aux_sym_if_statement_token2] = ACTIONS(1408), + [aux_sym_else_if_clause_token1] = ACTIONS(1408), + [aux_sym_else_clause_token1] = ACTIONS(1408), + [aux_sym_match_expression_token1] = ACTIONS(1408), + [aux_sym_match_default_expression_token1] = ACTIONS(1408), + [aux_sym_switch_statement_token1] = ACTIONS(1408), + [aux_sym_switch_block_token1] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [aux_sym_clone_expression_token1] = ACTIONS(1408), + [aux_sym_print_intrinsic_token1] = ACTIONS(1408), + [aux_sym_object_creation_expression_token1] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [aux_sym__list_destructing_token1] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_self] = ACTIONS(1408), + [anon_sym_parent] = ACTIONS(1408), + [anon_sym_POUND_LBRACK] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [aux_sym_encapsed_string_token1] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [aux_sym_string_token1] = ACTIONS(1406), + [anon_sym_LT_LT_LT] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [sym_boolean] = ACTIONS(1408), + [sym_null] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1406), + [aux_sym_yield_expression_token1] = ACTIONS(1408), + [aux_sym_include_expression_token1] = ACTIONS(1408), + [aux_sym_include_once_expression_token1] = ACTIONS(1408), + [aux_sym_require_expression_token1] = ACTIONS(1408), + [aux_sym_require_once_expression_token1] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [541] = { + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_name] = ACTIONS(1412), + [anon_sym_QMARK_GT] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [aux_sym_function_static_declaration_token1] = ACTIONS(1412), + [aux_sym_global_declaration_token1] = ACTIONS(1412), + [aux_sym_namespace_definition_token1] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [aux_sym_trait_declaration_token1] = ACTIONS(1412), + [aux_sym_interface_declaration_token1] = ACTIONS(1412), + [aux_sym_enum_declaration_token1] = ACTIONS(1412), + [aux_sym_enum_case_token1] = ACTIONS(1412), + [aux_sym_class_declaration_token1] = ACTIONS(1412), + [aux_sym_final_modifier_token1] = ACTIONS(1412), + [aux_sym_abstract_modifier_token1] = ACTIONS(1412), + [aux_sym_readonly_modifier_token1] = ACTIONS(1412), + [aux_sym_visibility_modifier_token1] = ACTIONS(1412), + [aux_sym_visibility_modifier_token2] = ACTIONS(1412), + [aux_sym_visibility_modifier_token3] = ACTIONS(1412), + [aux_sym__arrow_function_header_token1] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1410), + [aux_sym_cast_type_token1] = ACTIONS(1412), + [aux_sym_echo_statement_token1] = ACTIONS(1412), + [anon_sym_unset] = ACTIONS(1412), + [aux_sym_declare_statement_token1] = ACTIONS(1412), + [aux_sym_declare_statement_token2] = ACTIONS(1412), + [sym_float] = ACTIONS(1412), + [aux_sym_try_statement_token1] = ACTIONS(1412), + [aux_sym_goto_statement_token1] = ACTIONS(1412), + [aux_sym_continue_statement_token1] = ACTIONS(1412), + [aux_sym_break_statement_token1] = ACTIONS(1412), + [sym_integer] = ACTIONS(1412), + [aux_sym_return_statement_token1] = ACTIONS(1412), + [aux_sym_throw_expression_token1] = ACTIONS(1412), + [aux_sym_while_statement_token1] = ACTIONS(1412), + [aux_sym_while_statement_token2] = ACTIONS(1412), + [aux_sym_do_statement_token1] = ACTIONS(1412), + [aux_sym_for_statement_token1] = ACTIONS(1412), + [aux_sym_for_statement_token2] = ACTIONS(1412), + [aux_sym_foreach_statement_token1] = ACTIONS(1412), + [aux_sym_foreach_statement_token2] = ACTIONS(1412), + [aux_sym_if_statement_token1] = ACTIONS(1412), + [aux_sym_if_statement_token2] = ACTIONS(1412), + [aux_sym_else_if_clause_token1] = ACTIONS(1412), + [aux_sym_else_clause_token1] = ACTIONS(1412), + [aux_sym_match_expression_token1] = ACTIONS(1412), + [aux_sym_match_default_expression_token1] = ACTIONS(1412), + [aux_sym_switch_statement_token1] = ACTIONS(1412), + [aux_sym_switch_block_token1] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [aux_sym_clone_expression_token1] = ACTIONS(1412), + [aux_sym_print_intrinsic_token1] = ACTIONS(1412), + [aux_sym_object_creation_expression_token1] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [aux_sym__list_destructing_token1] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_self] = ACTIONS(1412), + [anon_sym_parent] = ACTIONS(1412), + [anon_sym_POUND_LBRACK] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [aux_sym_encapsed_string_token1] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [aux_sym_string_token1] = ACTIONS(1410), + [anon_sym_LT_LT_LT] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_boolean] = ACTIONS(1412), + [sym_null] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1410), + [aux_sym_yield_expression_token1] = ACTIONS(1412), + [aux_sym_include_expression_token1] = ACTIONS(1412), + [aux_sym_include_once_expression_token1] = ACTIONS(1412), + [aux_sym_require_expression_token1] = ACTIONS(1412), + [aux_sym_require_once_expression_token1] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_name] = ACTIONS(1416), + [anon_sym_QMARK_GT] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [aux_sym_function_static_declaration_token1] = ACTIONS(1416), + [aux_sym_global_declaration_token1] = ACTIONS(1416), + [aux_sym_namespace_definition_token1] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [aux_sym_trait_declaration_token1] = ACTIONS(1416), + [aux_sym_interface_declaration_token1] = ACTIONS(1416), + [aux_sym_enum_declaration_token1] = ACTIONS(1416), + [aux_sym_enum_case_token1] = ACTIONS(1416), + [aux_sym_class_declaration_token1] = ACTIONS(1416), + [aux_sym_final_modifier_token1] = ACTIONS(1416), + [aux_sym_abstract_modifier_token1] = ACTIONS(1416), + [aux_sym_readonly_modifier_token1] = ACTIONS(1416), + [aux_sym_visibility_modifier_token1] = ACTIONS(1416), + [aux_sym_visibility_modifier_token2] = ACTIONS(1416), + [aux_sym_visibility_modifier_token3] = ACTIONS(1416), + [aux_sym__arrow_function_header_token1] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1414), + [aux_sym_cast_type_token1] = ACTIONS(1416), + [aux_sym_echo_statement_token1] = ACTIONS(1416), + [anon_sym_unset] = ACTIONS(1416), + [aux_sym_declare_statement_token1] = ACTIONS(1416), + [aux_sym_declare_statement_token2] = ACTIONS(1416), + [sym_float] = ACTIONS(1416), + [aux_sym_try_statement_token1] = ACTIONS(1416), + [aux_sym_goto_statement_token1] = ACTIONS(1416), + [aux_sym_continue_statement_token1] = ACTIONS(1416), + [aux_sym_break_statement_token1] = ACTIONS(1416), + [sym_integer] = ACTIONS(1416), + [aux_sym_return_statement_token1] = ACTIONS(1416), + [aux_sym_throw_expression_token1] = ACTIONS(1416), + [aux_sym_while_statement_token1] = ACTIONS(1416), + [aux_sym_while_statement_token2] = ACTIONS(1416), + [aux_sym_do_statement_token1] = ACTIONS(1416), + [aux_sym_for_statement_token1] = ACTIONS(1416), + [aux_sym_for_statement_token2] = ACTIONS(1416), + [aux_sym_foreach_statement_token1] = ACTIONS(1416), + [aux_sym_foreach_statement_token2] = ACTIONS(1416), + [aux_sym_if_statement_token1] = ACTIONS(1416), + [aux_sym_if_statement_token2] = ACTIONS(1416), + [aux_sym_else_if_clause_token1] = ACTIONS(1416), + [aux_sym_else_clause_token1] = ACTIONS(1416), + [aux_sym_match_expression_token1] = ACTIONS(1416), + [aux_sym_match_default_expression_token1] = ACTIONS(1416), + [aux_sym_switch_statement_token1] = ACTIONS(1416), + [aux_sym_switch_block_token1] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [aux_sym_clone_expression_token1] = ACTIONS(1416), + [aux_sym_print_intrinsic_token1] = ACTIONS(1416), + [aux_sym_object_creation_expression_token1] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [aux_sym__list_destructing_token1] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_self] = ACTIONS(1416), + [anon_sym_parent] = ACTIONS(1416), + [anon_sym_POUND_LBRACK] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [aux_sym_encapsed_string_token1] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1414), + [anon_sym_LT_LT_LT] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [sym_boolean] = ACTIONS(1416), + [sym_null] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1414), + [aux_sym_yield_expression_token1] = ACTIONS(1416), + [aux_sym_include_expression_token1] = ACTIONS(1416), + [aux_sym_include_once_expression_token1] = ACTIONS(1416), + [aux_sym_require_expression_token1] = ACTIONS(1416), + [aux_sym_require_once_expression_token1] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + }, + [543] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_name] = ACTIONS(1408), + [anon_sym_QMARK_GT] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [aux_sym_function_static_declaration_token1] = ACTIONS(1408), + [aux_sym_global_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_definition_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [aux_sym_trait_declaration_token1] = ACTIONS(1408), + [aux_sym_interface_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_case_token1] = ACTIONS(1408), + [aux_sym_class_declaration_token1] = ACTIONS(1408), + [aux_sym_final_modifier_token1] = ACTIONS(1408), + [aux_sym_abstract_modifier_token1] = ACTIONS(1408), + [aux_sym_readonly_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token2] = ACTIONS(1408), + [aux_sym_visibility_modifier_token3] = ACTIONS(1408), + [aux_sym__arrow_function_header_token1] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1406), + [aux_sym_cast_type_token1] = ACTIONS(1408), + [aux_sym_echo_statement_token1] = ACTIONS(1408), + [anon_sym_unset] = ACTIONS(1408), + [aux_sym_declare_statement_token1] = ACTIONS(1408), + [aux_sym_declare_statement_token2] = ACTIONS(1408), + [sym_float] = ACTIONS(1408), + [aux_sym_try_statement_token1] = ACTIONS(1408), + [aux_sym_goto_statement_token1] = ACTIONS(1408), + [aux_sym_continue_statement_token1] = ACTIONS(1408), + [aux_sym_break_statement_token1] = ACTIONS(1408), + [sym_integer] = ACTIONS(1408), + [aux_sym_return_statement_token1] = ACTIONS(1408), + [aux_sym_throw_expression_token1] = ACTIONS(1408), + [aux_sym_while_statement_token1] = ACTIONS(1408), + [aux_sym_while_statement_token2] = ACTIONS(1408), + [aux_sym_do_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token2] = ACTIONS(1408), + [aux_sym_foreach_statement_token1] = ACTIONS(1408), + [aux_sym_foreach_statement_token2] = ACTIONS(1408), + [aux_sym_if_statement_token1] = ACTIONS(1408), + [aux_sym_if_statement_token2] = ACTIONS(1408), + [aux_sym_else_if_clause_token1] = ACTIONS(1408), + [aux_sym_else_clause_token1] = ACTIONS(1408), + [aux_sym_match_expression_token1] = ACTIONS(1408), + [aux_sym_match_default_expression_token1] = ACTIONS(1408), + [aux_sym_switch_statement_token1] = ACTIONS(1408), + [aux_sym_switch_block_token1] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [aux_sym_clone_expression_token1] = ACTIONS(1408), + [aux_sym_print_intrinsic_token1] = ACTIONS(1408), + [aux_sym_object_creation_expression_token1] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [aux_sym__list_destructing_token1] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_self] = ACTIONS(1408), + [anon_sym_parent] = ACTIONS(1408), + [anon_sym_POUND_LBRACK] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [aux_sym_encapsed_string_token1] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [aux_sym_string_token1] = ACTIONS(1406), + [anon_sym_LT_LT_LT] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [sym_boolean] = ACTIONS(1408), + [sym_null] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1406), + [aux_sym_yield_expression_token1] = ACTIONS(1408), + [aux_sym_include_expression_token1] = ACTIONS(1408), + [aux_sym_include_once_expression_token1] = ACTIONS(1408), + [aux_sym_require_expression_token1] = ACTIONS(1408), + [aux_sym_require_once_expression_token1] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [544] = { + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_name] = ACTIONS(1420), + [anon_sym_QMARK_GT] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [aux_sym_function_static_declaration_token1] = ACTIONS(1420), + [aux_sym_global_declaration_token1] = ACTIONS(1420), + [aux_sym_namespace_definition_token1] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [aux_sym_trait_declaration_token1] = ACTIONS(1420), + [aux_sym_interface_declaration_token1] = ACTIONS(1420), + [aux_sym_enum_declaration_token1] = ACTIONS(1420), + [aux_sym_enum_case_token1] = ACTIONS(1420), + [aux_sym_class_declaration_token1] = ACTIONS(1420), + [aux_sym_final_modifier_token1] = ACTIONS(1420), + [aux_sym_abstract_modifier_token1] = ACTIONS(1420), + [aux_sym_readonly_modifier_token1] = ACTIONS(1420), + [aux_sym_visibility_modifier_token1] = ACTIONS(1420), + [aux_sym_visibility_modifier_token2] = ACTIONS(1420), + [aux_sym_visibility_modifier_token3] = ACTIONS(1420), + [aux_sym__arrow_function_header_token1] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1418), + [aux_sym_cast_type_token1] = ACTIONS(1420), + [aux_sym_echo_statement_token1] = ACTIONS(1420), + [anon_sym_unset] = ACTIONS(1420), + [aux_sym_declare_statement_token1] = ACTIONS(1420), + [aux_sym_declare_statement_token2] = ACTIONS(1420), + [sym_float] = ACTIONS(1420), + [aux_sym_try_statement_token1] = ACTIONS(1420), + [aux_sym_goto_statement_token1] = ACTIONS(1420), + [aux_sym_continue_statement_token1] = ACTIONS(1420), + [aux_sym_break_statement_token1] = ACTIONS(1420), + [sym_integer] = ACTIONS(1420), + [aux_sym_return_statement_token1] = ACTIONS(1420), + [aux_sym_throw_expression_token1] = ACTIONS(1420), + [aux_sym_while_statement_token1] = ACTIONS(1420), + [aux_sym_while_statement_token2] = ACTIONS(1420), + [aux_sym_do_statement_token1] = ACTIONS(1420), + [aux_sym_for_statement_token1] = ACTIONS(1420), + [aux_sym_for_statement_token2] = ACTIONS(1420), + [aux_sym_foreach_statement_token1] = ACTIONS(1420), + [aux_sym_foreach_statement_token2] = ACTIONS(1420), + [aux_sym_if_statement_token1] = ACTIONS(1420), + [aux_sym_if_statement_token2] = ACTIONS(1420), + [aux_sym_else_if_clause_token1] = ACTIONS(1420), + [aux_sym_else_clause_token1] = ACTIONS(1420), + [aux_sym_match_expression_token1] = ACTIONS(1420), + [aux_sym_match_default_expression_token1] = ACTIONS(1420), + [aux_sym_switch_statement_token1] = ACTIONS(1420), + [aux_sym_switch_block_token1] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [aux_sym_clone_expression_token1] = ACTIONS(1420), + [aux_sym_print_intrinsic_token1] = ACTIONS(1420), + [aux_sym_object_creation_expression_token1] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [aux_sym__list_destructing_token1] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_self] = ACTIONS(1420), + [anon_sym_parent] = ACTIONS(1420), + [anon_sym_POUND_LBRACK] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [aux_sym_encapsed_string_token1] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [aux_sym_string_token1] = ACTIONS(1418), + [anon_sym_LT_LT_LT] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(1418), + [sym_boolean] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1418), + [aux_sym_yield_expression_token1] = ACTIONS(1420), + [aux_sym_include_expression_token1] = ACTIONS(1420), + [aux_sym_include_once_expression_token1] = ACTIONS(1420), + [aux_sym_require_expression_token1] = ACTIONS(1420), + [aux_sym_require_once_expression_token1] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + }, + [545] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_name] = ACTIONS(1424), + [anon_sym_QMARK_GT] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [aux_sym_function_static_declaration_token1] = ACTIONS(1424), + [aux_sym_global_declaration_token1] = ACTIONS(1424), + [aux_sym_namespace_definition_token1] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [aux_sym_trait_declaration_token1] = ACTIONS(1424), + [aux_sym_interface_declaration_token1] = ACTIONS(1424), + [aux_sym_enum_declaration_token1] = ACTIONS(1424), + [aux_sym_enum_case_token1] = ACTIONS(1424), + [aux_sym_class_declaration_token1] = ACTIONS(1424), + [aux_sym_final_modifier_token1] = ACTIONS(1424), + [aux_sym_abstract_modifier_token1] = ACTIONS(1424), + [aux_sym_readonly_modifier_token1] = ACTIONS(1424), + [aux_sym_visibility_modifier_token1] = ACTIONS(1424), + [aux_sym_visibility_modifier_token2] = ACTIONS(1424), + [aux_sym_visibility_modifier_token3] = ACTIONS(1424), + [aux_sym__arrow_function_header_token1] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1422), + [aux_sym_cast_type_token1] = ACTIONS(1424), + [aux_sym_echo_statement_token1] = ACTIONS(1424), + [anon_sym_unset] = ACTIONS(1424), + [aux_sym_declare_statement_token1] = ACTIONS(1424), + [aux_sym_declare_statement_token2] = ACTIONS(1424), + [sym_float] = ACTIONS(1424), + [aux_sym_try_statement_token1] = ACTIONS(1424), + [aux_sym_goto_statement_token1] = ACTIONS(1424), + [aux_sym_continue_statement_token1] = ACTIONS(1424), + [aux_sym_break_statement_token1] = ACTIONS(1424), + [sym_integer] = ACTIONS(1424), + [aux_sym_return_statement_token1] = ACTIONS(1424), + [aux_sym_throw_expression_token1] = ACTIONS(1424), + [aux_sym_while_statement_token1] = ACTIONS(1424), + [aux_sym_while_statement_token2] = ACTIONS(1424), + [aux_sym_do_statement_token1] = ACTIONS(1424), + [aux_sym_for_statement_token1] = ACTIONS(1424), + [aux_sym_for_statement_token2] = ACTIONS(1424), + [aux_sym_foreach_statement_token1] = ACTIONS(1424), + [aux_sym_foreach_statement_token2] = ACTIONS(1424), + [aux_sym_if_statement_token1] = ACTIONS(1424), + [aux_sym_if_statement_token2] = ACTIONS(1424), + [aux_sym_else_if_clause_token1] = ACTIONS(1424), + [aux_sym_else_clause_token1] = ACTIONS(1424), + [aux_sym_match_expression_token1] = ACTIONS(1424), + [aux_sym_match_default_expression_token1] = ACTIONS(1424), + [aux_sym_switch_statement_token1] = ACTIONS(1424), + [aux_sym_switch_block_token1] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [aux_sym_clone_expression_token1] = ACTIONS(1424), + [aux_sym_print_intrinsic_token1] = ACTIONS(1424), + [aux_sym_object_creation_expression_token1] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [aux_sym__list_destructing_token1] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_self] = ACTIONS(1424), + [anon_sym_parent] = ACTIONS(1424), + [anon_sym_POUND_LBRACK] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [aux_sym_encapsed_string_token1] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [aux_sym_string_token1] = ACTIONS(1422), + [anon_sym_LT_LT_LT] = ACTIONS(1422), + [anon_sym_BQUOTE] = ACTIONS(1422), + [sym_boolean] = ACTIONS(1424), + [sym_null] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1422), + [aux_sym_yield_expression_token1] = ACTIONS(1424), + [aux_sym_include_expression_token1] = ACTIONS(1424), + [aux_sym_include_once_expression_token1] = ACTIONS(1424), + [aux_sym_require_expression_token1] = ACTIONS(1424), + [aux_sym_require_once_expression_token1] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_name] = ACTIONS(1428), + [anon_sym_QMARK_GT] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [aux_sym_function_static_declaration_token1] = ACTIONS(1428), + [aux_sym_global_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_definition_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [aux_sym_trait_declaration_token1] = ACTIONS(1428), + [aux_sym_interface_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_case_token1] = ACTIONS(1428), + [aux_sym_class_declaration_token1] = ACTIONS(1428), + [aux_sym_final_modifier_token1] = ACTIONS(1428), + [aux_sym_abstract_modifier_token1] = ACTIONS(1428), + [aux_sym_readonly_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token2] = ACTIONS(1428), + [aux_sym_visibility_modifier_token3] = ACTIONS(1428), + [aux_sym__arrow_function_header_token1] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [aux_sym_cast_type_token1] = ACTIONS(1428), + [aux_sym_echo_statement_token1] = ACTIONS(1428), + [anon_sym_unset] = ACTIONS(1428), + [aux_sym_declare_statement_token1] = ACTIONS(1428), + [aux_sym_declare_statement_token2] = ACTIONS(1428), + [sym_float] = ACTIONS(1428), + [aux_sym_try_statement_token1] = ACTIONS(1428), + [aux_sym_goto_statement_token1] = ACTIONS(1428), + [aux_sym_continue_statement_token1] = ACTIONS(1428), + [aux_sym_break_statement_token1] = ACTIONS(1428), + [sym_integer] = ACTIONS(1428), + [aux_sym_return_statement_token1] = ACTIONS(1428), + [aux_sym_throw_expression_token1] = ACTIONS(1428), + [aux_sym_while_statement_token1] = ACTIONS(1428), + [aux_sym_while_statement_token2] = ACTIONS(1428), + [aux_sym_do_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token2] = ACTIONS(1428), + [aux_sym_foreach_statement_token1] = ACTIONS(1428), + [aux_sym_foreach_statement_token2] = ACTIONS(1428), + [aux_sym_if_statement_token1] = ACTIONS(1428), + [aux_sym_if_statement_token2] = ACTIONS(1428), + [aux_sym_else_if_clause_token1] = ACTIONS(1428), + [aux_sym_else_clause_token1] = ACTIONS(1428), + [aux_sym_match_expression_token1] = ACTIONS(1428), + [aux_sym_match_default_expression_token1] = ACTIONS(1428), + [aux_sym_switch_statement_token1] = ACTIONS(1428), + [aux_sym_switch_block_token1] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [aux_sym_clone_expression_token1] = ACTIONS(1428), + [aux_sym_print_intrinsic_token1] = ACTIONS(1428), + [aux_sym_object_creation_expression_token1] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [aux_sym__list_destructing_token1] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_self] = ACTIONS(1428), + [anon_sym_parent] = ACTIONS(1428), + [anon_sym_POUND_LBRACK] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [aux_sym_encapsed_string_token1] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [aux_sym_string_token1] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_boolean] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1426), + [aux_sym_yield_expression_token1] = ACTIONS(1428), + [aux_sym_include_expression_token1] = ACTIONS(1428), + [aux_sym_include_once_expression_token1] = ACTIONS(1428), + [aux_sym_require_expression_token1] = ACTIONS(1428), + [aux_sym_require_once_expression_token1] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [547] = { + [ts_builtin_sym_end] = ACTIONS(1052), + [sym_name] = ACTIONS(1054), + [anon_sym_QMARK_GT] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [aux_sym_function_static_declaration_token1] = ACTIONS(1054), + [aux_sym_global_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_definition_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1054), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1054), + [anon_sym_BSLASH] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [aux_sym_trait_declaration_token1] = ACTIONS(1054), + [aux_sym_interface_declaration_token1] = ACTIONS(1054), + [aux_sym_enum_declaration_token1] = ACTIONS(1054), + [aux_sym_enum_case_token1] = ACTIONS(1054), + [aux_sym_class_declaration_token1] = ACTIONS(1054), + [aux_sym_final_modifier_token1] = ACTIONS(1054), + [aux_sym_abstract_modifier_token1] = ACTIONS(1054), + [aux_sym_readonly_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token1] = ACTIONS(1054), + [aux_sym_visibility_modifier_token2] = ACTIONS(1054), + [aux_sym_visibility_modifier_token3] = ACTIONS(1054), + [aux_sym__arrow_function_header_token1] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1052), + [aux_sym_cast_type_token1] = ACTIONS(1054), + [aux_sym_echo_statement_token1] = ACTIONS(1054), + [anon_sym_unset] = ACTIONS(1054), + [aux_sym_declare_statement_token1] = ACTIONS(1054), + [aux_sym_declare_statement_token2] = ACTIONS(1054), + [sym_float] = ACTIONS(1054), + [aux_sym_try_statement_token1] = ACTIONS(1054), + [aux_sym_goto_statement_token1] = ACTIONS(1054), + [aux_sym_continue_statement_token1] = ACTIONS(1054), + [aux_sym_break_statement_token1] = ACTIONS(1054), + [sym_integer] = ACTIONS(1054), + [aux_sym_return_statement_token1] = ACTIONS(1054), + [aux_sym_throw_expression_token1] = ACTIONS(1054), + [aux_sym_while_statement_token1] = ACTIONS(1054), + [aux_sym_while_statement_token2] = ACTIONS(1054), + [aux_sym_do_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token1] = ACTIONS(1054), + [aux_sym_for_statement_token2] = ACTIONS(1054), + [aux_sym_foreach_statement_token1] = ACTIONS(1054), + [aux_sym_foreach_statement_token2] = ACTIONS(1054), + [aux_sym_if_statement_token1] = ACTIONS(1054), + [aux_sym_if_statement_token2] = ACTIONS(1054), + [aux_sym_else_if_clause_token1] = ACTIONS(1054), + [aux_sym_else_clause_token1] = ACTIONS(1054), + [aux_sym_match_expression_token1] = ACTIONS(1054), + [aux_sym_match_default_expression_token1] = ACTIONS(1054), + [aux_sym_switch_statement_token1] = ACTIONS(1054), + [aux_sym_switch_block_token1] = ACTIONS(1054), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1052), + [aux_sym_clone_expression_token1] = ACTIONS(1054), + [aux_sym_print_intrinsic_token1] = ACTIONS(1054), + [aux_sym_object_creation_expression_token1] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [aux_sym__list_destructing_token1] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_self] = ACTIONS(1054), + [anon_sym_parent] = ACTIONS(1054), + [anon_sym_POUND_LBRACK] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1052), + [aux_sym_encapsed_string_token1] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [aux_sym_string_token1] = ACTIONS(1052), + [anon_sym_LT_LT_LT] = ACTIONS(1052), + [anon_sym_BQUOTE] = ACTIONS(1052), + [sym_boolean] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [aux_sym_yield_expression_token1] = ACTIONS(1054), + [aux_sym_include_expression_token1] = ACTIONS(1054), + [aux_sym_include_once_expression_token1] = ACTIONS(1054), + [aux_sym_require_expression_token1] = ACTIONS(1054), + [aux_sym_require_once_expression_token1] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_name] = ACTIONS(1432), + [anon_sym_QMARK_GT] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [aux_sym_function_static_declaration_token1] = ACTIONS(1432), + [aux_sym_global_declaration_token1] = ACTIONS(1432), + [aux_sym_namespace_definition_token1] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [aux_sym_trait_declaration_token1] = ACTIONS(1432), + [aux_sym_interface_declaration_token1] = ACTIONS(1432), + [aux_sym_enum_declaration_token1] = ACTIONS(1432), + [aux_sym_enum_case_token1] = ACTIONS(1432), + [aux_sym_class_declaration_token1] = ACTIONS(1432), + [aux_sym_final_modifier_token1] = ACTIONS(1432), + [aux_sym_abstract_modifier_token1] = ACTIONS(1432), + [aux_sym_readonly_modifier_token1] = ACTIONS(1432), + [aux_sym_visibility_modifier_token1] = ACTIONS(1432), + [aux_sym_visibility_modifier_token2] = ACTIONS(1432), + [aux_sym_visibility_modifier_token3] = ACTIONS(1432), + [aux_sym__arrow_function_header_token1] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [aux_sym_cast_type_token1] = ACTIONS(1432), + [aux_sym_echo_statement_token1] = ACTIONS(1432), + [anon_sym_unset] = ACTIONS(1432), + [aux_sym_declare_statement_token1] = ACTIONS(1432), + [aux_sym_declare_statement_token2] = ACTIONS(1432), + [sym_float] = ACTIONS(1432), + [aux_sym_try_statement_token1] = ACTIONS(1432), + [aux_sym_goto_statement_token1] = ACTIONS(1432), + [aux_sym_continue_statement_token1] = ACTIONS(1432), + [aux_sym_break_statement_token1] = ACTIONS(1432), + [sym_integer] = ACTIONS(1432), + [aux_sym_return_statement_token1] = ACTIONS(1432), + [aux_sym_throw_expression_token1] = ACTIONS(1432), + [aux_sym_while_statement_token1] = ACTIONS(1432), + [aux_sym_while_statement_token2] = ACTIONS(1432), + [aux_sym_do_statement_token1] = ACTIONS(1432), + [aux_sym_for_statement_token1] = ACTIONS(1432), + [aux_sym_for_statement_token2] = ACTIONS(1432), + [aux_sym_foreach_statement_token1] = ACTIONS(1432), + [aux_sym_foreach_statement_token2] = ACTIONS(1432), + [aux_sym_if_statement_token1] = ACTIONS(1432), + [aux_sym_if_statement_token2] = ACTIONS(1432), + [aux_sym_else_if_clause_token1] = ACTIONS(1432), + [aux_sym_else_clause_token1] = ACTIONS(1432), + [aux_sym_match_expression_token1] = ACTIONS(1432), + [aux_sym_match_default_expression_token1] = ACTIONS(1432), + [aux_sym_switch_statement_token1] = ACTIONS(1432), + [aux_sym_switch_block_token1] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [aux_sym_clone_expression_token1] = ACTIONS(1432), + [aux_sym_print_intrinsic_token1] = ACTIONS(1432), + [aux_sym_object_creation_expression_token1] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [aux_sym__list_destructing_token1] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_self] = ACTIONS(1432), + [anon_sym_parent] = ACTIONS(1432), + [anon_sym_POUND_LBRACK] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [aux_sym_encapsed_string_token1] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_LT_LT_LT] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_boolean] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1430), + [aux_sym_yield_expression_token1] = ACTIONS(1432), + [aux_sym_include_expression_token1] = ACTIONS(1432), + [aux_sym_include_once_expression_token1] = ACTIONS(1432), + [aux_sym_require_expression_token1] = ACTIONS(1432), + [aux_sym_require_once_expression_token1] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [549] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_name] = ACTIONS(1428), + [anon_sym_QMARK_GT] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [aux_sym_function_static_declaration_token1] = ACTIONS(1428), + [aux_sym_global_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_definition_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [aux_sym_trait_declaration_token1] = ACTIONS(1428), + [aux_sym_interface_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_case_token1] = ACTIONS(1428), + [aux_sym_class_declaration_token1] = ACTIONS(1428), + [aux_sym_final_modifier_token1] = ACTIONS(1428), + [aux_sym_abstract_modifier_token1] = ACTIONS(1428), + [aux_sym_readonly_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token2] = ACTIONS(1428), + [aux_sym_visibility_modifier_token3] = ACTIONS(1428), + [aux_sym__arrow_function_header_token1] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [aux_sym_cast_type_token1] = ACTIONS(1428), + [aux_sym_echo_statement_token1] = ACTIONS(1428), + [anon_sym_unset] = ACTIONS(1428), + [aux_sym_declare_statement_token1] = ACTIONS(1428), + [aux_sym_declare_statement_token2] = ACTIONS(1428), + [sym_float] = ACTIONS(1428), + [aux_sym_try_statement_token1] = ACTIONS(1428), + [aux_sym_goto_statement_token1] = ACTIONS(1428), + [aux_sym_continue_statement_token1] = ACTIONS(1428), + [aux_sym_break_statement_token1] = ACTIONS(1428), + [sym_integer] = ACTIONS(1428), + [aux_sym_return_statement_token1] = ACTIONS(1428), + [aux_sym_throw_expression_token1] = ACTIONS(1428), + [aux_sym_while_statement_token1] = ACTIONS(1428), + [aux_sym_while_statement_token2] = ACTIONS(1428), + [aux_sym_do_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token2] = ACTIONS(1428), + [aux_sym_foreach_statement_token1] = ACTIONS(1428), + [aux_sym_foreach_statement_token2] = ACTIONS(1428), + [aux_sym_if_statement_token1] = ACTIONS(1428), + [aux_sym_if_statement_token2] = ACTIONS(1428), + [aux_sym_else_if_clause_token1] = ACTIONS(1428), + [aux_sym_else_clause_token1] = ACTIONS(1428), + [aux_sym_match_expression_token1] = ACTIONS(1428), + [aux_sym_match_default_expression_token1] = ACTIONS(1428), + [aux_sym_switch_statement_token1] = ACTIONS(1428), + [aux_sym_switch_block_token1] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [aux_sym_clone_expression_token1] = ACTIONS(1428), + [aux_sym_print_intrinsic_token1] = ACTIONS(1428), + [aux_sym_object_creation_expression_token1] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [aux_sym__list_destructing_token1] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_self] = ACTIONS(1428), + [anon_sym_parent] = ACTIONS(1428), + [anon_sym_POUND_LBRACK] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [aux_sym_encapsed_string_token1] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [aux_sym_string_token1] = ACTIONS(1426), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_boolean] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1426), + [aux_sym_yield_expression_token1] = ACTIONS(1428), + [aux_sym_include_expression_token1] = ACTIONS(1428), + [aux_sym_include_once_expression_token1] = ACTIONS(1428), + [aux_sym_require_expression_token1] = ACTIONS(1428), + [aux_sym_require_once_expression_token1] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_name] = ACTIONS(1436), + [anon_sym_QMARK_GT] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [aux_sym_function_static_declaration_token1] = ACTIONS(1436), + [aux_sym_global_declaration_token1] = ACTIONS(1436), + [aux_sym_namespace_definition_token1] = ACTIONS(1436), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1436), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1436), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [aux_sym_trait_declaration_token1] = ACTIONS(1436), + [aux_sym_interface_declaration_token1] = ACTIONS(1436), + [aux_sym_enum_declaration_token1] = ACTIONS(1436), + [aux_sym_enum_case_token1] = ACTIONS(1436), + [aux_sym_class_declaration_token1] = ACTIONS(1436), + [aux_sym_final_modifier_token1] = ACTIONS(1436), + [aux_sym_abstract_modifier_token1] = ACTIONS(1436), + [aux_sym_readonly_modifier_token1] = ACTIONS(1436), + [aux_sym_visibility_modifier_token1] = ACTIONS(1436), + [aux_sym_visibility_modifier_token2] = ACTIONS(1436), + [aux_sym_visibility_modifier_token3] = ACTIONS(1436), + [aux_sym__arrow_function_header_token1] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1434), + [aux_sym_cast_type_token1] = ACTIONS(1436), + [aux_sym_echo_statement_token1] = ACTIONS(1436), + [anon_sym_unset] = ACTIONS(1436), + [aux_sym_declare_statement_token1] = ACTIONS(1436), + [aux_sym_declare_statement_token2] = ACTIONS(1436), + [sym_float] = ACTIONS(1436), + [aux_sym_try_statement_token1] = ACTIONS(1436), + [aux_sym_goto_statement_token1] = ACTIONS(1436), + [aux_sym_continue_statement_token1] = ACTIONS(1436), + [aux_sym_break_statement_token1] = ACTIONS(1436), + [sym_integer] = ACTIONS(1436), + [aux_sym_return_statement_token1] = ACTIONS(1436), + [aux_sym_throw_expression_token1] = ACTIONS(1436), + [aux_sym_while_statement_token1] = ACTIONS(1436), + [aux_sym_while_statement_token2] = ACTIONS(1436), + [aux_sym_do_statement_token1] = ACTIONS(1436), + [aux_sym_for_statement_token1] = ACTIONS(1436), + [aux_sym_for_statement_token2] = ACTIONS(1436), + [aux_sym_foreach_statement_token1] = ACTIONS(1436), + [aux_sym_foreach_statement_token2] = ACTIONS(1436), + [aux_sym_if_statement_token1] = ACTIONS(1436), + [aux_sym_if_statement_token2] = ACTIONS(1436), + [aux_sym_else_if_clause_token1] = ACTIONS(1436), + [aux_sym_else_clause_token1] = ACTIONS(1436), + [aux_sym_match_expression_token1] = ACTIONS(1436), + [aux_sym_match_default_expression_token1] = ACTIONS(1436), + [aux_sym_switch_statement_token1] = ACTIONS(1436), + [aux_sym_switch_block_token1] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [aux_sym_clone_expression_token1] = ACTIONS(1436), + [aux_sym_print_intrinsic_token1] = ACTIONS(1436), + [aux_sym_object_creation_expression_token1] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [aux_sym__list_destructing_token1] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_self] = ACTIONS(1436), + [anon_sym_parent] = ACTIONS(1436), + [anon_sym_POUND_LBRACK] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [aux_sym_encapsed_string_token1] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [aux_sym_string_token1] = ACTIONS(1434), + [anon_sym_LT_LT_LT] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [sym_boolean] = ACTIONS(1436), + [sym_null] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1434), + [aux_sym_yield_expression_token1] = ACTIONS(1436), + [aux_sym_include_expression_token1] = ACTIONS(1436), + [aux_sym_include_once_expression_token1] = ACTIONS(1436), + [aux_sym_require_expression_token1] = ACTIONS(1436), + [aux_sym_require_once_expression_token1] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_name] = ACTIONS(1440), + [anon_sym_QMARK_GT] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [aux_sym_function_static_declaration_token1] = ACTIONS(1440), + [aux_sym_global_declaration_token1] = ACTIONS(1440), + [aux_sym_namespace_definition_token1] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [aux_sym_trait_declaration_token1] = ACTIONS(1440), + [aux_sym_interface_declaration_token1] = ACTIONS(1440), + [aux_sym_enum_declaration_token1] = ACTIONS(1440), + [aux_sym_enum_case_token1] = ACTIONS(1440), + [aux_sym_class_declaration_token1] = ACTIONS(1440), + [aux_sym_final_modifier_token1] = ACTIONS(1440), + [aux_sym_abstract_modifier_token1] = ACTIONS(1440), + [aux_sym_readonly_modifier_token1] = ACTIONS(1440), + [aux_sym_visibility_modifier_token1] = ACTIONS(1440), + [aux_sym_visibility_modifier_token2] = ACTIONS(1440), + [aux_sym_visibility_modifier_token3] = ACTIONS(1440), + [aux_sym__arrow_function_header_token1] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1438), + [aux_sym_cast_type_token1] = ACTIONS(1440), + [aux_sym_echo_statement_token1] = ACTIONS(1440), + [anon_sym_unset] = ACTIONS(1440), + [aux_sym_declare_statement_token1] = ACTIONS(1440), + [aux_sym_declare_statement_token2] = ACTIONS(1440), + [sym_float] = ACTIONS(1440), + [aux_sym_try_statement_token1] = ACTIONS(1440), + [aux_sym_goto_statement_token1] = ACTIONS(1440), + [aux_sym_continue_statement_token1] = ACTIONS(1440), + [aux_sym_break_statement_token1] = ACTIONS(1440), + [sym_integer] = ACTIONS(1440), + [aux_sym_return_statement_token1] = ACTIONS(1440), + [aux_sym_throw_expression_token1] = ACTIONS(1440), + [aux_sym_while_statement_token1] = ACTIONS(1440), + [aux_sym_while_statement_token2] = ACTIONS(1440), + [aux_sym_do_statement_token1] = ACTIONS(1440), + [aux_sym_for_statement_token1] = ACTIONS(1440), + [aux_sym_for_statement_token2] = ACTIONS(1440), + [aux_sym_foreach_statement_token1] = ACTIONS(1440), + [aux_sym_foreach_statement_token2] = ACTIONS(1440), + [aux_sym_if_statement_token1] = ACTIONS(1440), + [aux_sym_if_statement_token2] = ACTIONS(1440), + [aux_sym_else_if_clause_token1] = ACTIONS(1440), + [aux_sym_else_clause_token1] = ACTIONS(1440), + [aux_sym_match_expression_token1] = ACTIONS(1440), + [aux_sym_match_default_expression_token1] = ACTIONS(1440), + [aux_sym_switch_statement_token1] = ACTIONS(1440), + [aux_sym_switch_block_token1] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [aux_sym_clone_expression_token1] = ACTIONS(1440), + [aux_sym_print_intrinsic_token1] = ACTIONS(1440), + [aux_sym_object_creation_expression_token1] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [aux_sym__list_destructing_token1] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_self] = ACTIONS(1440), + [anon_sym_parent] = ACTIONS(1440), + [anon_sym_POUND_LBRACK] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [aux_sym_encapsed_string_token1] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [aux_sym_string_token1] = ACTIONS(1438), + [anon_sym_LT_LT_LT] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [sym_boolean] = ACTIONS(1440), + [sym_null] = ACTIONS(1440), + [anon_sym_DOLLAR] = ACTIONS(1438), + [aux_sym_yield_expression_token1] = ACTIONS(1440), + [aux_sym_include_expression_token1] = ACTIONS(1440), + [aux_sym_include_once_expression_token1] = ACTIONS(1440), + [aux_sym_require_expression_token1] = ACTIONS(1440), + [aux_sym_require_once_expression_token1] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [552] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_name] = ACTIONS(1444), + [anon_sym_QMARK_GT] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [aux_sym_function_static_declaration_token1] = ACTIONS(1444), + [aux_sym_global_declaration_token1] = ACTIONS(1444), + [aux_sym_namespace_definition_token1] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym_trait_declaration_token1] = ACTIONS(1444), + [aux_sym_interface_declaration_token1] = ACTIONS(1444), + [aux_sym_enum_declaration_token1] = ACTIONS(1444), + [aux_sym_enum_case_token1] = ACTIONS(1444), + [aux_sym_class_declaration_token1] = ACTIONS(1444), + [aux_sym_final_modifier_token1] = ACTIONS(1444), + [aux_sym_abstract_modifier_token1] = ACTIONS(1444), + [aux_sym_readonly_modifier_token1] = ACTIONS(1444), + [aux_sym_visibility_modifier_token1] = ACTIONS(1444), + [aux_sym_visibility_modifier_token2] = ACTIONS(1444), + [aux_sym_visibility_modifier_token3] = ACTIONS(1444), + [aux_sym__arrow_function_header_token1] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [aux_sym_cast_type_token1] = ACTIONS(1444), + [aux_sym_echo_statement_token1] = ACTIONS(1444), + [anon_sym_unset] = ACTIONS(1444), + [aux_sym_declare_statement_token1] = ACTIONS(1444), + [aux_sym_declare_statement_token2] = ACTIONS(1444), + [sym_float] = ACTIONS(1444), + [aux_sym_try_statement_token1] = ACTIONS(1444), + [aux_sym_goto_statement_token1] = ACTIONS(1444), + [aux_sym_continue_statement_token1] = ACTIONS(1444), + [aux_sym_break_statement_token1] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [aux_sym_return_statement_token1] = ACTIONS(1444), + [aux_sym_throw_expression_token1] = ACTIONS(1444), + [aux_sym_while_statement_token1] = ACTIONS(1444), + [aux_sym_while_statement_token2] = ACTIONS(1444), + [aux_sym_do_statement_token1] = ACTIONS(1444), + [aux_sym_for_statement_token1] = ACTIONS(1444), + [aux_sym_for_statement_token2] = ACTIONS(1444), + [aux_sym_foreach_statement_token1] = ACTIONS(1444), + [aux_sym_foreach_statement_token2] = ACTIONS(1444), + [aux_sym_if_statement_token1] = ACTIONS(1444), + [aux_sym_if_statement_token2] = ACTIONS(1444), + [aux_sym_else_if_clause_token1] = ACTIONS(1444), + [aux_sym_else_clause_token1] = ACTIONS(1444), + [aux_sym_match_expression_token1] = ACTIONS(1444), + [aux_sym_match_default_expression_token1] = ACTIONS(1444), + [aux_sym_switch_statement_token1] = ACTIONS(1444), + [aux_sym_switch_block_token1] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [aux_sym_clone_expression_token1] = ACTIONS(1444), + [aux_sym_print_intrinsic_token1] = ACTIONS(1444), + [aux_sym_object_creation_expression_token1] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [aux_sym__list_destructing_token1] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_self] = ACTIONS(1444), + [anon_sym_parent] = ACTIONS(1444), + [anon_sym_POUND_LBRACK] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [aux_sym_encapsed_string_token1] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [aux_sym_string_token1] = ACTIONS(1442), + [anon_sym_LT_LT_LT] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [sym_boolean] = ACTIONS(1444), + [sym_null] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1442), + [aux_sym_yield_expression_token1] = ACTIONS(1444), + [aux_sym_include_expression_token1] = ACTIONS(1444), + [aux_sym_include_once_expression_token1] = ACTIONS(1444), + [aux_sym_require_expression_token1] = ACTIONS(1444), + [aux_sym_require_once_expression_token1] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [553] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_name] = ACTIONS(1448), + [anon_sym_QMARK_GT] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [aux_sym_function_static_declaration_token1] = ACTIONS(1448), + [aux_sym_global_declaration_token1] = ACTIONS(1448), + [aux_sym_namespace_definition_token1] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1448), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [aux_sym_trait_declaration_token1] = ACTIONS(1448), + [aux_sym_interface_declaration_token1] = ACTIONS(1448), + [aux_sym_enum_declaration_token1] = ACTIONS(1448), + [aux_sym_enum_case_token1] = ACTIONS(1448), + [aux_sym_class_declaration_token1] = ACTIONS(1448), + [aux_sym_final_modifier_token1] = ACTIONS(1448), + [aux_sym_abstract_modifier_token1] = ACTIONS(1448), + [aux_sym_readonly_modifier_token1] = ACTIONS(1448), + [aux_sym_visibility_modifier_token1] = ACTIONS(1448), + [aux_sym_visibility_modifier_token2] = ACTIONS(1448), + [aux_sym_visibility_modifier_token3] = ACTIONS(1448), + [aux_sym__arrow_function_header_token1] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1446), + [aux_sym_cast_type_token1] = ACTIONS(1448), + [aux_sym_echo_statement_token1] = ACTIONS(1448), + [anon_sym_unset] = ACTIONS(1448), + [aux_sym_declare_statement_token1] = ACTIONS(1448), + [aux_sym_declare_statement_token2] = ACTIONS(1448), + [sym_float] = ACTIONS(1448), + [aux_sym_try_statement_token1] = ACTIONS(1448), + [aux_sym_goto_statement_token1] = ACTIONS(1448), + [aux_sym_continue_statement_token1] = ACTIONS(1448), + [aux_sym_break_statement_token1] = ACTIONS(1448), + [sym_integer] = ACTIONS(1448), + [aux_sym_return_statement_token1] = ACTIONS(1448), + [aux_sym_throw_expression_token1] = ACTIONS(1448), + [aux_sym_while_statement_token1] = ACTIONS(1448), + [aux_sym_while_statement_token2] = ACTIONS(1448), + [aux_sym_do_statement_token1] = ACTIONS(1448), + [aux_sym_for_statement_token1] = ACTIONS(1448), + [aux_sym_for_statement_token2] = ACTIONS(1448), + [aux_sym_foreach_statement_token1] = ACTIONS(1448), + [aux_sym_foreach_statement_token2] = ACTIONS(1448), + [aux_sym_if_statement_token1] = ACTIONS(1448), + [aux_sym_if_statement_token2] = ACTIONS(1448), + [aux_sym_else_if_clause_token1] = ACTIONS(1448), + [aux_sym_else_clause_token1] = ACTIONS(1448), + [aux_sym_match_expression_token1] = ACTIONS(1448), + [aux_sym_match_default_expression_token1] = ACTIONS(1448), + [aux_sym_switch_statement_token1] = ACTIONS(1448), + [aux_sym_switch_block_token1] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [aux_sym_clone_expression_token1] = ACTIONS(1448), + [aux_sym_print_intrinsic_token1] = ACTIONS(1448), + [aux_sym_object_creation_expression_token1] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [aux_sym__list_destructing_token1] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_self] = ACTIONS(1448), + [anon_sym_parent] = ACTIONS(1448), + [anon_sym_POUND_LBRACK] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [aux_sym_encapsed_string_token1] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [aux_sym_string_token1] = ACTIONS(1446), + [anon_sym_LT_LT_LT] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [sym_boolean] = ACTIONS(1448), + [sym_null] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1446), + [aux_sym_yield_expression_token1] = ACTIONS(1448), + [aux_sym_include_expression_token1] = ACTIONS(1448), + [aux_sym_include_once_expression_token1] = ACTIONS(1448), + [aux_sym_require_expression_token1] = ACTIONS(1448), + [aux_sym_require_once_expression_token1] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [554] = { + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_name] = ACTIONS(1452), + [anon_sym_QMARK_GT] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [aux_sym_function_static_declaration_token1] = ACTIONS(1452), + [aux_sym_global_declaration_token1] = ACTIONS(1452), + [aux_sym_namespace_definition_token1] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1452), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [aux_sym_trait_declaration_token1] = ACTIONS(1452), + [aux_sym_interface_declaration_token1] = ACTIONS(1452), + [aux_sym_enum_declaration_token1] = ACTIONS(1452), + [aux_sym_enum_case_token1] = ACTIONS(1452), + [aux_sym_class_declaration_token1] = ACTIONS(1452), + [aux_sym_final_modifier_token1] = ACTIONS(1452), + [aux_sym_abstract_modifier_token1] = ACTIONS(1452), + [aux_sym_readonly_modifier_token1] = ACTIONS(1452), + [aux_sym_visibility_modifier_token1] = ACTIONS(1452), + [aux_sym_visibility_modifier_token2] = ACTIONS(1452), + [aux_sym_visibility_modifier_token3] = ACTIONS(1452), + [aux_sym__arrow_function_header_token1] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1450), + [aux_sym_cast_type_token1] = ACTIONS(1452), + [aux_sym_echo_statement_token1] = ACTIONS(1452), + [anon_sym_unset] = ACTIONS(1452), + [aux_sym_declare_statement_token1] = ACTIONS(1452), + [aux_sym_declare_statement_token2] = ACTIONS(1452), + [sym_float] = ACTIONS(1452), + [aux_sym_try_statement_token1] = ACTIONS(1452), + [aux_sym_goto_statement_token1] = ACTIONS(1452), + [aux_sym_continue_statement_token1] = ACTIONS(1452), + [aux_sym_break_statement_token1] = ACTIONS(1452), + [sym_integer] = ACTIONS(1452), + [aux_sym_return_statement_token1] = ACTIONS(1452), + [aux_sym_throw_expression_token1] = ACTIONS(1452), + [aux_sym_while_statement_token1] = ACTIONS(1452), + [aux_sym_while_statement_token2] = ACTIONS(1452), + [aux_sym_do_statement_token1] = ACTIONS(1452), + [aux_sym_for_statement_token1] = ACTIONS(1452), + [aux_sym_for_statement_token2] = ACTIONS(1452), + [aux_sym_foreach_statement_token1] = ACTIONS(1452), + [aux_sym_foreach_statement_token2] = ACTIONS(1452), + [aux_sym_if_statement_token1] = ACTIONS(1452), + [aux_sym_if_statement_token2] = ACTIONS(1452), + [aux_sym_else_if_clause_token1] = ACTIONS(1452), + [aux_sym_else_clause_token1] = ACTIONS(1452), + [aux_sym_match_expression_token1] = ACTIONS(1452), + [aux_sym_match_default_expression_token1] = ACTIONS(1452), + [aux_sym_switch_statement_token1] = ACTIONS(1452), + [aux_sym_switch_block_token1] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [aux_sym_clone_expression_token1] = ACTIONS(1452), + [aux_sym_print_intrinsic_token1] = ACTIONS(1452), + [aux_sym_object_creation_expression_token1] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [aux_sym__list_destructing_token1] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_self] = ACTIONS(1452), + [anon_sym_parent] = ACTIONS(1452), + [anon_sym_POUND_LBRACK] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [aux_sym_encapsed_string_token1] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [aux_sym_string_token1] = ACTIONS(1450), + [anon_sym_LT_LT_LT] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_boolean] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1450), + [aux_sym_yield_expression_token1] = ACTIONS(1452), + [aux_sym_include_expression_token1] = ACTIONS(1452), + [aux_sym_include_once_expression_token1] = ACTIONS(1452), + [aux_sym_require_expression_token1] = ACTIONS(1452), + [aux_sym_require_once_expression_token1] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [555] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_name] = ACTIONS(1456), + [anon_sym_QMARK_GT] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [aux_sym_function_static_declaration_token1] = ACTIONS(1456), + [aux_sym_global_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_definition_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [aux_sym_trait_declaration_token1] = ACTIONS(1456), + [aux_sym_interface_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_case_token1] = ACTIONS(1456), + [aux_sym_class_declaration_token1] = ACTIONS(1456), + [aux_sym_final_modifier_token1] = ACTIONS(1456), + [aux_sym_abstract_modifier_token1] = ACTIONS(1456), + [aux_sym_readonly_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token2] = ACTIONS(1456), + [aux_sym_visibility_modifier_token3] = ACTIONS(1456), + [aux_sym__arrow_function_header_token1] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [aux_sym_cast_type_token1] = ACTIONS(1456), + [aux_sym_echo_statement_token1] = ACTIONS(1456), + [anon_sym_unset] = ACTIONS(1456), + [aux_sym_declare_statement_token1] = ACTIONS(1456), + [aux_sym_declare_statement_token2] = ACTIONS(1456), + [sym_float] = ACTIONS(1456), + [aux_sym_try_statement_token1] = ACTIONS(1456), + [aux_sym_goto_statement_token1] = ACTIONS(1456), + [aux_sym_continue_statement_token1] = ACTIONS(1456), + [aux_sym_break_statement_token1] = ACTIONS(1456), + [sym_integer] = ACTIONS(1456), + [aux_sym_return_statement_token1] = ACTIONS(1456), + [aux_sym_throw_expression_token1] = ACTIONS(1456), + [aux_sym_while_statement_token1] = ACTIONS(1456), + [aux_sym_while_statement_token2] = ACTIONS(1456), + [aux_sym_do_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token2] = ACTIONS(1456), + [aux_sym_foreach_statement_token1] = ACTIONS(1456), + [aux_sym_foreach_statement_token2] = ACTIONS(1456), + [aux_sym_if_statement_token1] = ACTIONS(1456), + [aux_sym_if_statement_token2] = ACTIONS(1456), + [aux_sym_else_if_clause_token1] = ACTIONS(1456), + [aux_sym_else_clause_token1] = ACTIONS(1456), + [aux_sym_match_expression_token1] = ACTIONS(1456), + [aux_sym_match_default_expression_token1] = ACTIONS(1456), + [aux_sym_switch_statement_token1] = ACTIONS(1456), + [aux_sym_switch_block_token1] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [aux_sym_clone_expression_token1] = ACTIONS(1456), + [aux_sym_print_intrinsic_token1] = ACTIONS(1456), + [aux_sym_object_creation_expression_token1] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [aux_sym__list_destructing_token1] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_self] = ACTIONS(1456), + [anon_sym_parent] = ACTIONS(1456), + [anon_sym_POUND_LBRACK] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [aux_sym_encapsed_string_token1] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [aux_sym_string_token1] = ACTIONS(1454), + [anon_sym_LT_LT_LT] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [sym_boolean] = ACTIONS(1456), + [sym_null] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1454), + [aux_sym_yield_expression_token1] = ACTIONS(1456), + [aux_sym_include_expression_token1] = ACTIONS(1456), + [aux_sym_include_once_expression_token1] = ACTIONS(1456), + [aux_sym_require_expression_token1] = ACTIONS(1456), + [aux_sym_require_once_expression_token1] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [556] = { + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_name] = ACTIONS(1460), + [anon_sym_QMARK_GT] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [aux_sym_function_static_declaration_token1] = ACTIONS(1460), + [aux_sym_global_declaration_token1] = ACTIONS(1460), + [aux_sym_namespace_definition_token1] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym_trait_declaration_token1] = ACTIONS(1460), + [aux_sym_interface_declaration_token1] = ACTIONS(1460), + [aux_sym_enum_declaration_token1] = ACTIONS(1460), + [aux_sym_enum_case_token1] = ACTIONS(1460), + [aux_sym_class_declaration_token1] = ACTIONS(1460), + [aux_sym_final_modifier_token1] = ACTIONS(1460), + [aux_sym_abstract_modifier_token1] = ACTIONS(1460), + [aux_sym_readonly_modifier_token1] = ACTIONS(1460), + [aux_sym_visibility_modifier_token1] = ACTIONS(1460), + [aux_sym_visibility_modifier_token2] = ACTIONS(1460), + [aux_sym_visibility_modifier_token3] = ACTIONS(1460), + [aux_sym__arrow_function_header_token1] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1458), + [aux_sym_cast_type_token1] = ACTIONS(1460), + [aux_sym_echo_statement_token1] = ACTIONS(1460), + [anon_sym_unset] = ACTIONS(1460), + [aux_sym_declare_statement_token1] = ACTIONS(1460), + [aux_sym_declare_statement_token2] = ACTIONS(1460), + [sym_float] = ACTIONS(1460), + [aux_sym_try_statement_token1] = ACTIONS(1460), + [aux_sym_goto_statement_token1] = ACTIONS(1460), + [aux_sym_continue_statement_token1] = ACTIONS(1460), + [aux_sym_break_statement_token1] = ACTIONS(1460), + [sym_integer] = ACTIONS(1460), + [aux_sym_return_statement_token1] = ACTIONS(1460), + [aux_sym_throw_expression_token1] = ACTIONS(1460), + [aux_sym_while_statement_token1] = ACTIONS(1460), + [aux_sym_while_statement_token2] = ACTIONS(1460), + [aux_sym_do_statement_token1] = ACTIONS(1460), + [aux_sym_for_statement_token1] = ACTIONS(1460), + [aux_sym_for_statement_token2] = ACTIONS(1460), + [aux_sym_foreach_statement_token1] = ACTIONS(1460), + [aux_sym_foreach_statement_token2] = ACTIONS(1460), + [aux_sym_if_statement_token1] = ACTIONS(1460), + [aux_sym_if_statement_token2] = ACTIONS(1460), + [aux_sym_else_if_clause_token1] = ACTIONS(1460), + [aux_sym_else_clause_token1] = ACTIONS(1460), + [aux_sym_match_expression_token1] = ACTIONS(1460), + [aux_sym_match_default_expression_token1] = ACTIONS(1460), + [aux_sym_switch_statement_token1] = ACTIONS(1460), + [aux_sym_switch_block_token1] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [aux_sym_clone_expression_token1] = ACTIONS(1460), + [aux_sym_print_intrinsic_token1] = ACTIONS(1460), + [aux_sym_object_creation_expression_token1] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [aux_sym__list_destructing_token1] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_self] = ACTIONS(1460), + [anon_sym_parent] = ACTIONS(1460), + [anon_sym_POUND_LBRACK] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [aux_sym_encapsed_string_token1] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [aux_sym_string_token1] = ACTIONS(1458), + [anon_sym_LT_LT_LT] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [sym_boolean] = ACTIONS(1460), + [sym_null] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1458), + [aux_sym_yield_expression_token1] = ACTIONS(1460), + [aux_sym_include_expression_token1] = ACTIONS(1460), + [aux_sym_include_once_expression_token1] = ACTIONS(1460), + [aux_sym_require_expression_token1] = ACTIONS(1460), + [aux_sym_require_once_expression_token1] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + }, + [557] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_name] = ACTIONS(1464), + [anon_sym_QMARK_GT] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [aux_sym_function_static_declaration_token1] = ACTIONS(1464), + [aux_sym_global_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_definition_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [aux_sym_trait_declaration_token1] = ACTIONS(1464), + [aux_sym_interface_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_case_token1] = ACTIONS(1464), + [aux_sym_class_declaration_token1] = ACTIONS(1464), + [aux_sym_final_modifier_token1] = ACTIONS(1464), + [aux_sym_abstract_modifier_token1] = ACTIONS(1464), + [aux_sym_readonly_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token2] = ACTIONS(1464), + [aux_sym_visibility_modifier_token3] = ACTIONS(1464), + [aux_sym__arrow_function_header_token1] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [aux_sym_cast_type_token1] = ACTIONS(1464), + [aux_sym_echo_statement_token1] = ACTIONS(1464), + [anon_sym_unset] = ACTIONS(1464), + [aux_sym_declare_statement_token1] = ACTIONS(1464), + [aux_sym_declare_statement_token2] = ACTIONS(1464), + [sym_float] = ACTIONS(1464), + [aux_sym_try_statement_token1] = ACTIONS(1464), + [aux_sym_goto_statement_token1] = ACTIONS(1464), + [aux_sym_continue_statement_token1] = ACTIONS(1464), + [aux_sym_break_statement_token1] = ACTIONS(1464), + [sym_integer] = ACTIONS(1464), + [aux_sym_return_statement_token1] = ACTIONS(1464), + [aux_sym_throw_expression_token1] = ACTIONS(1464), + [aux_sym_while_statement_token1] = ACTIONS(1464), + [aux_sym_while_statement_token2] = ACTIONS(1464), + [aux_sym_do_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token2] = ACTIONS(1464), + [aux_sym_foreach_statement_token1] = ACTIONS(1464), + [aux_sym_foreach_statement_token2] = ACTIONS(1464), + [aux_sym_if_statement_token1] = ACTIONS(1464), + [aux_sym_if_statement_token2] = ACTIONS(1464), + [aux_sym_else_if_clause_token1] = ACTIONS(1464), + [aux_sym_else_clause_token1] = ACTIONS(1464), + [aux_sym_match_expression_token1] = ACTIONS(1464), + [aux_sym_match_default_expression_token1] = ACTIONS(1464), + [aux_sym_switch_statement_token1] = ACTIONS(1464), + [aux_sym_switch_block_token1] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [aux_sym_clone_expression_token1] = ACTIONS(1464), + [aux_sym_print_intrinsic_token1] = ACTIONS(1464), + [aux_sym_object_creation_expression_token1] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [aux_sym__list_destructing_token1] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_self] = ACTIONS(1464), + [anon_sym_parent] = ACTIONS(1464), + [anon_sym_POUND_LBRACK] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [aux_sym_encapsed_string_token1] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [aux_sym_string_token1] = ACTIONS(1462), + [anon_sym_LT_LT_LT] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [sym_boolean] = ACTIONS(1464), + [sym_null] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [aux_sym_yield_expression_token1] = ACTIONS(1464), + [aux_sym_include_expression_token1] = ACTIONS(1464), + [aux_sym_include_once_expression_token1] = ACTIONS(1464), + [aux_sym_require_expression_token1] = ACTIONS(1464), + [aux_sym_require_once_expression_token1] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [558] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_name] = ACTIONS(1468), + [anon_sym_QMARK_GT] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [aux_sym_function_static_declaration_token1] = ACTIONS(1468), + [aux_sym_global_declaration_token1] = ACTIONS(1468), + [aux_sym_namespace_definition_token1] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [aux_sym_trait_declaration_token1] = ACTIONS(1468), + [aux_sym_interface_declaration_token1] = ACTIONS(1468), + [aux_sym_enum_declaration_token1] = ACTIONS(1468), + [aux_sym_enum_case_token1] = ACTIONS(1468), + [aux_sym_class_declaration_token1] = ACTIONS(1468), + [aux_sym_final_modifier_token1] = ACTIONS(1468), + [aux_sym_abstract_modifier_token1] = ACTIONS(1468), + [aux_sym_readonly_modifier_token1] = ACTIONS(1468), + [aux_sym_visibility_modifier_token1] = ACTIONS(1468), + [aux_sym_visibility_modifier_token2] = ACTIONS(1468), + [aux_sym_visibility_modifier_token3] = ACTIONS(1468), + [aux_sym__arrow_function_header_token1] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [aux_sym_cast_type_token1] = ACTIONS(1468), + [aux_sym_echo_statement_token1] = ACTIONS(1468), + [anon_sym_unset] = ACTIONS(1468), + [aux_sym_declare_statement_token1] = ACTIONS(1468), + [aux_sym_declare_statement_token2] = ACTIONS(1468), + [sym_float] = ACTIONS(1468), + [aux_sym_try_statement_token1] = ACTIONS(1468), + [aux_sym_goto_statement_token1] = ACTIONS(1468), + [aux_sym_continue_statement_token1] = ACTIONS(1468), + [aux_sym_break_statement_token1] = ACTIONS(1468), + [sym_integer] = ACTIONS(1468), + [aux_sym_return_statement_token1] = ACTIONS(1468), + [aux_sym_throw_expression_token1] = ACTIONS(1468), + [aux_sym_while_statement_token1] = ACTIONS(1468), + [aux_sym_while_statement_token2] = ACTIONS(1468), + [aux_sym_do_statement_token1] = ACTIONS(1468), + [aux_sym_for_statement_token1] = ACTIONS(1468), + [aux_sym_for_statement_token2] = ACTIONS(1468), + [aux_sym_foreach_statement_token1] = ACTIONS(1468), + [aux_sym_foreach_statement_token2] = ACTIONS(1468), + [aux_sym_if_statement_token1] = ACTIONS(1468), + [aux_sym_if_statement_token2] = ACTIONS(1468), + [aux_sym_else_if_clause_token1] = ACTIONS(1468), + [aux_sym_else_clause_token1] = ACTIONS(1468), + [aux_sym_match_expression_token1] = ACTIONS(1468), + [aux_sym_match_default_expression_token1] = ACTIONS(1468), + [aux_sym_switch_statement_token1] = ACTIONS(1468), + [aux_sym_switch_block_token1] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [aux_sym_clone_expression_token1] = ACTIONS(1468), + [aux_sym_print_intrinsic_token1] = ACTIONS(1468), + [aux_sym_object_creation_expression_token1] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [aux_sym__list_destructing_token1] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_self] = ACTIONS(1468), + [anon_sym_parent] = ACTIONS(1468), + [anon_sym_POUND_LBRACK] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [aux_sym_encapsed_string_token1] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [aux_sym_string_token1] = ACTIONS(1466), + [anon_sym_LT_LT_LT] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [sym_boolean] = ACTIONS(1468), + [sym_null] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1466), + [aux_sym_yield_expression_token1] = ACTIONS(1468), + [aux_sym_include_expression_token1] = ACTIONS(1468), + [aux_sym_include_once_expression_token1] = ACTIONS(1468), + [aux_sym_require_expression_token1] = ACTIONS(1468), + [aux_sym_require_once_expression_token1] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [559] = { + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_name] = ACTIONS(1472), + [anon_sym_QMARK_GT] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [aux_sym_function_static_declaration_token1] = ACTIONS(1472), + [aux_sym_global_declaration_token1] = ACTIONS(1472), + [aux_sym_namespace_definition_token1] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [aux_sym_trait_declaration_token1] = ACTIONS(1472), + [aux_sym_interface_declaration_token1] = ACTIONS(1472), + [aux_sym_enum_declaration_token1] = ACTIONS(1472), + [aux_sym_enum_case_token1] = ACTIONS(1472), + [aux_sym_class_declaration_token1] = ACTIONS(1472), + [aux_sym_final_modifier_token1] = ACTIONS(1472), + [aux_sym_abstract_modifier_token1] = ACTIONS(1472), + [aux_sym_readonly_modifier_token1] = ACTIONS(1472), + [aux_sym_visibility_modifier_token1] = ACTIONS(1472), + [aux_sym_visibility_modifier_token2] = ACTIONS(1472), + [aux_sym_visibility_modifier_token3] = ACTIONS(1472), + [aux_sym__arrow_function_header_token1] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1470), + [aux_sym_cast_type_token1] = ACTIONS(1472), + [aux_sym_echo_statement_token1] = ACTIONS(1472), + [anon_sym_unset] = ACTIONS(1472), + [aux_sym_declare_statement_token1] = ACTIONS(1472), + [aux_sym_declare_statement_token2] = ACTIONS(1472), + [sym_float] = ACTIONS(1472), + [aux_sym_try_statement_token1] = ACTIONS(1472), + [aux_sym_goto_statement_token1] = ACTIONS(1472), + [aux_sym_continue_statement_token1] = ACTIONS(1472), + [aux_sym_break_statement_token1] = ACTIONS(1472), + [sym_integer] = ACTIONS(1472), + [aux_sym_return_statement_token1] = ACTIONS(1472), + [aux_sym_throw_expression_token1] = ACTIONS(1472), + [aux_sym_while_statement_token1] = ACTIONS(1472), + [aux_sym_while_statement_token2] = ACTIONS(1472), + [aux_sym_do_statement_token1] = ACTIONS(1472), + [aux_sym_for_statement_token1] = ACTIONS(1472), + [aux_sym_for_statement_token2] = ACTIONS(1472), + [aux_sym_foreach_statement_token1] = ACTIONS(1472), + [aux_sym_foreach_statement_token2] = ACTIONS(1472), + [aux_sym_if_statement_token1] = ACTIONS(1472), + [aux_sym_if_statement_token2] = ACTIONS(1472), + [aux_sym_else_if_clause_token1] = ACTIONS(1472), + [aux_sym_else_clause_token1] = ACTIONS(1472), + [aux_sym_match_expression_token1] = ACTIONS(1472), + [aux_sym_match_default_expression_token1] = ACTIONS(1472), + [aux_sym_switch_statement_token1] = ACTIONS(1472), + [aux_sym_switch_block_token1] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [aux_sym_clone_expression_token1] = ACTIONS(1472), + [aux_sym_print_intrinsic_token1] = ACTIONS(1472), + [aux_sym_object_creation_expression_token1] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [aux_sym__list_destructing_token1] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_self] = ACTIONS(1472), + [anon_sym_parent] = ACTIONS(1472), + [anon_sym_POUND_LBRACK] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [aux_sym_encapsed_string_token1] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1470), + [anon_sym_LT_LT_LT] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [sym_boolean] = ACTIONS(1472), + [sym_null] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1470), + [aux_sym_yield_expression_token1] = ACTIONS(1472), + [aux_sym_include_expression_token1] = ACTIONS(1472), + [aux_sym_include_once_expression_token1] = ACTIONS(1472), + [aux_sym_require_expression_token1] = ACTIONS(1472), + [aux_sym_require_once_expression_token1] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [560] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_name] = ACTIONS(1476), + [anon_sym_QMARK_GT] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [aux_sym_function_static_declaration_token1] = ACTIONS(1476), + [aux_sym_global_declaration_token1] = ACTIONS(1476), + [aux_sym_namespace_definition_token1] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [aux_sym_trait_declaration_token1] = ACTIONS(1476), + [aux_sym_interface_declaration_token1] = ACTIONS(1476), + [aux_sym_enum_declaration_token1] = ACTIONS(1476), + [aux_sym_enum_case_token1] = ACTIONS(1476), + [aux_sym_class_declaration_token1] = ACTIONS(1476), + [aux_sym_final_modifier_token1] = ACTIONS(1476), + [aux_sym_abstract_modifier_token1] = ACTIONS(1476), + [aux_sym_readonly_modifier_token1] = ACTIONS(1476), + [aux_sym_visibility_modifier_token1] = ACTIONS(1476), + [aux_sym_visibility_modifier_token2] = ACTIONS(1476), + [aux_sym_visibility_modifier_token3] = ACTIONS(1476), + [aux_sym__arrow_function_header_token1] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [aux_sym_cast_type_token1] = ACTIONS(1476), + [aux_sym_echo_statement_token1] = ACTIONS(1476), + [anon_sym_unset] = ACTIONS(1476), + [aux_sym_declare_statement_token1] = ACTIONS(1476), + [aux_sym_declare_statement_token2] = ACTIONS(1476), + [sym_float] = ACTIONS(1476), + [aux_sym_try_statement_token1] = ACTIONS(1476), + [aux_sym_goto_statement_token1] = ACTIONS(1476), + [aux_sym_continue_statement_token1] = ACTIONS(1476), + [aux_sym_break_statement_token1] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [aux_sym_return_statement_token1] = ACTIONS(1476), + [aux_sym_throw_expression_token1] = ACTIONS(1476), + [aux_sym_while_statement_token1] = ACTIONS(1476), + [aux_sym_while_statement_token2] = ACTIONS(1476), + [aux_sym_do_statement_token1] = ACTIONS(1476), + [aux_sym_for_statement_token1] = ACTIONS(1476), + [aux_sym_for_statement_token2] = ACTIONS(1476), + [aux_sym_foreach_statement_token1] = ACTIONS(1476), + [aux_sym_foreach_statement_token2] = ACTIONS(1476), + [aux_sym_if_statement_token1] = ACTIONS(1476), + [aux_sym_if_statement_token2] = ACTIONS(1476), + [aux_sym_else_if_clause_token1] = ACTIONS(1476), + [aux_sym_else_clause_token1] = ACTIONS(1476), + [aux_sym_match_expression_token1] = ACTIONS(1476), + [aux_sym_match_default_expression_token1] = ACTIONS(1476), + [aux_sym_switch_statement_token1] = ACTIONS(1476), + [aux_sym_switch_block_token1] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [aux_sym_clone_expression_token1] = ACTIONS(1476), + [aux_sym_print_intrinsic_token1] = ACTIONS(1476), + [aux_sym_object_creation_expression_token1] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [aux_sym__list_destructing_token1] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_self] = ACTIONS(1476), + [anon_sym_parent] = ACTIONS(1476), + [anon_sym_POUND_LBRACK] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [aux_sym_encapsed_string_token1] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [aux_sym_string_token1] = ACTIONS(1474), + [anon_sym_LT_LT_LT] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [sym_boolean] = ACTIONS(1476), + [sym_null] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [aux_sym_yield_expression_token1] = ACTIONS(1476), + [aux_sym_include_expression_token1] = ACTIONS(1476), + [aux_sym_include_once_expression_token1] = ACTIONS(1476), + [aux_sym_require_expression_token1] = ACTIONS(1476), + [aux_sym_require_once_expression_token1] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_name] = ACTIONS(1480), + [anon_sym_QMARK_GT] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [aux_sym_function_static_declaration_token1] = ACTIONS(1480), + [aux_sym_global_declaration_token1] = ACTIONS(1480), + [aux_sym_namespace_definition_token1] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [aux_sym_trait_declaration_token1] = ACTIONS(1480), + [aux_sym_interface_declaration_token1] = ACTIONS(1480), + [aux_sym_enum_declaration_token1] = ACTIONS(1480), + [aux_sym_enum_case_token1] = ACTIONS(1480), + [aux_sym_class_declaration_token1] = ACTIONS(1480), + [aux_sym_final_modifier_token1] = ACTIONS(1480), + [aux_sym_abstract_modifier_token1] = ACTIONS(1480), + [aux_sym_readonly_modifier_token1] = ACTIONS(1480), + [aux_sym_visibility_modifier_token1] = ACTIONS(1480), + [aux_sym_visibility_modifier_token2] = ACTIONS(1480), + [aux_sym_visibility_modifier_token3] = ACTIONS(1480), + [aux_sym__arrow_function_header_token1] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [aux_sym_cast_type_token1] = ACTIONS(1480), + [aux_sym_echo_statement_token1] = ACTIONS(1480), + [anon_sym_unset] = ACTIONS(1480), + [aux_sym_declare_statement_token1] = ACTIONS(1480), + [aux_sym_declare_statement_token2] = ACTIONS(1480), + [sym_float] = ACTIONS(1480), + [aux_sym_try_statement_token1] = ACTIONS(1480), + [aux_sym_goto_statement_token1] = ACTIONS(1480), + [aux_sym_continue_statement_token1] = ACTIONS(1480), + [aux_sym_break_statement_token1] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [aux_sym_return_statement_token1] = ACTIONS(1480), + [aux_sym_throw_expression_token1] = ACTIONS(1480), + [aux_sym_while_statement_token1] = ACTIONS(1480), + [aux_sym_while_statement_token2] = ACTIONS(1480), + [aux_sym_do_statement_token1] = ACTIONS(1480), + [aux_sym_for_statement_token1] = ACTIONS(1480), + [aux_sym_for_statement_token2] = ACTIONS(1480), + [aux_sym_foreach_statement_token1] = ACTIONS(1480), + [aux_sym_foreach_statement_token2] = ACTIONS(1480), + [aux_sym_if_statement_token1] = ACTIONS(1480), + [aux_sym_if_statement_token2] = ACTIONS(1480), + [aux_sym_else_if_clause_token1] = ACTIONS(1480), + [aux_sym_else_clause_token1] = ACTIONS(1480), + [aux_sym_match_expression_token1] = ACTIONS(1480), + [aux_sym_match_default_expression_token1] = ACTIONS(1480), + [aux_sym_switch_statement_token1] = ACTIONS(1480), + [aux_sym_switch_block_token1] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [aux_sym_clone_expression_token1] = ACTIONS(1480), + [aux_sym_print_intrinsic_token1] = ACTIONS(1480), + [aux_sym_object_creation_expression_token1] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [aux_sym__list_destructing_token1] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_self] = ACTIONS(1480), + [anon_sym_parent] = ACTIONS(1480), + [anon_sym_POUND_LBRACK] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [aux_sym_encapsed_string_token1] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [aux_sym_string_token1] = ACTIONS(1478), + [anon_sym_LT_LT_LT] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [sym_boolean] = ACTIONS(1480), + [sym_null] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [aux_sym_yield_expression_token1] = ACTIONS(1480), + [aux_sym_include_expression_token1] = ACTIONS(1480), + [aux_sym_include_once_expression_token1] = ACTIONS(1480), + [aux_sym_require_expression_token1] = ACTIONS(1480), + [aux_sym_require_once_expression_token1] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_name] = ACTIONS(1484), + [anon_sym_QMARK_GT] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [aux_sym_function_static_declaration_token1] = ACTIONS(1484), + [aux_sym_global_declaration_token1] = ACTIONS(1484), + [aux_sym_namespace_definition_token1] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [aux_sym_trait_declaration_token1] = ACTIONS(1484), + [aux_sym_interface_declaration_token1] = ACTIONS(1484), + [aux_sym_enum_declaration_token1] = ACTIONS(1484), + [aux_sym_enum_case_token1] = ACTIONS(1484), + [aux_sym_class_declaration_token1] = ACTIONS(1484), + [aux_sym_final_modifier_token1] = ACTIONS(1484), + [aux_sym_abstract_modifier_token1] = ACTIONS(1484), + [aux_sym_readonly_modifier_token1] = ACTIONS(1484), + [aux_sym_visibility_modifier_token1] = ACTIONS(1484), + [aux_sym_visibility_modifier_token2] = ACTIONS(1484), + [aux_sym_visibility_modifier_token3] = ACTIONS(1484), + [aux_sym__arrow_function_header_token1] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1482), + [aux_sym_cast_type_token1] = ACTIONS(1484), + [aux_sym_echo_statement_token1] = ACTIONS(1484), + [anon_sym_unset] = ACTIONS(1484), + [aux_sym_declare_statement_token1] = ACTIONS(1484), + [aux_sym_declare_statement_token2] = ACTIONS(1484), + [sym_float] = ACTIONS(1484), + [aux_sym_try_statement_token1] = ACTIONS(1484), + [aux_sym_goto_statement_token1] = ACTIONS(1484), + [aux_sym_continue_statement_token1] = ACTIONS(1484), + [aux_sym_break_statement_token1] = ACTIONS(1484), + [sym_integer] = ACTIONS(1484), + [aux_sym_return_statement_token1] = ACTIONS(1484), + [aux_sym_throw_expression_token1] = ACTIONS(1484), + [aux_sym_while_statement_token1] = ACTIONS(1484), + [aux_sym_while_statement_token2] = ACTIONS(1484), + [aux_sym_do_statement_token1] = ACTIONS(1484), + [aux_sym_for_statement_token1] = ACTIONS(1484), + [aux_sym_for_statement_token2] = ACTIONS(1484), + [aux_sym_foreach_statement_token1] = ACTIONS(1484), + [aux_sym_foreach_statement_token2] = ACTIONS(1484), + [aux_sym_if_statement_token1] = ACTIONS(1484), + [aux_sym_if_statement_token2] = ACTIONS(1484), + [aux_sym_else_if_clause_token1] = ACTIONS(1484), + [aux_sym_else_clause_token1] = ACTIONS(1484), + [aux_sym_match_expression_token1] = ACTIONS(1484), + [aux_sym_match_default_expression_token1] = ACTIONS(1484), + [aux_sym_switch_statement_token1] = ACTIONS(1484), + [aux_sym_switch_block_token1] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [aux_sym_clone_expression_token1] = ACTIONS(1484), + [aux_sym_print_intrinsic_token1] = ACTIONS(1484), + [aux_sym_object_creation_expression_token1] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [aux_sym__list_destructing_token1] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_self] = ACTIONS(1484), + [anon_sym_parent] = ACTIONS(1484), + [anon_sym_POUND_LBRACK] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [aux_sym_encapsed_string_token1] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [aux_sym_string_token1] = ACTIONS(1482), + [anon_sym_LT_LT_LT] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [sym_boolean] = ACTIONS(1484), + [sym_null] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1482), + [aux_sym_yield_expression_token1] = ACTIONS(1484), + [aux_sym_include_expression_token1] = ACTIONS(1484), + [aux_sym_include_once_expression_token1] = ACTIONS(1484), + [aux_sym_require_expression_token1] = ACTIONS(1484), + [aux_sym_require_once_expression_token1] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_name] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1488), + [aux_sym_function_static_declaration_token1] = ACTIONS(1486), + [aux_sym_global_declaration_token1] = ACTIONS(1486), + [aux_sym_namespace_definition_token1] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1486), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [aux_sym_trait_declaration_token1] = ACTIONS(1486), + [aux_sym_interface_declaration_token1] = ACTIONS(1486), + [aux_sym_enum_declaration_token1] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(1488), + [aux_sym_class_declaration_token1] = ACTIONS(1486), + [aux_sym_final_modifier_token1] = ACTIONS(1486), + [aux_sym_abstract_modifier_token1] = ACTIONS(1486), + [aux_sym_readonly_modifier_token1] = ACTIONS(1486), + [aux_sym_visibility_modifier_token1] = ACTIONS(1486), + [aux_sym_visibility_modifier_token2] = ACTIONS(1486), + [aux_sym_visibility_modifier_token3] = ACTIONS(1486), + [aux_sym__arrow_function_header_token1] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1488), + [aux_sym_cast_type_token1] = ACTIONS(1486), + [aux_sym_echo_statement_token1] = ACTIONS(1486), + [anon_sym_unset] = ACTIONS(1486), + [aux_sym_declare_statement_token1] = ACTIONS(1486), + [sym_float] = ACTIONS(1486), + [aux_sym_try_statement_token1] = ACTIONS(1486), + [aux_sym_goto_statement_token1] = ACTIONS(1486), + [aux_sym_continue_statement_token1] = ACTIONS(1486), + [aux_sym_break_statement_token1] = ACTIONS(1486), + [sym_integer] = ACTIONS(1486), + [aux_sym_return_statement_token1] = ACTIONS(1486), + [aux_sym_throw_expression_token1] = ACTIONS(1486), + [aux_sym_while_statement_token1] = ACTIONS(1486), + [aux_sym_do_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token1] = ACTIONS(1486), + [aux_sym_foreach_statement_token1] = ACTIONS(1486), + [aux_sym_if_statement_token1] = ACTIONS(1486), + [aux_sym_match_expression_token1] = ACTIONS(1486), + [aux_sym_switch_statement_token1] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [aux_sym_clone_expression_token1] = ACTIONS(1486), + [aux_sym_print_intrinsic_token1] = ACTIONS(1486), + [aux_sym_object_creation_expression_token1] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [aux_sym__list_destructing_token1] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_self] = ACTIONS(1486), + [anon_sym_parent] = ACTIONS(1486), + [anon_sym_POUND_LBRACK] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [aux_sym_encapsed_string_token1] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [aux_sym_string_token1] = ACTIONS(1488), + [anon_sym_LT_LT_LT] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [sym_boolean] = ACTIONS(1486), + [sym_null] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1488), + [aux_sym_yield_expression_token1] = ACTIONS(1486), + [aux_sym_include_expression_token1] = ACTIONS(1486), + [aux_sym_include_once_expression_token1] = ACTIONS(1486), + [aux_sym_require_expression_token1] = ACTIONS(1486), + [aux_sym_require_once_expression_token1] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym_qualified_name] = STATE(715), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2384), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym__primary_expression] = STATE(931), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_variable] = STATE(710), + [sym_member_access_expression] = STATE(710), + [sym_nullsafe_member_access_expression] = STATE(710), + [sym_scoped_property_access_expression] = STATE(710), + [sym_function_call_expression] = STATE(655), + [sym_scoped_call_expression] = STATE(655), + [sym__scope_resolution_qualifier] = STATE(2562), + [sym_relative_scope] = STATE(2562), + [sym_member_call_expression] = STATE(655), + [sym_nullsafe_member_call_expression] = STATE(655), + [sym_subscript_expression] = STATE(655), + [sym__dereferencable_expression] = STATE(1630), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(706), + [sym_string] = STATE(706), + [sym_heredoc] = STATE(706), + [sym_nowdoc] = STATE(706), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(706), + [sym_dynamic_variable_name] = STATE(655), + [sym_variable_name] = STATE(655), + [sym__reserved_identifier] = STATE(1536), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1490), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1492), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(613), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, + [565] = { + [sym_qualified_name] = STATE(805), + [sym_namespace_name_as_prefix] = STATE(2572), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2565), + [sym_arrow_function] = STATE(1038), + [sym_throw_expression] = STATE(1038), + [sym__primary_expression] = STATE(1042), + [sym_parenthesized_expression] = STATE(828), + [sym_class_constant_access_expression] = STATE(899), + [sym_print_intrinsic] = STATE(1038), + [sym_anonymous_function_creation_expression] = STATE(1038), + [sym_object_creation_expression] = STATE(1038), + [sym_update_expression] = STATE(1038), + [sym_cast_variable] = STATE(818), + [sym_member_access_expression] = STATE(818), + [sym_nullsafe_member_access_expression] = STATE(818), + [sym_scoped_property_access_expression] = STATE(818), + [sym_function_call_expression] = STATE(778), + [sym_scoped_call_expression] = STATE(778), + [sym__scope_resolution_qualifier] = STATE(2514), + [sym_relative_scope] = STATE(2514), + [sym_member_call_expression] = STATE(778), + [sym_nullsafe_member_call_expression] = STATE(778), + [sym_subscript_expression] = STATE(778), + [sym__dereferencable_expression] = STATE(1623), + [sym_array_creation_expression] = STATE(828), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1809), + [sym_encapsed_string] = STATE(828), + [sym_string] = STATE(828), + [sym_heredoc] = STATE(828), + [sym_nowdoc] = STATE(828), + [sym_shell_command_expression] = STATE(1038), + [sym__string] = STATE(828), + [sym_dynamic_variable_name] = STATE(778), + [sym_variable_name] = STATE(778), + [sym__reserved_identifier] = STATE(1523), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1496), + [aux_sym_function_static_declaration_token1] = ACTIONS(643), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(645), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1498), + [aux_sym_cast_type_token1] = ACTIONS(51), + [sym_float] = ACTIONS(59), + [sym_integer] = ACTIONS(59), + [aux_sym_throw_expression_token1] = ACTIONS(71), + [aux_sym_print_intrinsic_token1] = ACTIONS(95), + [aux_sym_object_creation_expression_token1] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [aux_sym_encapsed_string_token1] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_LT_LT_LT] = ACTIONS(113), + [anon_sym_BQUOTE] = ACTIONS(115), + [sym_boolean] = ACTIONS(59), + [sym_null] = ACTIONS(59), + [anon_sym_DOLLAR] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [566] = { + [sym_qualified_name] = STATE(715), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2403), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym__primary_expression] = STATE(931), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_variable] = STATE(710), + [sym_member_access_expression] = STATE(710), + [sym_nullsafe_member_access_expression] = STATE(710), + [sym_scoped_property_access_expression] = STATE(710), + [sym_function_call_expression] = STATE(655), + [sym_scoped_call_expression] = STATE(655), + [sym__scope_resolution_qualifier] = STATE(2562), + [sym_relative_scope] = STATE(2562), + [sym_member_call_expression] = STATE(655), + [sym_nullsafe_member_call_expression] = STATE(655), + [sym_subscript_expression] = STATE(655), + [sym__dereferencable_expression] = STATE(1630), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(706), + [sym_string] = STATE(706), + [sym_heredoc] = STATE(706), + [sym_nowdoc] = STATE(706), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(706), + [sym_dynamic_variable_name] = STATE(655), + [sym_variable_name] = STATE(655), + [sym__reserved_identifier] = STATE(1536), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1490), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1492), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(567), + [aux_sym_print_intrinsic_token1] = ACTIONS(579), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, + [567] = { + [sym_qualified_name] = STATE(715), + [sym_namespace_name_as_prefix] = STATE(2400), + [sym_namespace_name] = STATE(2571), + [sym_static_modifier] = STATE(2568), + [sym__arrow_function_header] = STATE(2460), + [sym_arrow_function] = STATE(917), + [sym_throw_expression] = STATE(917), + [sym__primary_expression] = STATE(931), + [sym_parenthesized_expression] = STATE(706), + [sym_class_constant_access_expression] = STATE(770), + [sym_print_intrinsic] = STATE(917), + [sym_anonymous_function_creation_expression] = STATE(917), + [sym_object_creation_expression] = STATE(917), + [sym_update_expression] = STATE(917), + [sym_cast_variable] = STATE(710), + [sym_member_access_expression] = STATE(710), + [sym_nullsafe_member_access_expression] = STATE(710), + [sym_scoped_property_access_expression] = STATE(710), + [sym_function_call_expression] = STATE(655), + [sym_scoped_call_expression] = STATE(655), + [sym__scope_resolution_qualifier] = STATE(2562), + [sym_relative_scope] = STATE(2562), + [sym_member_call_expression] = STATE(655), + [sym_nullsafe_member_call_expression] = STATE(655), + [sym_subscript_expression] = STATE(655), + [sym__dereferencable_expression] = STATE(1630), + [sym_array_creation_expression] = STATE(706), + [sym_attribute_group] = STATE(1335), + [sym_attribute_list] = STATE(1760), + [sym_encapsed_string] = STATE(706), + [sym_string] = STATE(706), + [sym_heredoc] = STATE(706), + [sym_nowdoc] = STATE(706), + [sym_shell_command_expression] = STATE(917), + [sym__string] = STATE(706), + [sym_dynamic_variable_name] = STATE(655), + [sym_variable_name] = STATE(655), + [sym__reserved_identifier] = STATE(1536), + [aux_sym_attribute_list_repeat1] = STATE(1335), + [sym_name] = ACTIONS(1490), + [aux_sym_function_static_declaration_token1] = ACTIONS(551), + [aux_sym_namespace_definition_token1] = ACTIONS(553), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(27), + [aux_sym__arrow_function_header_token1] = ACTIONS(47), + [anon_sym_LPAREN] = ACTIONS(1492), + [aux_sym_cast_type_token1] = ACTIONS(563), + [sym_float] = ACTIONS(565), + [sym_integer] = ACTIONS(565), + [aux_sym_throw_expression_token1] = ACTIONS(655), + [aux_sym_print_intrinsic_token1] = ACTIONS(665), + [aux_sym_object_creation_expression_token1] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_self] = ACTIONS(105), + [anon_sym_parent] = ACTIONS(105), + [anon_sym_POUND_LBRACK] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(587), + [aux_sym_encapsed_string_token1] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(587), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_boolean] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(583), 1, - sym_text_interpolation, - ACTIONS(1574), 21, + ACTIONS(1504), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77482,12 +75220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 39, + ACTIONS(1502), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77522,14 +75262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [704] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [70] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(584), 1, - sym_text_interpolation, - ACTIONS(1578), 21, + ACTIONS(1510), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77551,12 +75287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 39, + ACTIONS(1508), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77591,14 +75329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [778] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [140] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(585), 1, - sym_text_interpolation, - ACTIONS(1582), 21, + ACTIONS(1514), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77620,12 +75354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 39, + ACTIONS(1512), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77660,14 +75396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [852] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [210] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(586), 1, - sym_text_interpolation, - ACTIONS(1586), 21, + ACTIONS(1518), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77689,12 +75421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 39, + ACTIONS(1516), 41, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_base_clause_token1, + aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -77729,83 +75463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [926] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [280] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(587), 1, - sym_text_interpolation, - ACTIONS(1590), 21, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1588), 39, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1524), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [1000] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(588), 1, - sym_text_interpolation, - ACTIONS(1594), 21, + STATE(582), 1, + sym_arguments, + ACTIONS(1522), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77827,14 +75492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1592), 39, + ACTIONS(1520), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -77867,14 +75531,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1074] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [353] = 9, + ACTIONS(1506), 1, sym_comment, - STATE(589), 1, - sym_text_interpolation, - ACTIONS(1598), 21, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1530), 1, + anon_sym_EQ, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1536), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 18, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1528), 20, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [434] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_arguments, + ACTIONS(1540), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77896,14 +75632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1596), 39, + ACTIONS(1538), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -77936,14 +75671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1148] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [507] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(590), 1, - sym_text_interpolation, - ACTIONS(1602), 21, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(589), 1, + sym_arguments, + ACTIONS(1544), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -77965,14 +75700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1600), 39, + ACTIONS(1542), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -78005,14 +75739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1222] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [580] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(591), 1, - sym_text_interpolation, - ACTIONS(1606), 21, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(590), 1, + sym_arguments, + ACTIONS(1548), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78034,14 +75768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 39, + ACTIONS(1546), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -78074,14 +75807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1296] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [653] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(592), 1, - sym_text_interpolation, - ACTIONS(1610), 21, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, + sym_arguments, + ACTIONS(1552), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78103,14 +75836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 39, + ACTIONS(1550), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -78143,14 +75875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1370] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [726] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(593), 1, - sym_text_interpolation, - ACTIONS(1614), 21, + ACTIONS(1556), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -78172,7 +75900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 39, + ACTIONS(1554), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -78212,61 +75940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1444] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [794] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(594), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1618), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1554), 20, + ACTIONS(1560), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -78286,25 +75965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1529] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1556), 1, - anon_sym_EQ, - STATE(595), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1558), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1562), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78318,13 +75990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -78337,8 +76005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 20, + [862] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -78358,29 +76030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1610] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1562), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1620), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(596), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1618), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78394,12 +76055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78411,8 +76070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 20, + [930] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -78432,29 +76095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1695] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1566), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(597), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1624), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78468,11 +76120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -78485,8 +76135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + [998] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 21, anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78505,29 +76160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1779] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + ACTIONS(1570), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1626), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(598), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1624), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78541,57 +76185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [1863] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [1066] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(599), 1, - sym_text_interpolation, - STATE(611), 1, - sym_arguments, - ACTIONS(1546), 20, + ACTIONS(1576), 21, anon_sym_AMP, anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78610,12 +76225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1544), 35, - sym__automatic_semicolon, + ACTIONS(1574), 39, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -78635,6 +76253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78646,60 +76265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1938] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [1134] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1556), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(600), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1562), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_RBRACK, - ACTIONS(1554), 19, + ACTIONS(1580), 21, anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78718,29 +76290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2021] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1628), 1, + ACTIONS(1578), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1630), 1, - anon_sym_EQ, - STATE(601), 1, - sym_text_interpolation, - STATE(619), 1, - sym_arguments, - ACTIONS(1632), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1634), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78754,11 +76315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78770,8 +76330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + [1202] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 21, anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78790,29 +76355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2104] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1628), 1, + ACTIONS(1582), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1636), 1, - anon_sym_EQ, - STATE(602), 1, - sym_text_interpolation, - STATE(619), 1, - sym_arguments, - ACTIONS(1632), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1634), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78826,11 +76380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78842,8 +76395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + [1270] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1588), 21, anon_sym_AMP, + anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -78862,25 +76420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2187] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - STATE(603), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1586), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1618), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78894,12 +76445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78911,8 +76460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 20, + [1338] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -78932,29 +76485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2266] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1556), 1, - anon_sym_EQ, - ACTIONS(1628), 1, + ACTIONS(1590), 39, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - STATE(604), 1, - sym_text_interpolation, - STATE(619), 1, - sym_arguments, - ACTIONS(1632), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1562), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -78968,11 +76510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -78984,40 +76525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [2349] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [1406] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(605), 1, - sym_text_interpolation, - STATE(634), 1, - sym_arguments, - ACTIONS(1538), 20, + ACTIONS(1596), 21, anon_sym_AMP, anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79036,12 +76550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1536), 35, - sym__automatic_semicolon, + ACTIONS(1594), 39, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -79061,6 +76578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79072,20 +76590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2424] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [1474] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(606), 1, - sym_text_interpolation, - STATE(630), 1, - sym_arguments, - ACTIONS(1550), 20, + ACTIONS(1600), 21, anon_sym_AMP, anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79104,12 +76615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1548), 35, - sym__automatic_semicolon, + ACTIONS(1598), 39, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -79129,6 +76643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79140,20 +76655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2499] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [1542] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_text_interpolation, - STATE(620), 1, - sym_arguments, - ACTIONS(1532), 20, + ACTIONS(1604), 21, anon_sym_AMP, anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79172,12 +76680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1530), 35, - sym__automatic_semicolon, + ACTIONS(1602), 39, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -79197,6 +76708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79208,48 +76720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2574] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, - anon_sym_COMMA, - ACTIONS(1516), 1, + [1610] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, + ACTIONS(1530), 1, anon_sym_EQ, - ACTIONS(1638), 1, - anon_sym_RPAREN, - STATE(592), 1, - sym_arguments, - STATE(608), 1, - sym_text_interpolation, - STATE(1988), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1560), 2, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + ACTIONS(1536), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79263,8 +76748,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + ACTIONS(1526), 18, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1528), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79283,25 +76788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2663] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [1685] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1620), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1606), 1, anon_sym_EQ, - STATE(609), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1618), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79315,7 +76820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, + ACTIONS(1526), 16, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -79332,7 +76837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 20, + ACTIONS(1528), 20, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -79353,20 +76858,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2742] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [1764] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(610), 1, - sym_text_interpolation, - STATE(612), 1, + ACTIONS(1610), 1, + anon_sym_EQ, + STATE(581), 1, sym_arguments, - ACTIONS(1542), 20, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 16, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1528), 20, anon_sym_AMP, - anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79385,15 +76928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1540), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + [1843] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, + anon_sym_EQ, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1614), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79407,9 +76960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1526), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79421,16 +76977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2817] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(611), 1, - sym_text_interpolation, - ACTIONS(1570), 20, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79449,16 +76997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1568), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [1921] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1616), 1, + anon_sym_EQ, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1614), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79472,9 +77029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1526), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79486,14 +77046,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2887] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1528), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [1999] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(612), 1, - sym_text_interpolation, - ACTIONS(1586), 20, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(615), 1, + sym_arguments, + ACTIONS(1548), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79514,13 +77094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 36, + ACTIONS(1546), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -79551,29 +77130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2957] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2068] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1610), 1, anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(613), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79587,8 +77158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 14, - anon_sym_COMMA, + ACTIONS(1526), 16, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, aux_sym_binary_expression_token1, @@ -79602,8 +77175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79622,14 +77196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3039] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2141] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(614), 1, - sym_text_interpolation, - ACTIONS(1524), 20, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(616), 1, + sym_arguments, + ACTIONS(1522), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79650,13 +77224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1522), 36, + ACTIONS(1520), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -79687,14 +77260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3109] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2210] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(615), 1, - sym_text_interpolation, - ACTIONS(1528), 20, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(618), 1, + sym_arguments, + ACTIONS(1540), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79715,13 +77288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1526), 36, + ACTIONS(1538), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -79752,29 +77324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3179] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2279] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1644), 1, + ACTIONS(1530), 1, anon_sym_EQ, - STATE(592), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(626), 1, sym_arguments, - STATE(616), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + ACTIONS(1620), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1536), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79788,10 +77356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 14, + ACTIONS(1526), 15, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79803,7 +77372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79823,44 +77392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3261] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2356] = 9, + ACTIONS(1506), 1, sym_comment, - STATE(617), 1, - sym_text_interpolation, - ACTIONS(1594), 20, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1592), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1618), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1622), 1, + anon_sym_EQ, + STATE(626), 1, + sym_arguments, + ACTIONS(1620), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1624), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79874,9 +77424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1526), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79888,16 +77440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3331] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(618), 1, - sym_text_interpolation, - ACTIONS(1590), 20, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -79916,16 +77460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1588), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [2433] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1618), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1626), 1, + anon_sym_EQ, + STATE(626), 1, + sym_arguments, + ACTIONS(1620), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1624), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79939,9 +77492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1526), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -79953,14 +77508,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3401] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1528), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2510] = 5, + ACTIONS(1506), 1, sym_comment, + ACTIONS(1618), 1, + anon_sym_LPAREN, STATE(619), 1, - sym_text_interpolation, - ACTIONS(1610), 20, + sym_arguments, + ACTIONS(1552), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -79981,13 +77556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 36, + ACTIONS(1550), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -80018,14 +77592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3471] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2579] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(620), 1, - sym_text_interpolation, - ACTIONS(1578), 20, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(609), 1, + sym_arguments, + ACTIONS(1544), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80046,13 +77620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1576), 36, + ACTIONS(1542), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -80083,45 +77656,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3541] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2648] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1606), 1, anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(621), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1646), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, + ACTIONS(1608), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80135,8 +77684,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + ACTIONS(1526), 16, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1528), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80155,16 +77722,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3625] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [2721] = 9, + ACTIONS(1506), 1, sym_comment, - STATE(622), 1, - sym_text_interpolation, - ACTIONS(1598), 20, - anon_sym_AMP, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1530), 1, anon_sym_EQ, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1536), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_RBRACK, + ACTIONS(1528), 19, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80183,32 +77790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1596), 36, - sym__automatic_semicolon, - anon_sym_SEMI, + [2798] = 12, + ACTIONS(833), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1628), 1, + anon_sym_RPAREN, + STATE(581), 1, + sym_arguments, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80220,16 +77827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3695] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(623), 1, - sym_text_interpolation, - ACTIONS(1520), 20, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80248,32 +77861,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1518), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [2881] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1610), 1, + anon_sym_EQ, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + ACTIONS(1630), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80285,14 +77895,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3765] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [2959] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(624), 1, - sym_text_interpolation, - ACTIONS(1606), 20, + ACTIONS(1600), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80313,7 +77953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 36, + ACTIONS(1598), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80350,14 +77990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3835] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3023] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(625), 1, - sym_text_interpolation, - ACTIONS(1566), 20, + ACTIONS(1504), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80378,7 +78014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1564), 36, + ACTIONS(1502), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80415,25 +78051,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3905] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3087] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1626), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, anon_sym_EQ, - STATE(626), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1632), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1624), 13, + ACTIONS(1526), 12, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1614), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80447,24 +78099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80484,14 +78119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3983] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3165] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(627), 1, - sym_text_interpolation, - ACTIONS(1614), 20, + ACTIONS(1596), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80512,7 +78143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 36, + ACTIONS(1594), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80549,86 +78180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4053] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(628), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1649), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4137] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3229] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(629), 1, - sym_text_interpolation, - ACTIONS(1574), 20, + ACTIONS(1564), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80649,7 +78204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 36, + ACTIONS(1562), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80686,14 +78241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4207] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3293] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(630), 1, - sym_text_interpolation, - ACTIONS(1582), 20, + ACTIONS(1556), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80714,7 +78265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1580), 36, + ACTIONS(1554), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80751,60 +78302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4277] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3357] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1616), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(631), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1651), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + ACTIONS(1604), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80823,14 +78326,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4361] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1602), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [3421] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(632), 1, - sym_text_interpolation, - ACTIONS(1514), 20, + ACTIONS(1572), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80851,7 +78387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1512), 36, + ACTIONS(1570), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80888,25 +78424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4431] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3485] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1622), 1, + ACTIONS(1612), 1, anon_sym_EQ, - STATE(633), 1, - sym_text_interpolation, - ACTIONS(1560), 2, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1624), 13, + ACTIONS(1614), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80920,7 +78452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 16, + ACTIONS(1526), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -80937,7 +78469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80957,14 +78489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4509] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3557] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(634), 1, - sym_text_interpolation, - ACTIONS(1602), 20, + ACTIONS(1576), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -80985,7 +78513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1600), 36, + ACTIONS(1574), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81022,56 +78550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4579] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3621] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1556), 1, - anon_sym_EQ, - STATE(635), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1562), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_RBRACK, - ACTIONS(1554), 19, + ACTIONS(1592), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81090,44 +78574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4656] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + ACTIONS(1590), 36, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1638), 1, - anon_sym_RPAREN, - STATE(636), 1, - sym_text_interpolation, - STATE(1988), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1552), 12, anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81141,52 +78597,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4739] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_EQ, - STATE(592), 1, - sym_arguments, - STATE(637), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1552), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81198,59 +78611,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_QMARK_QMARK, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [4822] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3685] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1556), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1635), 1, anon_sym_EQ, - STATE(638), 1, - sym_text_interpolation, - ACTIONS(1632), 2, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1562), 13, + ACTIONS(1637), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81264,11 +78643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 15, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1526), 14, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81280,7 +78658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81300,25 +78678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4899] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3761] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1636), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, anon_sym_EQ, - STATE(639), 1, - sym_text_interpolation, - ACTIONS(1632), 2, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1634), 13, + ACTIONS(1637), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81332,11 +78710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 15, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1526), 14, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81348,7 +78725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81368,25 +78745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4976] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3837] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1630), 1, + ACTIONS(1616), 1, anon_sym_EQ, - STATE(640), 1, - sym_text_interpolation, - ACTIONS(1632), 2, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1634), 13, + ACTIONS(1614), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81400,11 +78773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 15, - sym__automatic_semicolon, + ACTIONS(1526), 16, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81416,7 +78790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + ACTIONS(1528), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81436,56 +78810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5053] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [3909] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - STATE(641), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1651), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + ACTIONS(1584), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81504,25 +78834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5131] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1640), 1, - anon_sym_EQ, - STATE(642), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1582), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1642), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81536,10 +78857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 14, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81551,8 +78871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + [3973] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1510), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81571,29 +78895,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5207] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1622), 1, - anon_sym_EQ, - STATE(643), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1646), 2, + ACTIONS(1508), 36, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81605,22 +78932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + [4037] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81639,29 +78956,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5285] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - STATE(644), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1649), 2, + ACTIONS(1578), 36, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1552), 12, - anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81673,22 +78993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + [4101] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1568), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81707,25 +79017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5363] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1644), 1, - anon_sym_EQ, - STATE(645), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, + ACTIONS(1566), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1642), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81739,10 +79040,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1552), 14, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81754,8 +79054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1554), 19, + [4165] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1514), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81774,28 +79078,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5439] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1622), 1, - anon_sym_EQ, - STATE(646), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1653), 2, + ACTIONS(1512), 36, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1552), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81807,22 +79115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1624), 13, - anon_sym_STAR_STAR_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DOT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1554), 19, + [4229] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1518), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81841,1293 +79139,1018 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5516] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(592), 1, - sym_arguments, - STATE(647), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1516), 36, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1658), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1656), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5587] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [4293] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(648), 1, - sym_text_interpolation, - STATE(664), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1556), 13, + ACTIONS(1560), 20, anon_sym_AMP, - anon_sym_COLON, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 27, + anon_sym_PERCENT, + ACTIONS(1558), 36, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, + anon_sym_LPAREN, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5654] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(228), 1, - aux_sym_final_modifier_token1, - ACTIONS(230), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1667), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1669), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1673), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(1675), 1, - sym_var_modifier, - ACTIONS(1679), 1, - anon_sym_QMARK, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - STATE(649), 1, - sym_text_interpolation, - STATE(1118), 1, - aux_sym_property_declaration_repeat1, - STATE(1316), 1, - sym__modifier, - STATE(1538), 1, - sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(1715), 1, - sym_variable_name, - STATE(1792), 1, - sym_property_element, - STATE(1794), 1, - sym__function_definition_header, - STATE(2027), 1, - sym__type, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(1677), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1314), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [5763] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [4357] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1687), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(650), 1, - sym_text_interpolation, - STATE(743), 1, + ACTIONS(1610), 1, + anon_sym_EQ, + STATE(581), 1, sym_arguments, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1685), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1683), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + ACTIONS(1526), 12, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5834] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(651), 1, - sym_text_interpolation, - STATE(664), 1, - sym_arguments, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 13, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 25, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - [5903] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [4435] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(652), 1, - sym_text_interpolation, - STATE(664), 1, - sym_arguments, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1588), 20, anon_sym_AMP, - anon_sym_COLON, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 26, + anon_sym_PERCENT, + ACTIONS(1586), 36, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5974] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(592), 1, - sym_arguments, - STATE(653), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LT_EQ_GT, + [4499] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1530), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1526), 12, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6045] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(654), 1, - sym_text_interpolation, - ACTIONS(1594), 13, + ACTIONS(1536), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_RBRACK, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 34, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_PERCENT, + [4570] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1626), 1, + anon_sym_EQ, + ACTIONS(1620), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, - aux_sym_use_instead_of_clause_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1624), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6106] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(655), 1, - sym_text_interpolation, - STATE(663), 1, - sym_arguments, - ACTIONS(1532), 13, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + anon_sym_PERCENT, + [4641] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1622), 1, + anon_sym_EQ, + ACTIONS(1620), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1624), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6171] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(656), 1, - sym_text_interpolation, - STATE(675), 1, - sym_arguments, - ACTIONS(1542), 13, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 32, - anon_sym_SEMI, + anon_sym_PERCENT, + [4712] = 10, + ACTIONS(833), 1, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1628), 1, anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + STATE(1942), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6236] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(657), 1, - sym_text_interpolation, - STATE(673), 1, - sym_arguments, - ACTIONS(1550), 13, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + anon_sym_PERCENT, + [4789] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1530), 1, + anon_sym_EQ, + ACTIONS(1620), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1536), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6301] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(658), 1, - sym_text_interpolation, - STATE(674), 1, - sym_arguments, - ACTIONS(1546), 13, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 32, - anon_sym_SEMI, + anon_sym_PERCENT, + [4860] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, + anon_sym_EQ, + STATE(581), 1, + sym_arguments, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1643), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1526), 11, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6366] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(228), 1, - aux_sym_final_modifier_token1, - ACTIONS(230), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1667), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1669), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1673), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(1675), 1, - sym_var_modifier, - ACTIONS(1679), 1, - anon_sym_QMARK, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - STATE(659), 1, - sym_text_interpolation, - STATE(1118), 1, - aux_sym_property_declaration_repeat1, - STATE(1316), 1, - sym__modifier, - STATE(1538), 1, - sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(1715), 1, - sym_variable_name, - STATE(1805), 1, - sym_property_element, - STATE(1813), 1, - sym__function_definition_header, - STATE(2104), 1, - sym__type, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(1677), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1314), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [6475] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(660), 1, - sym_text_interpolation, - STATE(665), 1, - sym_arguments, - ACTIONS(1538), 13, + ACTIONS(1614), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 32, - anon_sym_SEMI, + anon_sym_PERCENT, + [4937] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1632), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6540] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(661), 1, - sym_text_interpolation, - ACTIONS(1524), 13, + ACTIONS(1614), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1522), 33, - anon_sym_SEMI, + anon_sym_PERCENT, + [5009] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1641), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_STAR_STAR, + ACTIONS(1532), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6600] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(662), 1, - sym_text_interpolation, - ACTIONS(1594), 13, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, + anon_sym_PERCENT, + [5081] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1639), 1, + anon_sym_EQ, + ACTIONS(1534), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1637), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 14, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6660] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(663), 1, - sym_text_interpolation, - ACTIONS(1578), 13, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1576), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_PERCENT, + [5151] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1635), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1637), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1526), 14, + anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6720] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(664), 1, - sym_text_interpolation, - ACTIONS(1610), 13, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 33, - anon_sym_SEMI, + anon_sym_PERCENT, + [5221] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1630), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1526), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6780] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(665), 1, - sym_text_interpolation, - ACTIONS(1602), 13, + ACTIONS(1608), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1600), 33, - anon_sym_SEMI, + anon_sym_PERCENT, + [5293] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1643), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1526), 11, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [6840] = 30, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1689), 1, - sym_name, - ACTIONS(1691), 1, - aux_sym_class_declaration_token1, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - STATE(666), 1, - sym_text_interpolation, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1686), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2533), 1, - sym_attribute_list, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - STATE(2629), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(703), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1740), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(693), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(695), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1549), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [6950] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(667), 1, - sym_text_interpolation, - ACTIONS(1566), 13, + ACTIONS(1614), 13, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1528), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1564), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PERCENT, + [5364] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, + STATE(661), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7010] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(668), 1, - sym_text_interpolation, - ACTIONS(1598), 13, + ACTIONS(1530), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83141,22 +80164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1596), 33, + ACTIONS(1536), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83175,19 +80192,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7070] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5425] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(669), 1, - sym_text_interpolation, - ACTIONS(1520), 13, + ACTIONS(1646), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(661), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83196,22 +80222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1518), 33, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83230,19 +80249,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7130] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5490] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(39), 1, + aux_sym_final_modifier_token1, + ACTIONS(41), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, sym_comment, - STATE(670), 1, - sym_text_interpolation, - ACTIONS(1514), 13, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1653), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1655), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1659), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1661), 1, + sym_var_modifier, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1506), 1, + sym_qualified_name, + STATE(1628), 1, + sym_variable_name, + STATE(1778), 1, + sym_property_element, + STATE(1780), 1, + sym__function_definition_header, + STATE(2080), 1, + sym__type, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(1663), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1526), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1058), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [5587] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(581), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83251,22 +80352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 33, + ACTIONS(1669), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83285,14 +80379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7190] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5652] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(671), 1, - sym_text_interpolation, - ACTIONS(1528), 13, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(668), 1, + sym_arguments, + ACTIONS(1552), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83306,14 +80400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 33, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -83340,22 +80433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7250] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5711] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1646), 1, anon_sym_LPAREN, - STATE(590), 1, + STATE(658), 1, sym_arguments, - STATE(672), 1, - sym_text_interpolation, - ACTIONS(1699), 12, + ACTIONS(1540), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83364,18 +80454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1697), 32, + ACTIONS(1538), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_use_instead_of_clause_token1, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -83397,19 +80487,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7314] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5770] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(39), 1, + aux_sym_final_modifier_token1, + ACTIONS(41), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1653), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1655), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1659), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1661), 1, + sym_var_modifier, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1506), 1, + sym_qualified_name, + STATE(1628), 1, + sym_variable_name, + STATE(1739), 1, + sym_property_element, + STATE(1759), 1, + sym__function_definition_header, + STATE(2030), 1, + sym__type, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(1663), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1526), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1058), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [5867] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(673), 1, - sym_text_interpolation, - ACTIONS(1582), 13, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(581), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83418,22 +80590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1580), 33, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83452,14 +80617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7374] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5932] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(674), 1, - sym_text_interpolation, - ACTIONS(1570), 13, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_arguments, + ACTIONS(1548), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83473,14 +80638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1568), 33, + ACTIONS(1546), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -83507,14 +80671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7434] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [5991] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(675), 1, - sym_text_interpolation, - ACTIONS(1586), 13, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(666), 1, + sym_arguments, + ACTIONS(1522), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83528,14 +80692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1584), 33, + ACTIONS(1520), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -83562,19 +80725,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7494] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6050] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(676), 1, - sym_text_interpolation, - ACTIONS(1574), 13, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1675), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83583,22 +80755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1572), 33, + ACTIONS(1673), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83617,14 +80782,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7554] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6115] = 7, + ACTIONS(1506), 1, sym_comment, - STATE(677), 1, - sym_text_interpolation, - ACTIONS(1590), 13, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83638,22 +80812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1588), 33, + ACTIONS(1526), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -83668,102 +80834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [7614] = 30, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - sym_name, - ACTIONS(1705), 1, - aux_sym_class_declaration_token1, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - STATE(678), 1, - sym_text_interpolation, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1695), 1, - sym__dereferencable_expression, - STATE(2537), 1, - sym__scope_resolution_qualifier, - STATE(2572), 1, - sym_attribute_list, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - STATE(2616), 1, - sym_namespace_name_as_prefix, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(846), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1740), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1703), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(810), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(826), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1549), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [7724] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [6178] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(679), 1, - sym_text_interpolation, - ACTIONS(1711), 12, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(669), 1, + sym_arguments, + ACTIONS(1544), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83772,24 +80859,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1709), 34, + ACTIONS(1542), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOLLAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -83807,19 +80892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7784] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6237] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(680), 1, - sym_text_interpolation, - ACTIONS(1614), 13, + ACTIONS(1560), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83828,19 +80909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1612), 33, + ACTIONS(1558), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_class_interface_clause_token1, + aux_sym_use_instead_of_clause_token1, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -83862,14 +80944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7844] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6292] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(681), 1, - sym_text_interpolation, - ACTIONS(1606), 13, + ACTIONS(1576), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83883,7 +80961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 33, + ACTIONS(1574), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83917,20 +80995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7904] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6346] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(585), 1, - sym_arguments, - STATE(682), 1, - sym_text_interpolation, - ACTIONS(1550), 12, + ACTIONS(1580), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -83939,7 +81012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 32, + ACTIONS(1578), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -83948,9 +81021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -83972,18 +81046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7965] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6400] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(586), 1, - sym_arguments, - STATE(683), 1, - sym_text_interpolation, - ACTIONS(1542), 12, + ACTIONS(1681), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -83996,13 +81062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 31, + ACTIONS(1679), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -84011,6 +81079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOLLAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -84028,104 +81097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8028] = 27, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1713), 1, - sym_name, - ACTIONS(1715), 1, - anon_sym_RBRACE, - STATE(684), 1, - sym_text_interpolation, - STATE(688), 1, - aux_sym_use_list_repeat1, - STATE(1568), 1, - sym_class_constant_access_expression, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2167), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1740), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1549), 10, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [8131] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6454] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(685), 1, - sym_text_interpolation, - STATE(750), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1719), 12, + ACTIONS(1568), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84134,15 +81114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1717), 26, + ACTIONS(1566), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84161,22 +81148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8196] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6508] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(686), 1, - sym_text_interpolation, - STATE(736), 1, - sym_arguments, - ACTIONS(1532), 12, + ACTIONS(1556), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84185,17 +81165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 31, + ACTIONS(1554), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -84217,28 +81199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8259] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6562] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(687), 1, - sym_text_interpolation, - STATE(750), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1556), 12, + ACTIONS(1604), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84247,15 +81216,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 26, + ACTIONS(1602), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84274,104 +81250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8324] = 27, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1713), 1, - sym_name, - ACTIONS(1721), 1, - anon_sym_RBRACE, - STATE(688), 1, - sym_text_interpolation, - STATE(712), 1, - aux_sym_use_list_repeat1, - STATE(1568), 1, - sym_class_constant_access_expression, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2167), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1740), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1549), 10, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [8427] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6616] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(689), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1658), 12, + ACTIONS(1596), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84380,15 +81267,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 26, + ACTIONS(1594), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84407,23 +81301,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8492] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6670] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, - anon_sym_EQ, - STATE(690), 1, - sym_text_interpolation, - ACTIONS(1727), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1725), 12, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1683), 1, + sym_name, + ACTIONS(1687), 1, + aux_sym_class_declaration_token1, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + STATE(2533), 1, + sym_attribute_list, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(803), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2481), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1685), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(815), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(816), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1664), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1517), 11, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [6766] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1572), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84432,20 +81390,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 30, + ACTIONS(1570), 33, anon_sym_SEMI, + anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -84463,22 +81424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8555] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6820] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(665), 1, - sym_arguments, - STATE(691), 1, - sym_text_interpolation, - ACTIONS(1699), 12, + ACTIONS(1588), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84487,17 +81441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1697), 31, + ACTIONS(1586), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -84519,28 +81475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8618] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6874] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(692), 1, - sym_text_interpolation, - STATE(750), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1734), 12, + ACTIONS(1592), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84549,15 +81492,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 26, + ACTIONS(1590), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84576,28 +81526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8683] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6928] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(693), 1, - sym_text_interpolation, - STATE(743), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1685), 12, + ACTIONS(1600), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84606,15 +81543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 26, + ACTIONS(1598), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84633,106 +81577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8748] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(1738), 1, - anon_sym_COMMA, - ACTIONS(1740), 1, - anon_sym_RPAREN, - ACTIONS(1742), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1746), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(694), 1, - sym_text_interpolation, - STATE(993), 1, - sym_attribute_list, - STATE(1182), 1, - sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, - sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, - sym__type, - STATE(1929), 1, - sym_reference_modifier, - STATE(1931), 1, - sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, - sym_namespace_name_as_prefix, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1930), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [8855] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [6982] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1750), 1, - anon_sym_LPAREN, - STATE(695), 1, - sym_text_interpolation, - STATE(925), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1685), 12, + ACTIONS(1560), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84741,15 +81594,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 26, + ACTIONS(1558), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84768,20 +81628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8920] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7036] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(696), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1556), 13, + ACTIONS(1518), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84795,16 +81645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 27, + ACTIONS(1516), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -84823,156 +81679,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8981] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [7090] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(290), 1, - aux_sym__list_destructing_token1, - ACTIONS(555), 1, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(565), 1, + ACTIONS(563), 1, aux_sym_cast_type_token1, - ACTIONS(593), 1, + ACTIONS(591), 1, anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(687), 1, - anon_sym_AMP, - ACTIONS(983), 1, + ACTIONS(1044), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, + ACTIONS(1689), 1, anon_sym_LPAREN, - ACTIONS(1752), 1, + ACTIONS(1693), 1, sym_name, - STATE(697), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2039), 1, - sym__list_destructing, - STATE(2043), 1, - sym_by_ref, - STATE(2454), 1, + ACTIONS(1695), 1, + aux_sym_class_declaration_token1, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, + STATE(2492), 1, + sym_attribute_list, + STATE(2571), 1, sym_namespace_name, - ACTIONS(589), 2, + ACTIONS(587), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(591), 2, + ACTIONS(589), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - STATE(1562), 2, + STATE(711), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(294), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(2606), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1513), 4, - sym_cast_variable, + STATE(712), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1438), 7, + STATE(714), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1637), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1517), 11, + sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [9088] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [7186] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(698), 1, - sym_text_interpolation, - STATE(756), 1, - sym_arguments, - ACTIONS(1550), 12, + ACTIONS(1504), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1548), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9151] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(699), 1, - sym_text_interpolation, - STATE(720), 1, - sym_arguments, - ACTIONS(1538), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84981,17 +81768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 31, + ACTIONS(1502), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -85013,24 +81802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9214] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7240] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(590), 1, sym_arguments, - STATE(700), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1701), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85043,72 +81822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 26, + ACTIONS(1699), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym_use_instead_of_clause_token1, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [9279] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(664), 1, - sym_arguments, - STATE(701), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1554), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85127,28 +81855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9344] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7298] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(702), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1658), 12, + ACTIONS(1514), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85157,15 +81872,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 26, + ACTIONS(1512), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85184,28 +81906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9409] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7352] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(703), 1, - sym_text_interpolation, - STATE(743), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1685), 12, + ACTIONS(1510), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85214,15 +81923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 26, + ACTIONS(1508), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85241,28 +81957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9474] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7406] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(664), 1, - sym_arguments, - STATE(704), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1564), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85271,15 +81974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 26, + ACTIONS(1562), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85298,106 +82008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9539] = 29, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(290), 1, - aux_sym__list_destructing_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(687), 1, - anon_sym_AMP, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - sym_name, - STATE(705), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2201), 1, - sym_by_ref, - STATE(2204), 1, - sym__list_destructing, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1532), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1508), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [9646] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7460] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(706), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1584), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85406,15 +82025,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 26, + ACTIONS(1582), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85433,18 +82059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9711] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7514] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(707), 1, - sym_text_interpolation, - STATE(744), 1, + STATE(589), 1, sym_arguments, - ACTIONS(1542), 12, + ACTIONS(1544), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85457,13 +82077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 31, + ACTIONS(1542), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -85489,28 +82110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9774] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7569] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(708), 1, - sym_text_interpolation, - ACTIONS(1560), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 13, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_arguments, + ACTIONS(1701), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85519,14 +82130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 25, + ACTIONS(1699), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85545,18 +82162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9837] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7626] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(590), 1, + STATE(583), 1, sym_arguments, - STATE(709), 1, - sym_text_interpolation, - ACTIONS(1538), 12, + ACTIONS(1540), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85569,13 +82180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 31, + ACTIONS(1538), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -85601,18 +82213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9900] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7681] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(585), 1, + STATE(590), 1, sym_arguments, - STATE(710), 1, - sym_text_interpolation, - ACTIONS(1550), 12, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85625,13 +82231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 31, + ACTIONS(1546), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -85657,18 +82264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9963] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7736] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(711), 1, - sym_text_interpolation, - STATE(739), 1, + STATE(582), 1, sym_arguments, - ACTIONS(1546), 12, + ACTIONS(1522), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85681,7 +82284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 31, + ACTIONS(1520), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85713,91 +82316,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10026] = 26, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7793] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1754), 1, - sym_name, - ACTIONS(1760), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1763), 1, - anon_sym_BSLASH, - ACTIONS(1766), 1, - anon_sym_RBRACE, - ACTIONS(1768), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - ACTIONS(1771), 1, - aux_sym_cast_type_token1, - ACTIONS(1774), 1, - anon_sym_LBRACK, - ACTIONS(1783), 1, - anon_sym_LT_LT_LT, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - STATE(1568), 1, - sym_class_constant_access_expression, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(1777), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(1780), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(712), 2, - sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(2167), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1757), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1740), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1549), 10, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_array_creation_expression, - sym__string, - sym_dynamic_variable_name, - sym_variable_name, - [10127] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(590), 1, + STATE(581), 1, sym_arguments, - STATE(713), 1, - sym_text_interpolation, - ACTIONS(1538), 12, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85810,21 +82342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 32, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -85843,16 +82369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10188] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7852] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(584), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(587), 1, sym_arguments, - STATE(714), 1, - sym_text_interpolation, - ACTIONS(1532), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85865,14 +82389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 32, + ACTIONS(1550), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -85898,16 +82421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10249] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [7909] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(586), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(589), 1, sym_arguments, - STATE(715), 1, - sym_text_interpolation, - ACTIONS(1542), 12, + ACTIONS(1544), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85920,14 +82441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 32, + ACTIONS(1542), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -85953,71 +82473,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10310] = 29, - ACTIONS(5), 1, + [7966] = 25, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1705), 1, + anon_sym_COMMA, + ACTIONS(1707), 1, + anon_sym_RPAREN, + ACTIONS(1709), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1746), 1, + ACTIONS(1713), 1, anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(1789), 1, - anon_sym_COMMA, - ACTIONS(1791), 1, - anon_sym_RPAREN, - STATE(716), 1, - sym_text_interpolation, - STATE(993), 1, + STATE(971), 1, sym_attribute_list, - STATE(1182), 1, + STATE(1185), 1, sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, + STATE(1635), 1, sym__type, - STATE(1929), 1, + STATE(1887), 1, sym_reference_modifier, - STATE(1931), 1, + STATE(1890), 1, sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, + STATE(2473), 1, sym_namespace_name_as_prefix, - STATE(1669), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, sym_union_type, sym_intersection_type, - ACTIONS(234), 3, + ACTIONS(45), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1918), 3, + STATE(1889), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1671), 13, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -86031,16 +82545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [10417] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8063] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(582), 1, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(756), 1, sym_arguments, - STATE(717), 1, - sym_text_interpolation, - ACTIONS(1546), 12, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86053,14 +82565,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 32, + ACTIONS(1550), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -86086,18 +82597,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10478] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8120] = 22, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1717), 1, + sym_name, + ACTIONS(1719), 1, + anon_sym_RBRACE, + STATE(705), 1, + aux_sym_use_list_repeat1, + STATE(1544), 1, + sym_class_constant_access_expression, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2126), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1644), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1517), 14, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [8211] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(583), 1, sym_arguments, - STATE(718), 1, - sym_text_interpolation, - ACTIONS(1532), 12, + ACTIONS(1540), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86110,7 +82686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 31, + ACTIONS(1538), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86142,18 +82718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10541] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8268] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(582), 1, + STATE(590), 1, sym_arguments, - STATE(719), 1, - sym_text_interpolation, - ACTIONS(1546), 12, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86166,7 +82738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 31, + ACTIONS(1546), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86198,14 +82770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10604] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8325] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(720), 1, - sym_text_interpolation, - ACTIONS(1602), 12, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86218,21 +82796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1600), 32, + ACTIONS(1669), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86251,14 +82823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10662] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8384] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(721), 1, - sym_text_interpolation, - ACTIONS(1795), 12, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86271,21 +82849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1793), 32, + ACTIONS(1669), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86304,14 +82876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10720] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8443] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(722), 1, - sym_text_interpolation, - ACTIONS(1528), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(757), 1, + sym_arguments, + ACTIONS(1544), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86324,14 +82896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 32, + ACTIONS(1542), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -86357,14 +82928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10778] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8500] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(723), 1, - sym_text_interpolation, - ACTIONS(1799), 12, + STATE(587), 1, + sym_arguments, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86377,7 +82946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1797), 32, + ACTIONS(1550), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86410,14 +82979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10836] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8555] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(724), 1, - sym_text_interpolation, - ACTIONS(1606), 12, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1725), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1723), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86430,9 +83000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 32, + ACTIONS(1721), 30, anon_sym_SEMI, - anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86445,7 +83014,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -86463,14 +83031,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10894] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8612] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(101), 1, + aux_sym__list_destructing_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(685), 1, + anon_sym_AMP, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + sym_name, + STATE(2162), 1, + sym_by_ref, + STATE(2163), 1, + sym__list_destructing, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1644), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1505), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1448), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [8707] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(725), 1, - sym_text_interpolation, - ACTIONS(1803), 12, + STATE(582), 1, + sym_arguments, + ACTIONS(1522), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86483,7 +83120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1801), 32, + ACTIONS(1520), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86516,14 +83153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10952] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8762] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(726), 1, - sym_text_interpolation, - ACTIONS(1566), 12, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86536,21 +83179,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1564), 32, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [8821] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(1709), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1713), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(1732), 1, + anon_sym_COMMA, + ACTIONS(1734), 1, + anon_sym_RPAREN, + STATE(971), 1, + sym_attribute_list, + STATE(1185), 1, + sym_visibility_modifier, + STATE(1506), 1, + sym_qualified_name, + STATE(1635), 1, + sym__type, + STATE(1887), 1, + sym_reference_modifier, + STATE(1890), 1, + sym_variable_name, + STATE(2473), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1881), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [8918] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1532), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1530), 13, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1536), 27, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86569,14 +83329,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11010] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [8973] = 24, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(101), 1, + aux_sym__list_destructing_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(685), 1, + anon_sym_AMP, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + sym_name, + STATE(1993), 1, + sym__list_destructing, + STATE(1994), 1, + sym_by_ref, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1644), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1492), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1427), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [9068] = 22, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1717), 1, + sym_name, + ACTIONS(1736), 1, + anon_sym_RBRACE, + STATE(689), 1, + aux_sym_use_list_repeat1, + STATE(1544), 1, + sym_class_constant_access_expression, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2126), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1644), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1517), 14, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [9159] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(727), 1, - sym_text_interpolation, - ACTIONS(1807), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1530), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86589,21 +83495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1805), 32, + ACTIONS(1536), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86622,14 +83522,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11068] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9218] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1738), 1, + sym_name, + ACTIONS(1744), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1747), 1, + anon_sym_BSLASH, + ACTIONS(1750), 1, + anon_sym_RBRACE, + ACTIONS(1752), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + aux_sym_cast_type_token1, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_LT_LT_LT, + ACTIONS(1770), 1, + anon_sym_DOLLAR, + STATE(705), 1, + aux_sym_use_list_repeat1, + STATE(1544), 1, + sym_class_constant_access_expression, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(1761), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(1764), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2126), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1741), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1644), 5, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1517), 14, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + sym_dynamic_variable_name, + sym_variable_name, + [9309] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(728), 1, - sym_text_interpolation, - ACTIONS(1811), 12, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86642,21 +83617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1809), 32, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86675,14 +83644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11126] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9368] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(729), 1, - sym_text_interpolation, - ACTIONS(1725), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(743), 1, + sym_arguments, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86695,14 +83664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 32, + ACTIONS(1546), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -86728,14 +83696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11184] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9425] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(730), 1, - sym_text_interpolation, - ACTIONS(1514), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(746), 1, + sym_arguments, + ACTIONS(1540), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86748,14 +83716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 32, + ACTIONS(1538), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -86781,14 +83748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11242] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9482] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(731), 1, - sym_text_interpolation, - ACTIONS(1520), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(747), 1, + sym_arguments, + ACTIONS(1522), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86801,14 +83768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1518), 32, + ACTIONS(1520), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -86834,18 +83800,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11300] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9539] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(732), 1, - sym_text_interpolation, - ACTIONS(1815), 12, + ACTIONS(1534), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -86854,21 +83826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1813), 32, + ACTIONS(1526), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86887,14 +83852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11358] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9596] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(733), 1, - sym_text_interpolation, - ACTIONS(1819), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1675), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86907,21 +83878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1817), 32, + ACTIONS(1673), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86940,14 +83905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11416] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9655] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(734), 1, - sym_text_interpolation, - ACTIONS(1614), 12, + ACTIONS(1773), 1, + anon_sym_LPAREN, + STATE(938), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1675), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86960,21 +83931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1612), 32, + ACTIONS(1673), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -86993,14 +83958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11474] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9714] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(735), 1, - sym_text_interpolation, - ACTIONS(1823), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1777), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87013,21 +83984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1821), 32, + ACTIONS(1775), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -87046,14 +84011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11532] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9773] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(736), 1, - sym_text_interpolation, - ACTIONS(1578), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1675), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87066,21 +84037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1576), 32, + ACTIONS(1673), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -87099,14 +84064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11590] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9832] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(737), 1, - sym_text_interpolation, - ACTIONS(1524), 12, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87119,21 +84090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1522), 32, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -87152,14 +84117,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11648] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9891] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(738), 1, - sym_text_interpolation, - ACTIONS(1827), 12, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1781), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87172,21 +84143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1825), 32, + ACTIONS(1779), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -87205,14 +84170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11706] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [9950] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(739), 1, - sym_text_interpolation, - ACTIONS(1570), 12, + ACTIONS(1785), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87225,7 +84186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1568), 32, + ACTIONS(1783), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87258,14 +84219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11764] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10002] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(740), 1, - sym_text_interpolation, - ACTIONS(1831), 12, + ACTIONS(1789), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87278,7 +84235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1829), 32, + ACTIONS(1787), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87311,14 +84268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11822] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10054] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(741), 1, - sym_text_interpolation, - ACTIONS(1835), 12, + ACTIONS(1793), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87331,7 +84284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1833), 32, + ACTIONS(1791), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87364,14 +84317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11880] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10106] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(742), 1, - sym_text_interpolation, - ACTIONS(1839), 12, + ACTIONS(1797), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87384,7 +84333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1837), 32, + ACTIONS(1795), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87417,21 +84366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11938] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10158] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(743), 1, - sym_text_interpolation, - ACTIONS(1608), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1843), 12, + ACTIONS(1564), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87444,15 +84382,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1841), 26, + ACTIONS(1562), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -87471,14 +84415,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11998] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10210] = 23, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(685), 1, + anon_sym_AMP, + ACTIONS(817), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + sym_name, + STATE(2246), 1, + sym_by_ref, + STATE(2250), 1, + sym__array_destructing, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1644), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1525), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1471), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [10302] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(744), 1, - sym_text_interpolation, - ACTIONS(1586), 12, + ACTIONS(1801), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87491,7 +84500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1584), 32, + ACTIONS(1799), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87524,69 +84533,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12056] = 28, - ACTIONS(5), 1, + [10354] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1709), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1746), 1, + ACTIONS(1713), 1, anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(1845), 1, + ACTIONS(1803), 1, anon_sym_RPAREN, - STATE(745), 1, - sym_text_interpolation, - STATE(993), 1, + STATE(971), 1, sym_attribute_list, - STATE(1182), 1, + STATE(1185), 1, sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, + STATE(1635), 1, sym__type, - STATE(1929), 1, + STATE(1887), 1, sym_reference_modifier, - STATE(1931), 1, + STATE(1890), 1, sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, + STATE(2473), 1, sym_namespace_name_as_prefix, - STATE(1669), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, sym_union_type, sym_intersection_type, - ACTIONS(234), 3, + ACTIONS(45), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2352), 3, + STATE(2310), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1671), 13, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -87600,67 +84603,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [12160] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10448] = 24, + ACTIONS(3), 1, sym_comment, - STATE(746), 1, - sym_text_interpolation, - ACTIONS(1598), 12, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1703), 1, anon_sym_AMP, - anon_sym_COLON, + ACTIONS(1709), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1711), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1596), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, + ACTIONS(1713), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(1805), 1, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12218] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(971), 1, + sym_attribute_list, + STATE(1185), 1, + sym_visibility_modifier, + STATE(1506), 1, + sym_qualified_name, + STATE(1635), 1, + sym__type, + STATE(1887), 1, + sym_reference_modifier, + STATE(1890), 1, + sym_variable_name, + STATE(2473), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2310), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [10542] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(747), 1, - sym_text_interpolation, - ACTIONS(1849), 12, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87673,7 +84689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1847), 32, + ACTIONS(1578), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87706,14 +84722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12276] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10594] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(748), 1, - sym_text_interpolation, - ACTIONS(1853), 12, + ACTIONS(1809), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87726,7 +84738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 32, + ACTIONS(1807), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87759,14 +84771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12334] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10646] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(749), 1, - sym_text_interpolation, - ACTIONS(1857), 12, + ACTIONS(1813), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87779,7 +84787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1855), 32, + ACTIONS(1811), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87812,14 +84820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12392] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10698] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(750), 1, - sym_text_interpolation, - ACTIONS(1610), 12, + ACTIONS(1486), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87832,7 +84836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 32, + ACTIONS(1488), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87865,14 +84869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12450] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10750] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(751), 1, - sym_text_interpolation, - ACTIONS(1574), 12, + ACTIONS(1817), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87885,7 +84885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1572), 32, + ACTIONS(1815), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87918,14 +84918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12508] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [10802] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(752), 1, - sym_text_interpolation, - ACTIONS(1861), 12, + ACTIONS(1819), 1, + anon_sym_COLON_COLON, + ACTIONS(1560), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87938,7 +84936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1859), 32, + ACTIONS(1558), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87949,7 +84947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -87971,69 +84968,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12566] = 28, - ACTIONS(5), 1, + [10856] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1709), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1746), 1, + ACTIONS(1713), 1, anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(1863), 1, + ACTIONS(1821), 1, anon_sym_RPAREN, - STATE(753), 1, - sym_text_interpolation, - STATE(993), 1, + STATE(971), 1, sym_attribute_list, - STATE(1182), 1, + STATE(1185), 1, sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, + STATE(1635), 1, sym__type, - STATE(1929), 1, + STATE(1887), 1, sym_reference_modifier, - STATE(1931), 1, + STATE(1890), 1, sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, + STATE(2473), 1, sym_namespace_name_as_prefix, - STATE(1669), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, sym_union_type, sym_intersection_type, - ACTIONS(234), 3, + ACTIONS(45), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2352), 3, + STATE(2310), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1671), 13, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -88047,69 +85038,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [12670] = 28, - ACTIONS(5), 1, + [10950] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1709), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - ACTIONS(1746), 1, + ACTIONS(1713), 1, anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(1865), 1, + ACTIONS(1823), 1, anon_sym_RPAREN, - STATE(754), 1, - sym_text_interpolation, - STATE(993), 1, + STATE(971), 1, sym_attribute_list, - STATE(1182), 1, + STATE(1185), 1, sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, + STATE(1635), 1, sym__type, - STATE(1929), 1, + STATE(1887), 1, sym_reference_modifier, - STATE(1931), 1, + STATE(1890), 1, sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, + STATE(2473), 1, sym_namespace_name_as_prefix, - STATE(1669), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, sym_union_type, sym_intersection_type, - ACTIONS(234), 3, + ACTIONS(45), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2352), 3, + STATE(2310), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1671), 13, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -88123,14 +85108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [12774] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11044] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(755), 1, - sym_text_interpolation, - ACTIONS(1869), 12, + ACTIONS(1723), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88143,7 +85124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1867), 32, + ACTIONS(1721), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88176,14 +85157,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12832] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11096] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(756), 1, - sym_text_interpolation, - ACTIONS(1582), 12, + ACTIONS(1566), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1827), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11150] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1831), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88196,7 +85223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1580), 32, + ACTIONS(1829), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88229,16 +85256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12890] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11202] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_COLON_COLON, - STATE(757), 1, - sym_text_interpolation, - ACTIONS(1594), 12, + ACTIONS(1835), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88251,7 +85272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 31, + ACTIONS(1833), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88262,6 +85283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -88283,14 +85305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12950] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11254] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(758), 1, - sym_text_interpolation, - ACTIONS(1875), 12, + ACTIONS(1839), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88303,7 +85321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1873), 32, + ACTIONS(1837), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88336,14 +85354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13008] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11306] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(759), 1, - sym_text_interpolation, - ACTIONS(1496), 12, + ACTIONS(1843), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88356,7 +85370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 32, + ACTIONS(1841), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88389,14 +85403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13066] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11358] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(760), 1, - sym_text_interpolation, - ACTIONS(1879), 12, + ACTIONS(1847), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88409,7 +85419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1877), 32, + ACTIONS(1845), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88442,166 +85452,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13124] = 28, - ACTIONS(5), 1, + [11410] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1736), 1, + ACTIONS(1568), 12, anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1746), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(1881), 1, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1566), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(761), 1, - sym_text_interpolation, - STATE(993), 1, - sym_attribute_list, - STATE(1182), 1, - sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, - sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, - sym__type, - STATE(1929), 1, - sym_reference_modifier, - STATE(1931), 1, - sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, - sym_namespace_name_as_prefix, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2352), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [13228] = 28, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(687), 1, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11462] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1556), 12, anon_sym_AMP, - ACTIONS(819), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1554), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1516), 1, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11514] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1693), 1, + ACTIONS(1604), 12, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - ACTIONS(1752), 1, - sym_name, - STATE(762), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2284), 1, - sym_by_ref, - STATE(2286), 1, - sym__array_destructing, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1558), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1501), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [13332] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [11566] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(763), 1, - sym_text_interpolation, - ACTIONS(1885), 12, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88614,7 +85615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1883), 32, + ACTIONS(1582), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88647,14 +85648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13390] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11618] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(764), 1, - sym_text_interpolation, - ACTIONS(1889), 12, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88667,7 +85664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1887), 32, + ACTIONS(1594), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88700,14 +85697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13448] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11670] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(765), 1, - sym_text_interpolation, - ACTIONS(1590), 12, + ACTIONS(1576), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88720,7 +85713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1588), 32, + ACTIONS(1574), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88753,18 +85746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13506] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11722] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(766), 1, - sym_text_interpolation, - ACTIONS(1002), 11, + ACTIONS(1572), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -88772,21 +85762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1000), 32, + ACTIONS(1570), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -88805,29 +85795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13563] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11774] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(619), 1, - sym_arguments, - STATE(767), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1851), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -88838,13 +85811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, - sym__automatic_semicolon, + ACTIONS(1849), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -88862,31 +85844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13630] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11826] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(768), 1, - sym_text_interpolation, - STATE(793), 1, - sym_arguments, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1855), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -88895,12 +85860,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 22, - sym__automatic_semicolon, + ACTIONS(1853), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -88918,94 +85893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13695] = 27, - ACTIONS(5), 1, + [11878] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1746), 1, - anon_sym_POUND_LBRACK, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(769), 1, - sym_text_interpolation, - STATE(993), 1, - sym_attribute_list, - STATE(1182), 1, - sym_visibility_modifier, - STATE(1318), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, - sym_attribute_group, - STATE(1538), 1, - sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1674), 1, - sym__type, - STATE(1929), 1, - sym_reference_modifier, - STATE(1931), 1, - sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, - sym_namespace_name_as_prefix, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(2352), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [13796] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(770), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1734), 12, + ACTIONS(1859), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89018,15 +85909,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 26, + ACTIONS(1857), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89045,20 +85942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13855] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11930] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(771), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1556), 12, + ACTIONS(1863), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89071,15 +85958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 26, + ACTIONS(1861), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89098,22 +85991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13914] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [11982] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(772), 1, - sym_text_interpolation, - STATE(798), 1, - sym_arguments, - ACTIONS(1532), 12, + ACTIONS(1867), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89122,19 +86007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 29, - sym__automatic_semicolon, + ACTIONS(1865), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89152,22 +86040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13975] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12034] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(773), 1, - sym_text_interpolation, - STATE(797), 1, - sym_arguments, - ACTIONS(1550), 12, + ACTIONS(1871), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89176,19 +86056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 29, - sym__automatic_semicolon, + ACTIONS(1869), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89206,22 +86089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14036] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12086] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(774), 1, - sym_text_interpolation, - STATE(804), 1, - sym_arguments, - ACTIONS(1542), 12, + ACTIONS(1875), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89230,19 +86105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 29, - sym__automatic_semicolon, + ACTIONS(1873), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89260,22 +86138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14097] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12138] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(775), 1, - sym_text_interpolation, - STATE(788), 1, - sym_arguments, - ACTIONS(1538), 12, + ACTIONS(1588), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89284,19 +86154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 29, - sym__automatic_semicolon, + ACTIONS(1586), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89314,20 +86187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14158] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12190] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(776), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1658), 12, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89340,15 +86203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 26, + ACTIONS(1590), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89367,18 +86236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14217] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12242] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(777), 1, - sym_text_interpolation, - ACTIONS(998), 11, + ACTIONS(1600), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -89386,21 +86252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(996), 32, + ACTIONS(1598), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89419,29 +86285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14274] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12294] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(778), 1, - sym_text_interpolation, - STATE(793), 1, - sym_arguments, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1518), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -89452,13 +86301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, - sym__automatic_semicolon, + ACTIONS(1516), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89476,22 +86334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14341] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12346] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(779), 1, - sym_text_interpolation, - STATE(794), 1, - sym_arguments, - ACTIONS(1546), 12, + ACTIONS(1504), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89500,19 +86350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 29, - sym__automatic_semicolon, + ACTIONS(1502), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89530,20 +86383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14402] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12398] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(780), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1719), 12, + ACTIONS(1514), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89556,15 +86399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1717), 26, + ACTIONS(1512), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89583,29 +86432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14461] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12450] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(592), 1, - sym_arguments, - STATE(781), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1658), 11, + ACTIONS(1510), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -89616,13 +86448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 23, - sym__automatic_semicolon, + ACTIONS(1508), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89640,24 +86481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14528] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12502] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(782), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(796), 1, + sym_arguments, + ACTIONS(1544), 12, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89666,16 +86501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 26, + ACTIONS(1542), 29, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89693,29 +86531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14587] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12557] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(783), 1, - sym_text_interpolation, - STATE(876), 1, - sym_arguments, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1685), 11, + ACTIONS(1781), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -89726,13 +86553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 23, - sym__automatic_semicolon, + ACTIONS(1779), 26, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89750,24 +86580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14654] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12610] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1877), 1, anon_sym_LPAREN, - STATE(784), 1, - sym_text_interpolation, - STATE(793), 1, + STATE(801), 1, sym_arguments, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1556), 12, + ACTIONS(1530), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89780,7 +86606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 24, + ACTIONS(1536), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -89805,21 +86631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14717] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12667] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1727), 1, - anon_sym_RPAREN, - ACTIONS(1730), 1, - anon_sym_EQ, - STATE(785), 1, - sym_text_interpolation, - ACTIONS(1725), 11, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(786), 1, + sym_arguments, + ACTIONS(1522), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89828,20 +86651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 30, + ACTIONS(1520), 29, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89859,14 +86681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14778] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12722] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(786), 1, - sym_text_interpolation, - ACTIONS(1566), 12, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(787), 1, + sym_arguments, + ACTIONS(1540), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89879,13 +86701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1564), 30, + ACTIONS(1538), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -89910,33 +86731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14834] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12777] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, + ACTIONS(1877), 1, anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1895), 1, - anon_sym_COLON, - STATE(619), 1, + STATE(789), 1, sym_arguments, - STATE(787), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1548), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -89945,11 +86751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 21, + ACTIONS(1546), 29, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -89967,14 +86781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14902] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12832] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(788), 1, - sym_text_interpolation, - ACTIONS(1602), 12, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_arguments, + ACTIONS(1552), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -89987,13 +86801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1600), 30, + ACTIONS(1550), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -90018,18 +86831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14958] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12887] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(789), 1, - sym_text_interpolation, - ACTIONS(1614), 12, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1777), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90038,20 +86853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1612), 30, - sym__automatic_semicolon, + ACTIONS(1775), 26, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90069,69 +86880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15014] = 5, - ACTIONS(5), 1, + [12940] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(790), 1, - sym_text_interpolation, - ACTIONS(1899), 17, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AT, - anon_sym_TILDE, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_POUND_LBRACK, - anon_sym_SQUOTE, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - aux_sym_string_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - ACTIONS(1897), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym__arrow_function_header_token1, - aux_sym_cast_type_token1, - sym_float, - sym_integer, - aux_sym_throw_expression_token1, - aux_sym_match_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_clone_expression_token1, - aux_sym_print_intrinsic_token1, - aux_sym_object_creation_expression_token1, - aux_sym__list_destructing_token1, - anon_sym_self, - anon_sym_parent, - sym_boolean, - sym_null, - aux_sym_yield_expression_token1, - aux_sym_include_expression_token1, - aux_sym_include_once_expression_token1, - aux_sym_require_expression_token1, - aux_sym_require_once_expression_token1, - sym_name, - [15070] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(791), 1, - sym_text_interpolation, - ACTIONS(1594), 12, + ACTIONS(1528), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90140,20 +86902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 30, - sym__automatic_semicolon, + ACTIONS(1526), 26, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90171,31 +86929,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15126] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [12993] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1901), 1, - anon_sym_COLON, - STATE(619), 1, - sym_arguments, - STATE(792), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1671), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90206,11 +86951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 21, - sym__automatic_semicolon, + ACTIONS(1669), 26, anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90228,18 +86978,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15194] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13046] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(793), 1, - sym_text_interpolation, - ACTIONS(1610), 12, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(801), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90248,20 +87007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 30, + ACTIONS(1526), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90279,18 +87031,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15250] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13107] = 23, + ACTIONS(3), 1, sym_comment, - STATE(794), 1, - sym_text_interpolation, - ACTIONS(1570), 12, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(1709), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1711), 1, + anon_sym_QMARK, + ACTIONS(1713), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(971), 1, + sym_attribute_list, + STATE(1185), 1, + sym_visibility_modifier, + STATE(1506), 1, + sym_qualified_name, + STATE(1635), 1, + sym__type, + STATE(1887), 1, + sym_reference_modifier, + STATE(1890), 1, + sym_variable_name, + STATE(2473), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1310), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(2310), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [13198] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_RPAREN, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1723), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90299,20 +87118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1568), 30, - sym__automatic_semicolon, + ACTIONS(1721), 30, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90330,19 +87149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15306] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13253] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(795), 1, - sym_text_interpolation, - ACTIONS(1598), 12, + ACTIONS(1000), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -90350,20 +87164,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1596), 30, - sym__automatic_semicolon, + ACTIONS(998), 32, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90381,19 +87197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15362] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13304] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(796), 1, - sym_text_interpolation, - ACTIONS(1528), 12, + ACTIONS(996), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -90401,20 +87212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 30, - sym__automatic_semicolon, + ACTIONS(994), 32, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90432,18 +87245,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15418] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13355] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(797), 1, - sym_text_interpolation, - ACTIONS(1582), 12, + ACTIONS(1618), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(626), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90452,20 +87274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1580), 30, + ACTIONS(1526), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90483,14 +87298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15474] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13416] = 7, + ACTIONS(1506), 1, sym_comment, - STATE(798), 1, - sym_text_interpolation, - ACTIONS(1578), 12, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(801), 1, + sym_arguments, + ACTIONS(1620), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90503,20 +87327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1576), 30, + ACTIONS(1526), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90534,18 +87350,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15530] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13475] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(799), 1, - sym_text_interpolation, - ACTIONS(1514), 12, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(581), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90554,20 +87379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 30, + ACTIONS(1669), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90585,18 +87403,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15586] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13536] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(800), 1, - sym_text_interpolation, - ACTIONS(1524), 12, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(873), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1675), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90605,20 +87432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1522), 30, + ACTIONS(1673), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90636,31 +87456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15642] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13597] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1903), 1, - anon_sym_COLON, - STATE(592), 1, - sym_arguments, - STATE(801), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1530), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90671,11 +87478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 21, + ACTIONS(1536), 26, + anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90693,18 +87505,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15710] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13650] = 9, + ACTIONS(1506), 1, sym_comment, - STATE(802), 1, - sym_text_interpolation, - ACTIONS(1574), 12, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1881), 1, + anon_sym_COLON, + STATE(581), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90713,20 +87536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1572), 30, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1526), 21, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90744,14 +87558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15766] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13712] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(803), 1, - sym_text_interpolation, - ACTIONS(1590), 12, + ACTIONS(1580), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90764,7 +87574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1588), 30, + ACTIONS(1578), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90795,14 +87605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15822] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13762] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(804), 1, - sym_text_interpolation, - ACTIONS(1586), 12, + ACTIONS(1588), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90815,7 +87621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1584), 30, + ACTIONS(1586), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90846,18 +87652,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15878] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13812] = 9, + ACTIONS(1506), 1, sym_comment, - STATE(805), 1, - sym_text_interpolation, - ACTIONS(1606), 12, + ACTIONS(1618), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1883), 1, + anon_sym_COLON, + STATE(626), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90866,20 +87683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + ACTIONS(1526), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -90897,14 +87705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15934] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13874] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(806), 1, - sym_text_interpolation, - ACTIONS(1520), 12, + ACTIONS(1572), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -90917,7 +87721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1518), 30, + ACTIONS(1570), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -90948,27 +87752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15990] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13924] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(807), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1658), 11, + ACTIONS(1576), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90977,13 +87768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 23, + ACTIONS(1574), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91001,89 +87799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16051] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - sym_name, - STATE(808), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(696), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1448), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16146] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [13974] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(586), 1, - sym_arguments, - STATE(809), 1, - sym_text_interpolation, - ACTIONS(1542), 11, + ACTIONS(1596), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91092,16 +87815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 29, + ACTIONS(1594), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -91122,27 +87846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16203] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14024] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(810), 1, - sym_text_interpolation, - STATE(876), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1685), 11, + ACTIONS(1604), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91151,13 +87862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 23, + ACTIONS(1602), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91175,89 +87893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16264] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - sym_name, - STATE(811), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1523), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1450), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16359] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14074] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(582), 1, - sym_arguments, - STATE(812), 1, - sym_text_interpolation, - ACTIONS(1546), 11, + ACTIONS(1504), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91266,16 +87909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 29, + ACTIONS(1502), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -91296,27 +87940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16416] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14124] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(619), 1, - sym_arguments, - STATE(813), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1564), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91325,13 +87956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, + ACTIONS(1562), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91349,21 +87987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16477] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14174] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(814), 1, - sym_text_interpolation, - STATE(871), 1, - sym_arguments, - ACTIONS(1550), 11, + ACTIONS(1510), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91372,15 +88003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 28, + ACTIONS(1508), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -91401,19 +88034,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16536] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14224] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 1, - anon_sym_EQ, - STATE(815), 1, - sym_text_interpolation, - ACTIONS(1725), 11, + ACTIONS(1887), 17, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SQUOTE, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + aux_sym_string_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + ACTIONS(1885), 25, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym__arrow_function_header_token1, + aux_sym_cast_type_token1, + sym_float, + sym_integer, + aux_sym_throw_expression_token1, + aux_sym_match_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_clone_expression_token1, + aux_sym_print_intrinsic_token1, + aux_sym_object_creation_expression_token1, + aux_sym__list_destructing_token1, + anon_sym_self, + anon_sym_parent, + sym_boolean, + sym_null, + aux_sym_yield_expression_token1, + aux_sym_include_expression_token1, + aux_sym_include_once_expression_token1, + aux_sym_require_expression_token1, + aux_sym_require_once_expression_token1, + sym_name, + [14274] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1592), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91422,16 +88097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 29, + ACTIONS(1590), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -91452,163 +88128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16593] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - ACTIONS(1905), 1, - sym_name, - ACTIONS(1907), 1, - anon_sym_LPAREN, - STATE(816), 1, - sym_text_interpolation, - STATE(1689), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - STATE(2618), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1524), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1534), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(771), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(687), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16688] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - sym_name, - STATE(817), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(780), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1740), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1444), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16783] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14324] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(818), 1, - sym_text_interpolation, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 12, + ACTIONS(1560), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91621,12 +88144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 22, + ACTIONS(1558), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91644,97 +88175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16842] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - sym_name, - STATE(819), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1562), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1566), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1475), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [16937] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14374] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(820), 1, - sym_text_interpolation, - STATE(860), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1556), 11, + ACTIONS(1600), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91743,13 +88191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 23, + ACTIONS(1598), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91767,27 +88222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16998] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14424] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(793), 1, - sym_arguments, - STATE(821), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1514), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91796,13 +88238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, + ACTIONS(1512), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91820,21 +88269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17059] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14474] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(822), 1, - sym_text_interpolation, - STATE(879), 1, - sym_arguments, - ACTIONS(1546), 11, + ACTIONS(1556), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91843,15 +88285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 28, + ACTIONS(1554), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -91872,18 +88316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17118] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14524] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(823), 1, - sym_text_interpolation, - ACTIONS(1120), 11, + ACTIONS(1518), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -91891,20 +88332,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1118), 30, + ACTIONS(1516), 30, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91922,14 +88363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17173] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14574] = 9, + ACTIONS(1506), 1, sym_comment, - STATE(824), 1, - sym_text_interpolation, - ACTIONS(1711), 11, + ACTIONS(1618), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1889), 1, + anon_sym_COLON, + STATE(626), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -91941,20 +88394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1709), 30, + ACTIONS(1526), 21, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -91972,21 +88416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17228] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14636] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(788), 1, - sym_arguments, - STATE(825), 1, - sym_text_interpolation, - ACTIONS(1699), 11, + ACTIONS(1568), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91995,15 +88432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1697), 28, + ACTIONS(1566), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -92024,27 +88463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17287] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14686] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1909), 1, - anon_sym_LPAREN, - STATE(826), 1, - sym_text_interpolation, - STATE(1121), 1, - sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1685), 11, + ACTIONS(1584), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92053,13 +88479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 23, + ACTIONS(1582), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92077,24 +88510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17348] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14736] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(619), 1, + STATE(873), 1, sym_arguments, - STATE(827), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1675), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92106,7 +88535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, + ACTIONS(1673), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92130,18 +88559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17409] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14791] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(590), 1, + STATE(583), 1, sym_arguments, - STATE(828), 1, - sym_text_interpolation, - ACTIONS(1538), 11, + ACTIONS(1540), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92153,12 +88576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 28, + ACTIONS(1538), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -92182,18 +88606,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17468] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14842] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1877), 1, anon_sym_LPAREN, - STATE(585), 1, + STATE(801), 1, sym_arguments, - STATE(829), 1, - sym_text_interpolation, - ACTIONS(1550), 11, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92205,18 +88631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 28, + ACTIONS(1526), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92234,24 +88655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17527] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14897] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(830), 1, - sym_text_interpolation, - STATE(860), 1, + STATE(895), 1, sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1734), 11, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92263,13 +88674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 23, + ACTIONS(1546), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92287,18 +88703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17588] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [14950] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1618), 1, anon_sym_LPAREN, - STATE(831), 1, - sym_text_interpolation, - STATE(863), 1, + STATE(626), 1, sym_arguments, - ACTIONS(1532), 11, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92310,18 +88728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 28, + ACTIONS(1526), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92339,18 +88752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17647] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15005] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym_arguments, - STATE(832), 1, - sym_text_interpolation, - ACTIONS(1532), 11, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1723), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92362,12 +88769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 28, + ACTIONS(1721), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -92391,14 +88799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17706] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15056] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(833), 1, - sym_text_interpolation, - ACTIONS(1594), 11, + STATE(589), 1, + sym_arguments, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92410,11 +88816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 30, + ACTIONS(1542), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -92441,18 +88846,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17761] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15107] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1891), 1, + sym_name, + ACTIONS(1893), 1, anon_sym_LPAREN, - STATE(634), 1, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1516), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1699), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2542), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(896), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(813), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15190] = 4, + ACTIONS(1506), 1, + sym_comment, + STATE(587), 1, sym_arguments, - STATE(834), 1, - sym_text_interpolation, - ACTIONS(1699), 11, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92464,12 +88926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1697), 28, + ACTIONS(1550), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -92493,18 +88956,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17820] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15241] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1689), 1, anon_sym_LPAREN, - STATE(586), 1, + ACTIONS(1730), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(769), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1644), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(1425), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15324] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(892), 1, sym_arguments, - STATE(835), 1, - sym_text_interpolation, - ACTIONS(1542), 11, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1781), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92516,18 +89044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 28, + ACTIONS(1779), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92545,14 +89068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17879] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15379] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(836), 1, - sym_text_interpolation, - ACTIONS(1080), 11, + ACTIONS(1120), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92564,7 +89083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1078), 30, + ACTIONS(1118), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -92595,24 +89114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17934] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15428] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(793), 1, + STATE(873), 1, sym_arguments, - STATE(837), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1554), 11, + ACTIONS(1675), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92624,7 +89139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, + ACTIONS(1673), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -92634,170 +89149,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17995] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(1911), 1, - sym_name, - STATE(838), 1, - sym_text_interpolation, - STATE(1682), 1, - sym__dereferencable_expression, - STATE(2439), 1, - sym__scope_resolution_qualifier, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(905), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1537), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1536), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1740), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(853), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [18090] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(1911), 1, - sym_name, - ACTIONS(1913), 1, - anon_sym_LPAREN, - STATE(839), 1, - sym_text_interpolation, - STATE(1682), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2592), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1537), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1536), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(903), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(830), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [18185] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15483] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(584), 1, + ACTIONS(1895), 1, + anon_sym_LPAREN, + STATE(1047), 1, sym_arguments, - STATE(840), 1, - sym_text_interpolation, - ACTIONS(1532), 11, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1675), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92809,19 +89188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1530), 29, + ACTIONS(1673), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92839,18 +89212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18242] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15538] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(841), 1, - sym_text_interpolation, - STATE(898), 1, + STATE(892), 1, sym_arguments, - ACTIONS(1538), 11, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92862,18 +89237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 28, + ACTIONS(1536), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -92891,27 +89261,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18301] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [15593] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(842), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1620), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1658), 11, + ACTIONS(1528), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92920,12 +89286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 23, + ACTIONS(1526), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -92944,209 +89309,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18362] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [15646] = 20, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(565), 1, + ACTIONS(563), 1, aux_sym_cast_type_token1, - ACTIONS(593), 1, + ACTIONS(591), 1, anon_sym_LT_LT_LT, - ACTIONS(983), 1, + ACTIONS(1044), 1, anon_sym_LBRACK, - ACTIONS(1502), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1915), 1, + ACTIONS(1897), 1, sym_name, - STATE(843), 1, - sym_text_interpolation, - STATE(1668), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2630), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, + ACTIONS(587), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(591), 2, + ACTIONS(589), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - STATE(1551), 2, + STATE(693), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(294), 3, + STATE(2548), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1553), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(696), 4, - sym_cast_variable, + STATE(692), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(771), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(648), 7, + STATE(1648), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1517), 11, + sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [18457] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15729] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(590), 1, + sym_arguments, + ACTIONS(1548), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1546), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15782] = 20, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(565), 1, + ACTIONS(563), 1, aux_sym_cast_type_token1, - ACTIONS(593), 1, + ACTIONS(591), 1, anon_sym_LT_LT_LT, - ACTIONS(983), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1693), 1, + ACTIONS(1689), 1, anon_sym_LPAREN, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1730), 1, sym_name, - STATE(844), 1, - sym_text_interpolation, - STATE(1677), 1, - sym__dereferencable_expression, - STATE(2603), 1, - sym_relative_scope, - STATE(2606), 1, - sym__scope_resolution_qualifier, - STATE(2615), 1, - sym_namespace_name, - STATE(2616), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - ACTIONS(589), 2, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(591), 2, + ACTIONS(589), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - STATE(842), 2, + STATE(1514), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1740), 2, + STATE(1644), 2, sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1703), 3, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(807), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(904), 3, + STATE(1493), 4, + sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1549), 7, - sym_parenthesized_expression, + STATE(1422), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, sym__string, - [18552] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [15865] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1054), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1052), 30, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [15914] = 20, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(565), 1, + ACTIONS(563), 1, aux_sym_cast_type_token1, - ACTIONS(593), 1, + ACTIONS(591), 1, anon_sym_LT_LT_LT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(983), 1, + ACTIONS(1044), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, + ACTIONS(1899), 1, sym_name, - STATE(845), 1, - sym_text_interpolation, - STATE(1696), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, + ACTIONS(1901), 1, + anon_sym_LPAREN, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2481), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - ACTIONS(589), 2, + ACTIONS(587), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(591), 2, + ACTIONS(589), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - STATE(1562), 2, + STATE(1523), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(294), 3, + STATE(1623), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2543), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1549), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1520), 4, + STATE(835), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1442), 7, + STATE(764), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93154,24 +89584,22 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [18647] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1510), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [15997] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(846), 1, - sym_text_interpolation, - STATE(876), 1, + STATE(583), 1, sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1685), 11, + ACTIONS(1540), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93183,13 +89611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1683), 23, + ACTIONS(1538), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -93207,18 +89640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18708] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16050] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, STATE(582), 1, sym_arguments, - STATE(847), 1, - sym_text_interpolation, - ACTIONS(1546), 11, + ACTIONS(1522), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93230,7 +89659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1544), 28, + ACTIONS(1520), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93259,69 +89688,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18767] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [16103] = 20, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(565), 1, + ACTIONS(563), 1, aux_sym_cast_type_token1, - ACTIONS(593), 1, + ACTIONS(591), 1, anon_sym_LT_LT_LT, - ACTIONS(983), 1, + ACTIONS(1044), 1, anon_sym_LBRACK, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(1905), 1, + ACTIONS(1903), 1, sym_name, - ACTIONS(1907), 1, + ACTIONS(1905), 1, anon_sym_LPAREN, - STATE(848), 1, - sym_text_interpolation, - STATE(1689), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2618), 1, - sym__scope_resolution_qualifier, - ACTIONS(589), 2, + ACTIONS(587), 2, anon_sym_SQUOTE, aux_sym_string_token1, - ACTIONS(591), 2, + ACTIONS(589), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - STATE(1524), 2, + STATE(1529), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(294), 3, + STATE(1642), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2578), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1534), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(770), 4, + STATE(763), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(692), 7, + STATE(716), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93329,94 +89743,78 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [18862] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1693), 1, - anon_sym_LPAREN, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - ACTIONS(1905), 1, - sym_name, - STATE(849), 1, - sym_text_interpolation, - STATE(1689), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2508), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(780), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1524), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1534), 3, + STATE(1528), 7, sym_parenthesized_expression, sym_array_creation_expression, - sym__string, - STATE(1740), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(740), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(685), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [18957] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym__string, + [16186] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(850), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + STATE(582), 1, + sym_arguments, + ACTIONS(1522), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1520), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1556), 12, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16237] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(801), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93425,14 +89823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 24, + ACTIONS(1526), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -93450,164 +89847,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19014] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, + [16292] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1919), 1, - sym_name, - ACTIONS(1921), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(851), 1, - sym_text_interpolation, - STATE(1654), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2583), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1544), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1535), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(850), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(784), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19109] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, + STATE(892), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(1911), 1, - sym_name, - ACTIONS(1913), 1, - anon_sym_LPAREN, - STATE(852), 1, - sym_text_interpolation, - STATE(1682), 1, - sym__dereferencable_expression, - STATE(1740), 1, - sym_class_constant_access_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2592), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(1537), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1536), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(901), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(820), 7, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - [19204] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1777), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1775), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16347] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(853), 1, - sym_text_interpolation, - STATE(860), 1, + STATE(590), 1, sym_arguments, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1719), 11, + ACTIONS(1548), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93619,13 +89913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1717), 23, + ACTIONS(1546), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -93643,86 +89943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19265] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(565), 1, - aux_sym_cast_type_token1, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(1516), 1, + [16398] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1693), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - ACTIONS(1923), 1, - sym_name, - STATE(854), 1, - sym_text_interpolation, - STATE(1699), 1, - sym__dereferencable_expression, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2590), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_relative_scope, - STATE(2615), 1, - sym_namespace_name, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - STATE(702), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1740), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(294), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(689), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(776), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1549), 7, - sym_parenthesized_expression, - sym_function_call_expression, - sym_scoped_call_expression, - sym_member_call_expression, - sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [19360] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(585), 1, + STATE(587), 1, sym_arguments, - STATE(855), 1, - sym_text_interpolation, - ACTIONS(1550), 11, + ACTIONS(1552), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93734,13 +89962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1548), 29, + ACTIONS(1550), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -93764,16 +89991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19417] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16451] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(590), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(589), 1, sym_arguments, - STATE(856), 1, - sym_text_interpolation, - ACTIONS(1538), 11, + ACTIONS(1544), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93785,13 +90010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1536), 29, + ACTIONS(1542), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -93815,18 +90039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19474] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16504] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1877), 1, anon_sym_LPAREN, - STATE(857), 1, - sym_text_interpolation, - STATE(881), 1, + STATE(789), 1, sym_arguments, - ACTIONS(1542), 11, + ACTIONS(1701), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93838,7 +90058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1540), 28, + ACTIONS(1699), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -93867,14 +90087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19533] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16557] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(858), 1, - sym_text_interpolation, - ACTIONS(1853), 11, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(626), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93886,19 +90112,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1851), 29, + ACTIONS(1526), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16612] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1532), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1530), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1536), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -93916,14 +90183,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19587] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16663] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1644), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1537), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1470), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16746] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(859), 1, - sym_text_interpolation, - ACTIONS(1799), 11, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(887), 1, + sym_arguments, + ACTIONS(1540), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93935,13 +90265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1797), 29, + ACTIONS(1538), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -93965,14 +90294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19641] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16799] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(860), 1, - sym_text_interpolation, - ACTIONS(1610), 11, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(886), 1, + sym_arguments, + ACTIONS(1522), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93984,13 +90313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 29, + ACTIONS(1520), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -94014,14 +90342,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19695] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [16852] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1903), 1, + sym_name, + ACTIONS(1905), 1, + anon_sym_LPAREN, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1529), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1642), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2578), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(781), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(704), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1528), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [16935] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(861), 1, - sym_text_interpolation, - ACTIONS(1598), 11, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94033,13 +90430,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1596), 29, + ACTIONS(1669), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [16990] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, anon_sym_LPAREN, + STATE(880), 1, + sym_arguments, + ACTIONS(1552), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1550), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -94063,14 +90502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19749] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17043] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(862), 1, - sym_text_interpolation, - ACTIONS(1614), 11, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94082,13 +90527,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1612), 29, + ACTIONS(1669), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [17098] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, anon_sym_LPAREN, + STATE(879), 1, + sym_arguments, + ACTIONS(1544), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 28, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -94112,14 +90599,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19803] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17151] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1903), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(769), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1529), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2462), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1642), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(713), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1528), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17234] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(863), 1, - sym_text_interpolation, - ACTIONS(1578), 11, + ACTIONS(1560), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94131,10 +90677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1576), 29, + ACTIONS(1558), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -94161,14 +90708,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19857] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17283] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1644), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1496), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1424), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17366] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1730), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1514), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1644), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2413), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(701), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1429), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1517), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17449] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1492), 1, + anon_sym_LPAREN, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1907), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1536), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1630), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2562), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(701), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(644), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1521), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17532] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(864), 1, - sym_text_interpolation, - ACTIONS(1566), 11, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(615), 1, + sym_arguments, + ACTIONS(1701), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94180,13 +90916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1564), 29, + ACTIONS(1699), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -94210,16 +90945,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19911] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17585] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1730), 1, - anon_sym_EQ, - STATE(865), 1, - sym_text_interpolation, - ACTIONS(1725), 11, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1891), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(898), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1516), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2395), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1699), 4, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + sym__dereferencable_expression, + STATE(829), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17668] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1681), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94231,12 +91023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 28, + ACTIONS(1679), 30, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -94260,14 +91054,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19967] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17717] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, sym_comment, - STATE(866), 1, - sym_text_interpolation, - ACTIONS(1811), 11, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1891), 1, + sym_name, + ACTIONS(1893), 1, + anon_sym_LPAREN, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(1516), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1699), 2, + sym_class_constant_access_expression, + sym__dereferencable_expression, + STATE(2542), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(105), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(897), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(817), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(1542), 7, + sym_parenthesized_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17800] = 20, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(563), 1, + aux_sym_cast_type_token1, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1044), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_LPAREN, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1909), 1, + sym_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + STATE(840), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(2557), 2, + sym__scope_resolution_qualifier, + sym_relative_scope, + ACTIONS(1685), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(842), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(900), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1665), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym__dereferencable_expression, + STATE(1517), 11, + sym_parenthesized_expression, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_array_creation_expression, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [17883] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1867), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94279,7 +91195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1809), 29, + ACTIONS(1865), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94309,14 +91225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20021] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17931] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(867), 1, - sym_text_interpolation, - ACTIONS(1524), 11, + ACTIONS(1851), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94328,7 +91240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1522), 29, + ACTIONS(1849), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94358,14 +91270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20075] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [17979] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(868), 1, - sym_text_interpolation, - ACTIONS(1875), 11, + ACTIONS(1486), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94377,7 +91285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1873), 29, + ACTIONS(1488), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94407,14 +91315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20129] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18027] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(869), 1, - sym_text_interpolation, - ACTIONS(1496), 11, + ACTIONS(1817), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94426,7 +91330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1498), 29, + ACTIONS(1815), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94456,19 +91360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20183] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18075] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1730), 1, - anon_sym_EQ, - STATE(870), 1, - sym_text_interpolation, - ACTIONS(1925), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1725), 11, + ACTIONS(1863), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94480,7 +91375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 26, + ACTIONS(1861), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -94507,14 +91405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20241] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18123] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(871), 1, - sym_text_interpolation, - ACTIONS(1582), 11, + ACTIONS(1801), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94526,7 +91420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1580), 29, + ACTIONS(1799), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94556,14 +91450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20295] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18171] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(872), 1, - sym_text_interpolation, - ACTIONS(1528), 11, + ACTIONS(1793), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94575,7 +91465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 29, + ACTIONS(1791), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94605,14 +91495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20349] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18219] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(873), 1, - sym_text_interpolation, - ACTIONS(1574), 11, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94624,7 +91510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1572), 29, + ACTIONS(1807), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94654,14 +91540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20403] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18267] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(874), 1, - sym_text_interpolation, - ACTIONS(1839), 11, + ACTIONS(1813), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94673,7 +91555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1837), 29, + ACTIONS(1811), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94703,14 +91585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20457] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18315] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(875), 1, - sym_text_interpolation, - ACTIONS(1879), 11, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94722,7 +91600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1877), 29, + ACTIONS(1869), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94752,21 +91630,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20511] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18363] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(876), 1, - sym_text_interpolation, - ACTIONS(1608), 6, + ACTIONS(1847), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1845), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1843), 11, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18411] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1875), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94778,13 +91690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1841), 23, + ACTIONS(1873), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -94802,14 +91720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20567] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18459] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(877), 1, - sym_text_interpolation, - ACTIONS(1885), 11, + ACTIONS(1797), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94821,7 +91735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1883), 29, + ACTIONS(1795), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94851,14 +91765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20621] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18507] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(878), 1, - sym_text_interpolation, - ACTIONS(1725), 11, + ACTIONS(1819), 1, + anon_sym_COLON_COLON, + ACTIONS(1560), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94870,7 +91782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1723), 29, + ACTIONS(1558), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94879,7 +91791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -94900,14 +91811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20675] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18557] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(879), 1, - sym_text_interpolation, - ACTIONS(1570), 11, + ACTIONS(1785), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94919,7 +91826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1568), 29, + ACTIONS(1783), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94949,14 +91856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20729] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18605] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(880), 1, - sym_text_interpolation, - ACTIONS(1831), 11, + ACTIONS(1504), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94968,7 +91871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1829), 29, + ACTIONS(1502), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -94998,14 +91901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20783] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18653] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(881), 1, - sym_text_interpolation, - ACTIONS(1586), 11, + ACTIONS(1859), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95017,7 +91916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1584), 29, + ACTIONS(1857), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95047,14 +91946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20837] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18701] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(882), 1, - sym_text_interpolation, - ACTIONS(1514), 11, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1723), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95066,13 +91963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1721), 28, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -95096,14 +91992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20891] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18751] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(883), 1, - sym_text_interpolation, - ACTIONS(1815), 11, + ACTIONS(1723), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95115,7 +92007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1813), 29, + ACTIONS(1721), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95145,16 +92037,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20945] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18799] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1871), 1, + ACTIONS(1566), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(884), 1, - sym_text_interpolation, - ACTIONS(1594), 11, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1827), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18849] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1855), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95166,7 +92098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 28, + ACTIONS(1853), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95175,6 +92107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -95195,14 +92128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21001] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18897] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(885), 1, - sym_text_interpolation, - ACTIONS(1590), 11, + ACTIONS(1835), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95214,7 +92143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1588), 29, + ACTIONS(1833), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95244,14 +92173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21055] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [18945] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(886), 1, - sym_text_interpolation, - ACTIONS(1819), 11, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1911), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1723), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95263,7 +92193,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1817), 29, + ACTIONS(1721), 26, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18997] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1582), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95293,14 +92265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21109] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19045] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(887), 1, - sym_text_interpolation, - ACTIONS(1803), 11, + ACTIONS(1564), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95312,7 +92280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1801), 29, + ACTIONS(1562), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95342,14 +92310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21163] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19093] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(888), 1, - sym_text_interpolation, - ACTIONS(1857), 11, + ACTIONS(1600), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95361,7 +92325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1855), 29, + ACTIONS(1598), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95391,14 +92355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21217] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19141] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(889), 1, - sym_text_interpolation, - ACTIONS(1823), 11, + ACTIONS(1592), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95410,7 +92370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1821), 29, + ACTIONS(1590), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95440,14 +92400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21271] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19189] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(890), 1, - sym_text_interpolation, - ACTIONS(1606), 11, + ACTIONS(1588), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95459,7 +92415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1604), 29, + ACTIONS(1586), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95489,14 +92445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21325] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19237] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(891), 1, - sym_text_interpolation, - ACTIONS(1795), 11, + ACTIONS(1831), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95508,7 +92460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1793), 29, + ACTIONS(1829), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95538,14 +92490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21379] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19285] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(892), 1, - sym_text_interpolation, - ACTIONS(1807), 11, + ACTIONS(1510), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95557,7 +92505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1805), 29, + ACTIONS(1508), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95587,14 +92535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21433] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19333] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(893), 1, - sym_text_interpolation, - ACTIONS(1861), 11, + ACTIONS(1514), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95606,7 +92550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1859), 29, + ACTIONS(1512), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95636,14 +92580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21487] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19381] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(894), 1, - sym_text_interpolation, - ACTIONS(1520), 11, + ACTIONS(1789), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95655,7 +92595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1518), 29, + ACTIONS(1787), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95685,14 +92625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21541] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19429] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(895), 1, - sym_text_interpolation, - ACTIONS(1827), 11, + ACTIONS(1572), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95704,7 +92640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1825), 29, + ACTIONS(1570), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95734,14 +92670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21595] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19477] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(896), 1, - sym_text_interpolation, - ACTIONS(1869), 11, + ACTIONS(1576), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95753,7 +92685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1867), 29, + ACTIONS(1574), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95783,14 +92715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21649] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19525] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(897), 1, - sym_text_interpolation, - ACTIONS(1889), 11, + ACTIONS(1596), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95802,7 +92730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1887), 29, + ACTIONS(1594), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95832,14 +92760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21703] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19573] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(898), 1, - sym_text_interpolation, - ACTIONS(1602), 11, + ACTIONS(1556), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95851,7 +92775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1600), 29, + ACTIONS(1554), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95881,14 +92805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21757] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19621] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(899), 1, - sym_text_interpolation, - ACTIONS(1849), 11, + ACTIONS(1580), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95900,7 +92820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1847), 29, + ACTIONS(1578), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95930,14 +92850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21811] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19669] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(900), 1, - sym_text_interpolation, - ACTIONS(1835), 11, + ACTIONS(1843), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95949,7 +92865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1833), 29, + ACTIONS(1841), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95979,20 +92895,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21865] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19717] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(901), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1568), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1566), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1556), 11, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [19765] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1518), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96004,13 +92955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1562), 23, + ACTIONS(1516), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -96028,20 +92985,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21920] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19813] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(902), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1839), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1837), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1554), 11, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [19861] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1604), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96053,13 +93045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 23, + ACTIONS(1602), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -96077,20 +93075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21975] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19909] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(903), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1734), 11, + ACTIONS(1781), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96102,7 +93096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 23, + ACTIONS(1779), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96126,20 +93120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22030] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [19958] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(904), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1658), 11, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96151,7 +93141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 23, + ACTIONS(1536), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96175,20 +93165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22085] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20007] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(905), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1719), 11, + ACTIONS(1777), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96200,7 +93186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1717), 23, + ACTIONS(1775), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96224,17 +93210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22140] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20056] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(906), 1, - sym_text_interpolation, - ACTIONS(1929), 10, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1528), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -96242,18 +93231,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1927), 28, + ACTIONS(1526), 23, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [20105] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1671), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 23, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -96271,14 +93300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22192] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20154] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(907), 1, - sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1915), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96289,7 +93314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1931), 28, + ACTIONS(1913), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96318,14 +93343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22244] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20200] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(908), 1, - sym_text_interpolation, - ACTIONS(1937), 10, + ACTIONS(1919), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96336,7 +93357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1935), 28, + ACTIONS(1917), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96365,14 +93386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22296] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20246] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(909), 1, - sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(1923), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96383,7 +93400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 28, + ACTIONS(1921), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96412,14 +93429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22348] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20292] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(910), 1, - sym_text_interpolation, - ACTIONS(1520), 10, + ACTIONS(1927), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96430,7 +93443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1518), 28, + ACTIONS(1925), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96459,14 +93472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22400] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20338] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(911), 1, - sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(1504), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96477,7 +93486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1943), 28, + ACTIONS(1502), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96506,14 +93515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22452] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20384] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(912), 1, - sym_text_interpolation, - ACTIONS(1949), 10, + ACTIONS(1518), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96524,7 +93529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1947), 28, + ACTIONS(1516), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96553,14 +93558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22504] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20430] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(913), 1, - sym_text_interpolation, - ACTIONS(1953), 10, + ACTIONS(1931), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96571,7 +93572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1951), 28, + ACTIONS(1929), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96600,14 +93601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22556] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20476] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(914), 1, - sym_text_interpolation, - ACTIONS(1957), 10, + ACTIONS(1935), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96618,7 +93615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1955), 28, + ACTIONS(1933), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96647,14 +93644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22608] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20522] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(915), 1, - sym_text_interpolation, - ACTIONS(1961), 10, + ACTIONS(1671), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96665,7 +93658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1959), 28, + ACTIONS(1669), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96694,14 +93687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22660] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20568] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(916), 1, - sym_text_interpolation, - ACTIONS(1965), 10, + ACTIONS(1939), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96712,7 +93701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1963), 28, + ACTIONS(1937), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96741,14 +93730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22712] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20614] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(917), 1, - sym_text_interpolation, - ACTIONS(1554), 10, + ACTIONS(1943), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96759,7 +93744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 28, + ACTIONS(1941), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96788,14 +93773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22764] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20660] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(918), 1, - sym_text_interpolation, - ACTIONS(1969), 10, + ACTIONS(1947), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96806,7 +93787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 28, + ACTIONS(1945), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96835,14 +93816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22816] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20706] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(919), 1, - sym_text_interpolation, - ACTIONS(1973), 10, + ACTIONS(1951), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96853,7 +93830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1971), 28, + ACTIONS(1949), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96882,14 +93859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22868] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20752] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(920), 1, - sym_text_interpolation, - ACTIONS(1977), 10, + ACTIONS(1955), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96900,7 +93873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1975), 28, + ACTIONS(1953), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96929,14 +93902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22920] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20798] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(921), 1, - sym_text_interpolation, - ACTIONS(1981), 10, + ACTIONS(1959), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96947,7 +93916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1979), 28, + ACTIONS(1957), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -96976,14 +93945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22972] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20844] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(922), 1, - sym_text_interpolation, - ACTIONS(1734), 10, + ACTIONS(1963), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96994,7 +93959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 28, + ACTIONS(1961), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97023,14 +93988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23024] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20890] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(923), 1, - sym_text_interpolation, - ACTIONS(1985), 10, + ACTIONS(1528), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97041,7 +94002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1983), 28, + ACTIONS(1526), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97070,16 +94031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23076] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20936] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1991), 1, - aux_sym_binary_expression_token1, - STATE(924), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(1967), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97090,7 +94045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1987), 27, + ACTIONS(1965), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97102,6 +94057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_RBRACK, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -97118,14 +94074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23130] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [20982] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(925), 1, - sym_text_interpolation, - ACTIONS(1843), 10, + ACTIONS(1971), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97136,7 +94088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1841), 28, + ACTIONS(1969), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97165,14 +94117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23182] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21028] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(926), 1, - sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(1975), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97183,7 +94131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1993), 28, + ACTIONS(1973), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97212,14 +94160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23234] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21074] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(927), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(1979), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97230,7 +94174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1987), 28, + ACTIONS(1977), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97259,14 +94203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23286] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21120] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(928), 1, - sym_text_interpolation, - ACTIONS(1528), 10, + ACTIONS(1985), 1, + aux_sym_binary_expression_token1, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97277,7 +94219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 28, + ACTIONS(1981), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97289,7 +94231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_RBRACK, - aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -97306,14 +94247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23338] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21168] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(929), 1, - sym_text_interpolation, - ACTIONS(1524), 10, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97324,7 +94261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1522), 28, + ACTIONS(1981), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97353,14 +94290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23390] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21214] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(930), 1, - sym_text_interpolation, - ACTIONS(1999), 10, + ACTIONS(1989), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97371,7 +94304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1997), 28, + ACTIONS(1987), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97400,14 +94333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23442] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21260] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(931), 1, - sym_text_interpolation, - ACTIONS(2003), 10, + ACTIONS(1993), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97418,7 +94347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2001), 28, + ACTIONS(1991), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97447,14 +94376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23494] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21306] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(932), 1, - sym_text_interpolation, - ACTIONS(2007), 10, + ACTIONS(1997), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97465,7 +94390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2005), 28, + ACTIONS(1995), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97494,14 +94419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23546] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21352] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(933), 1, - sym_text_interpolation, - ACTIONS(2011), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97512,7 +94433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2009), 28, + ACTIONS(1999), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97541,14 +94462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23598] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21398] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(934), 1, - sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(2005), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97559,7 +94476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2013), 28, + ACTIONS(2003), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97588,14 +94505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23650] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21444] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(935), 1, - sym_text_interpolation, - ACTIONS(2019), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97606,7 +94519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2017), 28, + ACTIONS(2007), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97635,14 +94548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23702] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21490] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(936), 1, - sym_text_interpolation, - ACTIONS(2023), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97653,7 +94562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2021), 28, + ACTIONS(2007), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97682,14 +94591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23754] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21536] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(937), 1, - sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2013), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97700,7 +94605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2025), 28, + ACTIONS(2011), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97729,14 +94634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23806] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21582] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(938), 1, - sym_text_interpolation, - ACTIONS(2031), 10, + ACTIONS(2017), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97747,7 +94648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2029), 28, + ACTIONS(2015), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97776,14 +94677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23858] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21628] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(939), 1, - sym_text_interpolation, - ACTIONS(1658), 10, + ACTIONS(2021), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97794,7 +94691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 28, + ACTIONS(2019), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97823,14 +94720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23910] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21674] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(940), 1, - sym_text_interpolation, - ACTIONS(2035), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97841,7 +94734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2033), 28, + ACTIONS(2023), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97870,14 +94763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23962] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21720] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(941), 1, - sym_text_interpolation, - ACTIONS(2039), 10, + ACTIONS(2029), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97888,7 +94777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2037), 28, + ACTIONS(2027), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97917,14 +94806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24014] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21766] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(942), 1, - sym_text_interpolation, - ACTIONS(2043), 10, + ACTIONS(2033), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97935,7 +94820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2041), 28, + ACTIONS(2031), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -97964,14 +94849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24066] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21812] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(943), 1, - sym_text_interpolation, - ACTIONS(2047), 10, + ACTIONS(2037), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97982,7 +94863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2045), 28, + ACTIONS(2035), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98011,14 +94892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24118] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21858] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(944), 1, - sym_text_interpolation, - ACTIONS(2051), 10, + ACTIONS(1827), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98029,7 +94906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2049), 28, + ACTIONS(1825), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98058,14 +94935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24170] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21904] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(945), 1, - sym_text_interpolation, - ACTIONS(2055), 10, + ACTIONS(2041), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98076,7 +94949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2053), 28, + ACTIONS(2039), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98105,14 +94978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24222] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21950] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(946), 1, - sym_text_interpolation, - ACTIONS(2059), 10, + ACTIONS(2045), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98123,7 +94992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2057), 28, + ACTIONS(2043), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98152,14 +95021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24274] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [21996] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(947), 1, - sym_text_interpolation, - ACTIONS(2063), 10, + ACTIONS(2049), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98170,7 +95035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2061), 28, + ACTIONS(2047), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98199,14 +95064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24326] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22042] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(948), 1, - sym_text_interpolation, - ACTIONS(2067), 10, + ACTIONS(2053), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98217,7 +95078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2065), 28, + ACTIONS(2051), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98246,14 +95107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24378] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22088] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(949), 1, - sym_text_interpolation, - ACTIONS(2071), 10, + ACTIONS(2057), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98264,7 +95121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2069), 28, + ACTIONS(2055), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98293,14 +95150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24430] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22134] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(950), 1, - sym_text_interpolation, - ACTIONS(2075), 10, + ACTIONS(2061), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98311,7 +95164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2073), 28, + ACTIONS(2059), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98340,14 +95193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24482] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22180] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(951), 1, - sym_text_interpolation, - ACTIONS(2039), 10, + ACTIONS(2065), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98358,7 +95207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2037), 28, + ACTIONS(2063), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98387,14 +95236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24534] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22226] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(952), 1, - sym_text_interpolation, - ACTIONS(2079), 10, + ACTIONS(1781), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98405,7 +95250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2077), 28, + ACTIONS(1779), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98434,14 +95279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24586] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22272] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(953), 1, - sym_text_interpolation, - ACTIONS(2083), 10, + ACTIONS(2069), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98452,7 +95293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 28, + ACTIONS(2067), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98481,14 +95322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24638] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22318] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(954), 1, - sym_text_interpolation, - ACTIONS(2087), 10, + ACTIONS(2073), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98499,7 +95336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2085), 28, + ACTIONS(2071), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98528,14 +95365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24690] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22364] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(955), 1, - sym_text_interpolation, - ACTIONS(2091), 10, + ACTIONS(2077), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98546,7 +95379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2089), 28, + ACTIONS(2075), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98575,14 +95408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24742] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22410] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(956), 1, - sym_text_interpolation, - ACTIONS(2095), 10, + ACTIONS(2081), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98593,7 +95422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2093), 28, + ACTIONS(2079), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98622,14 +95451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24794] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22456] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(957), 1, - sym_text_interpolation, - ACTIONS(2099), 10, + ACTIONS(2085), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98640,7 +95465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2097), 28, + ACTIONS(2083), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98669,14 +95494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24846] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22502] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(958), 1, - sym_text_interpolation, - ACTIONS(2103), 10, + ACTIONS(2089), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98687,7 +95508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2101), 28, + ACTIONS(2087), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98716,14 +95537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24898] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22548] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(959), 1, - sym_text_interpolation, - ACTIONS(1514), 10, + ACTIONS(2093), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98734,7 +95551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 28, + ACTIONS(2091), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98763,14 +95580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24950] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22594] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(960), 1, - sym_text_interpolation, - ACTIONS(2107), 10, + ACTIONS(2097), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98781,7 +95594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2105), 28, + ACTIONS(2095), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98810,14 +95623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25002] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22640] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(961), 1, - sym_text_interpolation, - ACTIONS(2111), 10, + ACTIONS(1514), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98828,7 +95637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2109), 28, + ACTIONS(1512), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98857,14 +95666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25054] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22686] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(962), 1, - sym_text_interpolation, - ACTIONS(2115), 10, + ACTIONS(2101), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98875,7 +95680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2113), 28, + ACTIONS(2099), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98904,14 +95709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25106] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22732] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(963), 1, - sym_text_interpolation, - ACTIONS(2119), 10, + ACTIONS(2105), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98922,7 +95723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2117), 28, + ACTIONS(2103), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98951,14 +95752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25158] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22778] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(964), 1, - sym_text_interpolation, - ACTIONS(2123), 10, + ACTIONS(2109), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98969,7 +95766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2121), 28, + ACTIONS(2107), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -98998,14 +95795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25210] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22824] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(965), 1, - sym_text_interpolation, - ACTIONS(2127), 10, + ACTIONS(1510), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99016,7 +95809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2125), 28, + ACTIONS(1508), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99045,14 +95838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25262] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22870] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(966), 1, - sym_text_interpolation, - ACTIONS(2131), 10, + ACTIONS(2113), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99063,7 +95852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2129), 28, + ACTIONS(2111), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99092,14 +95881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25314] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22916] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(967), 1, - sym_text_interpolation, - ACTIONS(2135), 10, + ACTIONS(2117), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99110,7 +95895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2133), 28, + ACTIONS(2115), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99139,14 +95924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25366] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [22962] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(968), 1, - sym_text_interpolation, - ACTIONS(2139), 10, + ACTIONS(2121), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99157,7 +95938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2137), 28, + ACTIONS(2119), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99186,14 +95967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25418] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23008] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(969), 1, - sym_text_interpolation, - ACTIONS(2143), 10, + ACTIONS(2125), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99204,7 +95981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2141), 28, + ACTIONS(2123), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99233,14 +96010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25470] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23054] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(970), 1, - sym_text_interpolation, - ACTIONS(2147), 10, + ACTIONS(2129), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99251,7 +96024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 28, + ACTIONS(2127), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99280,13 +96053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25522] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23100] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(971), 1, - sym_text_interpolation, ACTIONS(1120), 11, anon_sym_AMP, anon_sym_QMARK, @@ -99326,14 +96095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25573] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23145] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(972), 1, - sym_text_interpolation, - ACTIONS(1080), 11, + ACTIONS(1054), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99345,7 +96110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1078), 26, + ACTIONS(1052), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -99372,45 +96137,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25624] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23190] = 14, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - STATE(973), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(1671), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 15, + ACTIONS(1669), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99425,104 +96189,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [25692] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23256] = 13, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2165), 1, - anon_sym_PERCENT, - STATE(974), 1, - sym_text_interpolation, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(2131), 1, anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1656), 23, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2143), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2147), 1, anon_sym_DOT, - [25748] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2171), 1, + ACTIONS(1671), 2, anon_sym_QMARK, - ACTIONS(2173), 1, anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - STATE(975), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2167), 11, + ACTIONS(1669), 15, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99531,127 +96233,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [25828] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2165), 1, - anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - STATE(976), 1, - sym_text_interpolation, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2155), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2183), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [25914] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23320] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(977), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2193), 8, + ACTIONS(2153), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99660,61 +96299,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26000] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23400] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(978), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2195), 8, + ACTIONS(2171), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99723,161 +96358,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26086] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23480] = 19, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - STATE(979), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1703), 1, anon_sym_AMP, + ACTIONS(1711), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1987), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [26138] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(2173), 1, + anon_sym_DOT_DOT_DOT, + STATE(1175), 1, + sym_visibility_modifier, + STATE(1506), 1, + sym_qualified_name, + STATE(1670), 1, + sym__type, + STATE(1919), 1, + sym_reference_modifier, + STATE(1920), 1, + sym_variable_name, + STATE(2473), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1608), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [23556] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2165), 1, - anon_sym_PERCENT, - ACTIONS(2169), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2135), 1, anon_sym_CARET, - ACTIONS(2201), 1, - anon_sym_QMARK, - STATE(980), 1, - sym_text_interpolation, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2155), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2199), 11, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26218] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - STATE(981), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2203), 11, + ACTIONS(2175), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99889,61 +96471,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26298] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23630] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(982), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2205), 8, + ACTIONS(2019), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -99952,61 +96530,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26384] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23710] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - STATE(983), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1947), 8, + ACTIONS(2177), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100015,16 +96583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26470] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [23784] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - STATE(984), 1, - sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(2151), 1, + anon_sym_PERCENT, + ACTIONS(2133), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2145), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2149), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100033,17 +96609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1993), 25, + ACTIONS(1669), 21, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -100057,59 +96630,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [26522] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23836] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, + ACTIONS(2165), 1, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - STATE(985), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2207), 11, + ACTIONS(2179), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100118,64 +96690,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26602] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [23916] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - STATE(986), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(1671), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2209), 8, + ACTIONS(1669), 23, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100184,55 +96719,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26688] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2165), 1, - anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - STATE(987), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [23966] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2151), 1, + anon_sym_PERCENT, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(1671), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2211), 11, + ACTIONS(1669), 20, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100241,64 +96768,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26768] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [24020] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - STATE(988), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2213), 8, + ACTIONS(1671), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1669), 19, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100307,34 +96817,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26854] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [24078] = 12, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2151), 1, anon_sym_PERCENT, - STATE(989), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2159), 2, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(1671), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 21, + ACTIONS(2139), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 15, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100350,67 +96878,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT, - [26912] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24140] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(990), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 8, + ACTIONS(2181), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100419,36 +96937,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [26998] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24220] = 15, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - STATE(991), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2159), 2, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 20, + ACTIONS(2139), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100463,45 +96990,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [27058] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24288] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - STATE(992), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2185), 1, + anon_sym_QMARK, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2159), 2, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1658), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 19, + ACTIONS(2139), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2183), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100510,182 +97043,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [27122] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + [24362] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1736), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(2217), 1, - anon_sym_DOT_DOT_DOT, - STATE(993), 1, - sym_text_interpolation, - STATE(1186), 1, - sym_visibility_modifier, - STATE(1538), 1, - sym_qualified_name, - STATE(1618), 1, - sym__types, - STATE(1672), 1, - sym__type, - STATE(1959), 1, - sym_reference_modifier, - STATE(1962), 1, - sym_variable_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, - sym_namespace_name_as_prefix, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - ACTIONS(234), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [27206] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(994), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2187), 1, + anon_sym_EQ_GT, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 8, + ACTIONS(1987), 7, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27292] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24444] = 16, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - STATE(995), 1, - sym_text_interpolation, - ACTIONS(1658), 2, - anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2149), 2, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 15, + ACTIONS(1669), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100699,51 +97160,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [27362] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24514] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2151), 1, + anon_sym_PERCENT, + ACTIONS(2155), 1, anon_sym_QMARK, ACTIONS(2157), 1, - anon_sym_GT_EQ, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, ACTIONS(2161), 1, - anon_sym_DOT, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, ACTIONS(2165), 1, - anon_sym_PERCENT, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2181), 1, - anon_sym_CARET, - STATE(996), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 14, + ACTIONS(2189), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100752,57 +97219,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [27436] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24594] = 19, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2179), 1, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - STATE(997), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 13, + ACTIONS(1669), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100811,62 +97274,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [27512] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24670] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, + ACTIONS(2165), 1, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - STATE(998), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 10, + ACTIONS(2191), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100875,61 +97335,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27594] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24750] = 20, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(999), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 9, + ACTIONS(1669), 9, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100939,55 +97393,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, - [27678] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24828] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, + ACTIONS(2165), 1, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - STATE(1000), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 11, + ACTIONS(2193), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -100996,19 +97452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27758] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24908] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2195), 1, anon_sym_STAR_STAR, - STATE(1001), 1, - sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101019,7 +97468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2025), 25, + ACTIONS(1999), 25, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101045,55 +97494,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27810] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [24954] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, + ACTIONS(2165), 1, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - STATE(1002), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 11, + ACTIONS(2197), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101102,98 +97553,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27890] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25034] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2165), 1, - anon_sym_PERCENT, - STATE(1003), 1, - sym_text_interpolation, - ACTIONS(2163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(2131), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2151), 1, + anon_sym_PERCENT, + ACTIONS(2157), 1, anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2201), 1, + anon_sym_QMARK, + ACTIONS(2133), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2145), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2149), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 25, + ACTIONS(2139), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2199), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [27944] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25108] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - STATE(1004), 1, - sym_text_interpolation, - ACTIONS(1658), 2, + ACTIONS(2155), 1, anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2149), 2, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 14, + ACTIONS(1669), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101202,131 +97662,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [28016] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25182] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - ACTIONS(2221), 1, - anon_sym_EQ_GT, - STATE(1005), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1983), 7, + ACTIONS(1669), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [28104] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25256] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2165), 1, + ACTIONS(2151), 1, anon_sym_PERCENT, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - STATE(1006), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2163), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2223), 8, + ACTIONS(2203), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -101335,87 +97774,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [28190] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25330] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2195), 1, + anon_sym_STAR_STAR, + ACTIONS(1983), 10, anon_sym_AMP, - ACTIONS(2227), 1, anon_sym_QMARK, - ACTIONS(2229), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1981), 25, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1007), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, + anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + anon_sym_DOT, + anon_sym_PERCENT, + [25376] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2151), 1, + anon_sym_PERCENT, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(1671), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2195), 7, + ACTIONS(1669), 25, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [28275] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1008), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2255), 2, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + anon_sym_DOT, + [25424] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2195), 1, + anon_sym_STAR_STAR, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101424,13 +97876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 20, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2205), 25, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -101444,231 +97900,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - [28332] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PERCENT, + [25470] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2151), 1, + anon_sym_PERCENT, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1009), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2149), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2209), 7, + ACTIONS(2209), 8, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_STAR_STAR, - anon_sym_RBRACK, aux_sym_binary_expression_token1, - [28417] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25550] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_QMARK, - ACTIONS(2225), 1, + ACTIONS(2211), 1, + anon_sym_STAR_STAR, + ACTIONS(1983), 10, anon_sym_AMP, - ACTIONS(2229), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1010), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2247), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2251), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2167), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1981), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28496] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, - anon_sym_PIPE, - ACTIONS(2233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1011), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2203), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28575] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [25595] = 18, + ACTIONS(1506), 1, sym_comment, ACTIONS(2201), 1, anon_sym_QMARK, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1012), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -101684,55 +98059,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28654] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25668] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1013), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2207), 10, + ACTIONS(2191), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -101740,58 +98117,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28733] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25747] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1014), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2211), 10, + ACTIONS(2153), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -101799,64 +98175,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [28812] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25826] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1015), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2205), 7, + ACTIONS(2203), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -101864,77 +98227,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [28897] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25899] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1016), 1, - sym_text_interpolation, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(2213), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2215), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1656), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, anon_sym_AMP_AMP, + ACTIONS(2225), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2233), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2237), 1, anon_sym_DOT, - [28950] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1017), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, - anon_sym_AMP, + ACTIONS(2243), 1, anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 22, + ACTIONS(2229), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2209), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -101942,71 +98288,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [29005] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [25978] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1018), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -102019,27 +98346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29090] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26057] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1019), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(2211), 1, + anon_sym_STAR_STAR, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102048,12 +98360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 19, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2205), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -102068,43 +98383,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [29149] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1020), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + anon_sym_DOT, + anon_sym_PERCENT, + [26102] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1658), 5, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1669), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, @@ -102118,47 +98424,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [29212] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [26149] = 19, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2253), 1, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1021), 1, - sym_text_interpolation, - ACTIONS(1658), 2, + ACTIONS(2243), 1, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2231), 2, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 14, + ACTIONS(1669), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102166,68 +98483,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [29281] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26224] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1022), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2183), 7, + ACTIONS(2197), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102235,79 +98543,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29366] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26303] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, anon_sym_AMP, - ACTIONS(2227), 1, anon_sym_QMARK, - ACTIONS(2229), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1669), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2257), 1, + anon_sym_LT_EQ_GT, anon_sym_DOT, - ACTIONS(2261), 1, + [26354] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, anon_sym_PERCENT, - ACTIONS(2263), 1, - anon_sym_EQ_GT, - STATE(1023), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1983), 6, + ACTIONS(1669), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29453] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [26427] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2265), 1, + ACTIONS(2211), 1, anon_sym_STAR_STAR, - STATE(1024), 1, - sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102318,7 +98658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2025), 24, + ACTIONS(1999), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102343,49 +98683,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29504] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26472] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2245), 1, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1025), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 13, + ACTIONS(2175), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102393,61 +98735,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [29577] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26545] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, + ACTIONS(2185), 1, anon_sym_QMARK, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1026), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 10, + ACTIONS(2183), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102458,61 +98793,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [29656] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26618] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1027), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 7, + ACTIONS(2189), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102520,55 +98851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29741] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26697] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, - anon_sym_PIPE, ACTIONS(2233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1028), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1656), 10, + ACTIONS(1671), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1669), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102576,125 +98887,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [29820] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, - anon_sym_PIPE, - ACTIONS(2233), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, aux_sym_binary_expression_token2, - ACTIONS(2239), 1, + aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1029), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [29903] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26754] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1030), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2223), 7, + ACTIONS(2179), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102702,45 +98956,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [29988] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26833] = 13, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2253), 1, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1031), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(1671), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 14, + ACTIONS(1669), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102755,61 +99006,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [30055] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26896] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2265), 1, - anon_sym_STAR_STAR, - STATE(1032), 1, - sym_text_interpolation, - ACTIONS(1995), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1993), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30106] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2265), 1, - anon_sym_STAR_STAR, - STATE(1033), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102818,15 +99031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1987), 24, + ACTIONS(1669), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -102841,65 +99051,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30157] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [26949] = 15, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, - anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(1671), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1034), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 7, + ACTIONS(1669), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -102907,121 +99097,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30242] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, - anon_sym_PIPE, - ACTIONS(2233), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, aux_sym_binary_expression_token2, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2261), 1, - anon_sym_PERCENT, - STATE(1035), 1, - sym_text_interpolation, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1656), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [30323] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [27016] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1036), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2213), 7, + ACTIONS(2171), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103029,48 +99161,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30408] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27095] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2245), 1, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1037), 1, - sym_text_interpolation, - ACTIONS(1658), 2, + ACTIONS(2243), 1, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2231), 2, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 13, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103078,57 +99219,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [30479] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27174] = 16, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, + ACTIONS(1671), 1, anon_sym_QMARK, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2261), 1, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1038), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 12, + ACTIONS(1669), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103141,61 +99272,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [30554] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27243] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, anon_sym_AMP, - ACTIONS(2227), 1, anon_sym_QMARK, - ACTIONS(2229), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1669), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, anon_sym_CARET, - ACTIONS(2253), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2257), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2261), 1, + [27292] = 20, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1039), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2259), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1947), 7, + ACTIONS(1669), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -103203,79 +99371,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30639] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token3, + [27369] = 12, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, anon_sym_PERCENT, - STATE(1040), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(1671), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 19, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_DOT, - [30695] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1041), 1, - sym_text_interpolation, - ACTIONS(1002), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1000), 24, - sym__automatic_semicolon, + ACTIONS(1669), 14, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -103284,102 +99421,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30743] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27430] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2237), 1, anon_sym_DOT, - STATE(1042), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2195), 6, - sym__automatic_semicolon, + ACTIONS(1669), 10, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - [30827] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [27503] = 14, + ACTIONS(1506), 1, sym_comment, - STATE(1043), 1, - sym_text_interpolation, - ACTIONS(2023), 10, + ACTIONS(2213), 1, anon_sym_AMP, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(1671), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2021), 24, - sym__automatic_semicolon, + ACTIONS(2229), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 13, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -103387,128 +99527,182 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + [27568] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, + anon_sym_AMP_AMP, + ACTIONS(2225), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2233), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2237), 1, anon_sym_DOT, + ACTIONS(2241), 1, anon_sym_PERCENT, - [30875] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1044), 1, - sym_text_interpolation, - ACTIONS(1957), 10, - anon_sym_AMP, + ACTIONS(2243), 1, anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1955), 24, - sym__automatic_semicolon, + ACTIONS(2229), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2177), 10, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, + [27641] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, + ACTIONS(2223), 1, anon_sym_AMP_AMP, + ACTIONS(2225), 1, anon_sym_CARET, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2239), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2231), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [30923] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1987), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [27722] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2237), 1, anon_sym_DOT, - STATE(1045), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2241), 1, + anon_sym_PERCENT, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2239), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2183), 6, - sym__automatic_semicolon, + ACTIONS(2181), 7, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_STAR_STAR, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - [31007] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27801] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1046), 1, - sym_text_interpolation, - ACTIONS(2107), 10, + ACTIONS(2073), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103519,7 +99713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2105), 24, + ACTIONS(2071), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103544,14 +99738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31055] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27843] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1047), 1, - sym_text_interpolation, - ACTIONS(1933), 10, + ACTIONS(1993), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103562,7 +99752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1931), 24, + ACTIONS(1991), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103587,100 +99777,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31103] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27885] = 21, + ACTIONS(1506), 1, sym_comment, - STATE(1048), 1, - sym_text_interpolation, - ACTIONS(2123), 10, + ACTIONS(2253), 1, anon_sym_AMP, + ACTIONS(2255), 1, anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2121), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, anon_sym_AMP_AMP, + ACTIONS(2273), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2281), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2285), 1, anon_sym_DOT, + ACTIONS(2289), 1, anon_sym_PERCENT, - [31151] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1049), 1, - sym_text_interpolation, - ACTIONS(2111), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2109), 24, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2209), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [31199] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [27963] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1050), 1, - sym_text_interpolation, - ACTIONS(2103), 10, + ACTIONS(2061), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103691,7 +99848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2101), 24, + ACTIONS(2059), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103716,14 +99873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31247] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28005] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1051), 1, - sym_text_interpolation, - ACTIONS(2003), 10, + ACTIONS(1528), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103734,7 +99887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2001), 24, + ACTIONS(1526), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103759,14 +99912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31295] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28047] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1052), 1, - sym_text_interpolation, - ACTIONS(2099), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103777,7 +99926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2097), 24, + ACTIONS(2007), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103802,14 +99951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31343] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28089] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1053), 1, - sym_text_interpolation, - ACTIONS(2119), 10, + ACTIONS(2045), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103820,7 +99965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2117), 24, + ACTIONS(2043), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103845,75 +99990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31391] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1054), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2193), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31475] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28131] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1055), 1, - sym_text_interpolation, - ACTIONS(1929), 10, + ACTIONS(2009), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103924,7 +100004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1927), 24, + ACTIONS(2007), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103949,14 +100029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31523] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28173] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1056), 1, - sym_text_interpolation, - ACTIONS(2115), 10, + ACTIONS(2013), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103967,7 +100043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2113), 24, + ACTIONS(2011), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -103992,14 +100068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31571] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28215] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1057), 1, - sym_text_interpolation, - ACTIONS(1937), 10, + ACTIONS(2125), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104010,7 +100082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1935), 24, + ACTIONS(2123), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104035,14 +100107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31619] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28257] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1058), 1, - sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(2029), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104053,7 +100121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2013), 24, + ACTIONS(2027), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104078,14 +100146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31667] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28299] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1059), 1, - sym_text_interpolation, - ACTIONS(2019), 10, + ACTIONS(2117), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104096,7 +100160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2017), 24, + ACTIONS(2115), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104121,14 +100185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31715] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28341] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1060), 1, - sym_text_interpolation, - ACTIONS(1941), 10, + ACTIONS(2025), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104139,7 +100199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1939), 24, + ACTIONS(2023), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104164,178 +100224,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [31763] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28383] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(1827), 10, anon_sym_AMP, - ACTIONS(2277), 1, anon_sym_QMARK, - ACTIONS(2279), 1, anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1061), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1947), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [31847] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - ACTIONS(2305), 1, - anon_sym_EQ_GT, - STATE(1062), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1983), 5, + anon_sym_SLASH, + ACTIONS(1825), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31933] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2291), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2293), 1, anon_sym_CARET, - ACTIONS(2301), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1063), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, + anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, + anon_sym_DOT, + anon_sym_PERCENT, + [28425] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1915), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1656), 11, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1913), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -104343,14 +100291,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [32007] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28467] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1064), 1, - sym_text_interpolation, - ACTIONS(2131), 10, + ACTIONS(2005), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104361,7 +100316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2129), 24, + ACTIONS(2003), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104386,14 +100341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32055] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28509] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1065), 1, - sym_text_interpolation, - ACTIONS(2059), 10, + ACTIONS(1997), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104404,7 +100355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2057), 24, + ACTIONS(1995), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104429,14 +100380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32103] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28551] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1066), 1, - sym_text_interpolation, - ACTIONS(1949), 10, + ACTIONS(1919), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104447,7 +100394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1947), 24, + ACTIONS(1917), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104472,130 +100419,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32151] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28593] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(996), 10, anon_sym_AMP, - ACTIONS(2277), 1, anon_sym_QMARK, - ACTIONS(2279), 1, anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1067), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2207), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(994), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [32229] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, anon_sym_CARET, - ACTIONS(2301), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1068), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, + anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, + anon_sym_DOT, + anon_sym_PERCENT, + [28635] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1939), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2211), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [32307] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28677] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1069), 1, - sym_text_interpolation, - ACTIONS(2043), 10, + ACTIONS(2093), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104606,7 +100511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2041), 24, + ACTIONS(2091), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104631,14 +100536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32355] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28719] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1070), 1, - sym_text_interpolation, - ACTIONS(1658), 10, + ACTIONS(1989), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104649,7 +100550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 24, + ACTIONS(1987), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104674,14 +100575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32403] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28761] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1071), 1, - sym_text_interpolation, - ACTIONS(2047), 10, + ACTIONS(1943), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104692,7 +100589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2045), 24, + ACTIONS(1941), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104717,22 +100614,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32451] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [28803] = 21, + ACTIONS(1506), 1, sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, anon_sym_PERCENT, - STATE(1072), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2271), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2197), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [28881] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2293), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2298), 1, + aux_sym_final_modifier_token1, + ACTIONS(2301), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2304), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2307), 1, + sym_var_modifier, + ACTIONS(2296), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2310), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1058), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + ACTIONS(2291), 16, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [28937] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2101), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104741,11 +100729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 21, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2099), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -104763,14 +100755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [32505] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PERCENT, + [28979] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1073), 1, - sym_text_interpolation, - ACTIONS(2051), 10, + ACTIONS(2113), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104781,7 +100770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2049), 24, + ACTIONS(2111), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104806,14 +100795,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32553] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29021] = 22, + ACTIONS(1506), 1, sym_comment, - STATE(1074), 1, - sym_text_interpolation, - ACTIONS(2055), 10, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2313), 1, + anon_sym_EQ_GT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1987), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [29101] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1963), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104824,7 +100867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2053), 24, + ACTIONS(1961), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104849,27 +100892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32601] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29143] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1075), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(1955), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104878,11 +100904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 18, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1953), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -104897,14 +100927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [32659] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29185] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1076), 1, - sym_text_interpolation, - ACTIONS(2067), 10, + ACTIONS(2121), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104915,7 +100945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2065), 24, + ACTIONS(2119), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104940,14 +100970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32707] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29227] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1077), 1, - sym_text_interpolation, - ACTIONS(2071), 10, + ACTIONS(1923), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104958,7 +100984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2069), 24, + ACTIONS(1921), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -104983,156 +101009,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32755] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29269] = 21, + ACTIONS(1506), 1, sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2301), 1, + anon_sym_CARET, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1078), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1658), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 17, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2181), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [29347] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [32817] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2301), 1, + anon_sym_CARET, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1079), 1, - sym_text_interpolation, - ACTIONS(1658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 13, + ACTIONS(2175), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [32885] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29419] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2279), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2293), 1, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1080), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2177), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29491] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2069), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2067), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [29533] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2081), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2079), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -105141,254 +101242,287 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [32957] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2273), 1, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - ACTIONS(2275), 1, + [29575] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2289), 1, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1081), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 8, + ACTIONS(2189), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [33037] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29653] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2287), 1, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1082), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 7, + ACTIONS(2153), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [33119] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29731] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1083), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 9, + ACTIONS(2171), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [29809] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2109), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2107), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [33197] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2273), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - ACTIONS(2275), 1, + [29851] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2279), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1084), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 9, + ACTIONS(2179), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [33275] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [29929] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - STATE(1085), 1, - sym_text_interpolation, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(1781), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105397,7 +101531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 23, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1779), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105421,52 +101557,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [33327] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2273), 1, anon_sym_PERCENT, - ACTIONS(2275), 1, + [29971] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2037), 10, anon_sym_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1086), 1, - sym_text_interpolation, - ACTIONS(1658), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1656), 12, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2035), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -105475,14 +101587,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [33397] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30013] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1087), 1, - sym_text_interpolation, - ACTIONS(1554), 10, + ACTIONS(2315), 1, + anon_sym_STAR_STAR, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105493,14 +101613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 24, + ACTIONS(1981), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -105518,14 +101637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33445] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30057] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1088), 1, - sym_text_interpolation, - ACTIONS(1945), 10, + ACTIONS(2065), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105536,7 +101651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1943), 24, + ACTIONS(2063), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105561,14 +101676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33493] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30099] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1089), 1, - sym_text_interpolation, - ACTIONS(2075), 10, + ACTIONS(2057), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105579,7 +101690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2073), 24, + ACTIONS(2055), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105604,72 +101715,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33541] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30141] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2201), 1, - anon_sym_QMARK, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2053), 10, anon_sym_AMP, - ACTIONS(2279), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1090), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2199), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2051), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [33619] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30183] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1091), 1, - sym_text_interpolation, - ACTIONS(1524), 10, + ACTIONS(2317), 1, + aux_sym_binary_expression_token1, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105680,7 +101770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1522), 24, + ACTIONS(1981), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105688,7 +101778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -105705,72 +101794,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33667] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30227] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(1671), 10, anon_sym_AMP, - ACTIONS(2277), 1, anon_sym_QMARK, - ACTIONS(2279), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1669), 24, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, anon_sym_CARET, - ACTIONS(2301), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2303), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - STATE(1092), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + anon_sym_PERCENT, + [30269] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, + ACTIONS(1671), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2299), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2203), 9, + ACTIONS(1669), 19, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [33745] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [30319] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(1093), 1, - sym_text_interpolation, - ACTIONS(1520), 10, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105779,15 +101896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 24, + ACTIONS(1669), 21, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -105805,46 +101918,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [33793] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30367] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1094), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1658), 3, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2299), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1656), 13, + ACTIONS(1669), 18, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -105858,31 +101957,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [33859] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [30419] = 10, + ACTIONS(1506), 1, sym_comment, - STATE(1095), 1, - sym_text_interpolation, - ACTIONS(2095), 10, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1671), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2093), 24, + ACTIONS(1669), 17, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -105895,20 +102007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [33907] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30475] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1096), 1, - sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2315), 1, + anon_sym_STAR_STAR, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105919,14 +102024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2025), 24, + ACTIONS(2205), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -105944,33 +102048,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33955] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30519] = 13, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_STAR_STAR, - STATE(1097), 1, - sym_text_interpolation, - ACTIONS(2027), 10, + ACTIONS(2253), 1, anon_sym_AMP, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(1671), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2025), 23, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -105979,84 +102097,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34005] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30581] = 15, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(1671), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_PIPE, + ACTIONS(2273), 1, + anon_sym_CARET, ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + [30647] = 16, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1098), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 6, + ACTIONS(1669), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [34089] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [30715] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1099), 1, - sym_text_interpolation, - ACTIONS(2083), 10, + ACTIONS(2049), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106067,7 +102214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2081), 24, + ACTIONS(2047), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106092,14 +102239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34137] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30757] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1100), 1, - sym_text_interpolation, - ACTIONS(2063), 10, + ACTIONS(2041), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106110,7 +102253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2061), 24, + ACTIONS(2039), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106135,57 +102278,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34185] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30799] = 19, + ACTIONS(1506), 1, sym_comment, - STATE(1101), 1, - sym_text_interpolation, - ACTIONS(2035), 10, + ACTIONS(2253), 1, anon_sym_AMP, + ACTIONS(2255), 1, anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2033), 24, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [30873] = 20, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, anon_sym_AMP_AMP, + ACTIONS(2273), 1, anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34233] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1669), 7, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [30949] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1102), 1, - sym_text_interpolation, - ACTIONS(1514), 10, + ACTIONS(2033), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106196,7 +102403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1512), 24, + ACTIONS(2031), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106221,75 +102428,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34281] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [30991] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2185), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2183), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + [31063] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1103), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2213), 6, + ACTIONS(1669), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [34365] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [31135] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1104), 1, - sym_text_interpolation, - ACTIONS(1999), 10, + ACTIONS(2105), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106300,7 +102550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1997), 24, + ACTIONS(2103), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106325,14 +102575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34413] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31177] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1105), 1, - sym_text_interpolation, - ACTIONS(2031), 10, + ACTIONS(2021), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106343,7 +102589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2029), 24, + ACTIONS(2019), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106368,143 +102614,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34461] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31219] = 18, + ACTIONS(1506), 1, sym_comment, - STATE(1106), 1, - sym_text_interpolation, - ACTIONS(2139), 10, - anon_sym_AMP, + ACTIONS(1671), 1, anon_sym_QMARK, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2137), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, anon_sym_AMP_AMP, + ACTIONS(2273), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2281), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2285), 1, anon_sym_DOT, + ACTIONS(2289), 1, anon_sym_PERCENT, - [34509] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1107), 1, - sym_text_interpolation, - ACTIONS(2011), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2009), 24, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34557] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1108), 1, - sym_text_interpolation, - ACTIONS(1953), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1951), 24, + ACTIONS(1669), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34605] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31291] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(1109), 1, - sym_text_interpolation, - ACTIONS(2007), 10, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106513,9 +102685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2005), 24, + ACTIONS(1669), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106539,76 +102709,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [34653] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31337] = 14, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1110), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(1671), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 6, + ACTIONS(1669), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [34737] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [31401] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1111), 1, - sym_text_interpolation, - ACTIONS(2079), 10, + ACTIONS(1983), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106619,7 +102773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2077), 24, + ACTIONS(1981), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106644,14 +102798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34785] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31443] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1112), 1, - sym_text_interpolation, - ACTIONS(1528), 10, + ACTIONS(2017), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106662,7 +102812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1526), 24, + ACTIONS(2015), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106687,31 +102837,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34833] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31485] = 12, + ACTIONS(1506), 1, sym_comment, - STATE(1113), 1, - sym_text_interpolation, - ACTIONS(1985), 10, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1983), 24, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -106721,23 +102885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [34881] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31545] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1114), 1, - sym_text_interpolation, - ACTIONS(2039), 10, + ACTIONS(2085), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106748,7 +102899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2037), 24, + ACTIONS(2083), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106773,14 +102924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34929] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31587] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1115), 1, - sym_text_interpolation, - ACTIONS(2039), 10, + ACTIONS(2089), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106791,7 +102938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2037), 24, + ACTIONS(2087), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106816,14 +102963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34977] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31629] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1116), 1, - sym_text_interpolation, - ACTIONS(2147), 10, + ACTIONS(1967), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106834,7 +102977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 24, + ACTIONS(1965), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106859,14 +103002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35025] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31671] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1117), 1, - sym_text_interpolation, - ACTIONS(2143), 10, + ACTIONS(1935), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106877,7 +103016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2141), 24, + ACTIONS(1933), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106902,65 +103041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35073] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31713] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2311), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2316), 1, - aux_sym_final_modifier_token1, - ACTIONS(2319), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2322), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2325), 1, - sym_var_modifier, - STATE(1316), 1, - sym__modifier, - ACTIONS(2314), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - STATE(1118), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2328), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1314), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(2309), 17, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [35137] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1119), 1, - sym_text_interpolation, - ACTIONS(2135), 10, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106971,7 +103055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2133), 24, + ACTIONS(1999), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -106996,75 +103080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35185] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1120), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2223), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [35269] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31755] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1121), 1, - sym_text_interpolation, - ACTIONS(1843), 10, + ACTIONS(1975), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107075,7 +103094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1841), 24, + ACTIONS(1973), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107100,14 +103119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35317] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31797] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1122), 1, - sym_text_interpolation, - ACTIONS(2127), 10, + ACTIONS(2315), 1, + anon_sym_STAR_STAR, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107118,14 +103135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2125), 24, + ACTIONS(1999), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -107143,136 +103159,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35365] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31841] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1123), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2205), 6, + ACTIONS(2193), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [35449] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31919] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1124), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2209), 6, + ACTIONS(2019), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [35533] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [31997] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1125), 1, - sym_text_interpolation, - ACTIONS(1961), 10, + ACTIONS(2097), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107283,7 +103287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1959), 24, + ACTIONS(2095), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107308,14 +103312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35581] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32039] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1126), 1, - sym_text_interpolation, - ACTIONS(998), 10, + ACTIONS(1518), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107326,7 +103326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(996), 24, + ACTIONS(1516), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107351,14 +103351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35629] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32081] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1127), 1, - sym_text_interpolation, - ACTIONS(2091), 10, + ACTIONS(1979), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107369,7 +103365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2089), 24, + ACTIONS(1977), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107394,72 +103390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35677] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2171), 1, - anon_sym_QMARK, - ACTIONS(2273), 1, - anon_sym_PERCENT, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1128), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2167), 9, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [35755] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32123] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1129), 1, - sym_text_interpolation, - ACTIONS(2087), 10, + ACTIONS(2129), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107470,7 +103404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2085), 24, + ACTIONS(2127), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107495,14 +103429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35803] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32165] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1130), 1, - sym_text_interpolation, - ACTIONS(1977), 10, + ACTIONS(1931), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107513,7 +103443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1975), 24, + ACTIONS(1929), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107538,14 +103468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35851] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32207] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1131), 1, - sym_text_interpolation, - ACTIONS(1734), 10, + ACTIONS(1927), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107556,7 +103482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1732), 24, + ACTIONS(1925), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107581,14 +103507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35899] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32249] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1132), 1, - sym_text_interpolation, - ACTIONS(1969), 10, + ACTIONS(2077), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107599,7 +103521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1967), 24, + ACTIONS(2075), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107624,14 +103546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35947] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32291] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1133), 1, - sym_text_interpolation, - ACTIONS(1973), 10, + ACTIONS(1971), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107642,7 +103560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1971), 24, + ACTIONS(1969), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107667,16 +103585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35995] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32333] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_STAR_STAR, - STATE(1134), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(1959), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107687,13 +103599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1987), 23, + ACTIONS(1957), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -107711,14 +103624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36045] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32375] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1135), 1, - sym_text_interpolation, - ACTIONS(1965), 10, + ACTIONS(1504), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107729,7 +103638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1963), 24, + ACTIONS(1502), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107754,14 +103663,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36093] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32417] = 21, + ACTIONS(1506), 1, sym_comment, - STATE(1136), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(2253), 1, + anon_sym_AMP, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, + anon_sym_PIPE, + ACTIONS(2261), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_PERCENT, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2191), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [32495] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1951), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107772,7 +103734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1987), 24, + ACTIONS(1949), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107797,14 +103759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36141] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32537] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1137), 1, - sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(1514), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107815,7 +103773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1993), 24, + ACTIONS(1512), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107840,16 +103798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36189] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32579] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2331), 1, - aux_sym_binary_expression_token1, - STATE(1138), 1, - sym_text_interpolation, - ACTIONS(1989), 10, + ACTIONS(1947), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107860,7 +103812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1987), 23, + ACTIONS(1945), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107868,6 +103820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -107884,14 +103837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36239] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32621] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1139), 1, - sym_text_interpolation, - ACTIONS(1981), 10, + ACTIONS(1510), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107902,7 +103851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1979), 24, + ACTIONS(1508), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107927,16 +103876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36287] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32663] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_STAR_STAR, - STATE(1140), 1, - sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(1000), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107947,13 +103890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1993), 23, + ACTIONS(998), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -107971,139 +103915,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36337] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32705] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, + ACTIONS(2201), 1, anon_sym_QMARK, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2289), 1, anon_sym_PERCENT, - STATE(1141), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2287), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 8, + ACTIONS(2199), 9, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [36414] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32777] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2289), 1, anon_sym_PERCENT, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2287), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2203), 9, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, aux_sym_binary_expression_token4, - STATE(1142), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + [32849] = 14, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(1671), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2223), 5, + ACTIONS(1669), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [36497] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [32912] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1143), 1, - sym_text_interpolation, ACTIONS(2337), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108112,10 +104089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 20, + ACTIONS(1669), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -108133,137 +104112,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [36550] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [32957] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2353), 1, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1144), 1, - sym_text_interpolation, - ACTIONS(1658), 2, - anon_sym_QMARK, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2337), 2, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 12, + ACTIONS(1669), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [36617] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33028] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1145), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2193), 5, + ACTIONS(2181), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [36700] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33105] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1146), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2355), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(1671), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108272,7 +104241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 18, + ACTIONS(1669), 20, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -108290,50 +104259,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - [36755] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33152] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2333), 1, - anon_sym_AMP, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1147), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(1671), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1669), 16, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 11, + [33207] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2333), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1669), 18, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -108345,55 +104342,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [36826] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DOT, + [33256] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2327), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2197), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33333] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(2363), 1, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - STATE(1148), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2211), 8, + ACTIONS(2177), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -108402,403 +104458,457 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [36903] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33404] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_QMARK, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2327), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2153), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33481] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1149), 1, - sym_text_interpolation, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, + ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2337), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2327), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2019), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [33558] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, + ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 10, + ACTIONS(2171), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - [36976] = 21, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33635] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - STATE(1150), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 7, + ACTIONS(2209), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37055] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33712] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - STATE(1151), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, + ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2207), 8, + ACTIONS(2193), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37132] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33789] = 20, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2201), 1, - anon_sym_QMARK, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - STATE(1152), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2199), 8, + ACTIONS(1669), 6, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37209] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [33864] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1153), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1947), 5, + ACTIONS(2175), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [37292] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - STATE(1154), 1, - sym_text_interpolation, - ACTIONS(1989), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1987), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [33935] = 22, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2331), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2335), 1, anon_sym_DOT, + ACTIONS(2339), 1, anon_sym_PERCENT, - [37341] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2171), 1, - anon_sym_QMARK, - ACTIONS(2333), 1, - anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, ACTIONS(2353), 1, - anon_sym_GT_EQ, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - STATE(1155), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + anon_sym_EQ_GT, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2167), 8, + ACTIONS(1987), 4, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [37418] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2327), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [34014] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2371), 1, + ACTIONS(2359), 1, anon_sym_STAR_STAR, - STATE(1156), 1, - sym_text_interpolation, - ACTIONS(1995), 10, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108809,7 +104919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1993), 22, + ACTIONS(2205), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -108832,195 +104942,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [37467] = 22, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [34057] = 19, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1157), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 6, + ACTIONS(1669), 7, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, aux_sym_binary_expression_token3, - [37548] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token4, + [34130] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2185), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1158), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 5, + ACTIONS(2183), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [37631] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34201] = 15, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2323), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(2363), 1, - anon_sym_QMARK, - STATE(1159), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 8, + ACTIONS(1669), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [37708] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [34266] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2361), 1, - anon_sym_PERCENT, - STATE(1160), 1, - sym_text_interpolation, - ACTIONS(2359), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 8, + ACTIONS(2359), 1, + anon_sym_STAR_STAR, + ACTIONS(2001), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109029,13 +105113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1999), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -109052,108 +105137,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [37759] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_PERCENT, + [34309] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1161), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2209), 5, + ACTIONS(2189), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [37842] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [34386] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2359), 1, + anon_sym_STAR_STAR, + ACTIONS(1983), 10, anon_sym_AMP, - ACTIONS(2345), 1, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1981), 22, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - ACTIONS(2353), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2357), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2361), 1, anon_sym_PERCENT, - STATE(1162), 1, - sym_text_interpolation, - ACTIONS(1658), 2, + [34429] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(1671), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1656), 11, + ACTIONS(1669), 12, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109165,170 +105280,143 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [37911] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_CARET, + [34490] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_AMP, ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1163), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(1671), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2205), 5, + ACTIONS(1669), 17, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [37994] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2333), 1, - anon_sym_AMP, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, anon_sym_CARET, - ACTIONS(2353), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2357), 1, + anon_sym_LT_EQ_GT, + [34541] = 18, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(2363), 1, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1164), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2195), 5, + ACTIONS(1669), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [38077] = 20, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34612] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - STATE(1165), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -109342,99 +105430,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [38154] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [34683] = 12, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_AMP, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1166), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(1671), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2219), 5, + ACTIONS(1669), 12, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [38237] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [34742] = 16, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(1671), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1167), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2355), 2, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1658), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 16, + ACTIONS(2327), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1669), 10, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -109445,1095 +105528,1181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [38298] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [34809] = 18, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2201), 1, + anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - STATE(1168), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2355), 2, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1656), 17, + ACTIONS(2327), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2199), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [38355] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [34880] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1169), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2183), 5, + ACTIONS(2179), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [38438] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [34957] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, - anon_sym_PIPE, + anon_sym_DOT, ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, + anon_sym_PERCENT, ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, + anon_sym_PIPE, ACTIONS(2343), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK_QMARK, ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1170), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2213), 5, + ACTIONS(2191), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [38521] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [35034] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - ACTIONS(2363), 1, + ACTIONS(2239), 1, + anon_sym_SLASH, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2373), 1, + ACTIONS(2361), 1, anon_sym_EQ_GT, - STATE(1171), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(1987), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2359), 2, + ACTIONS(2241), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 3, + anon_sym_PERCENT, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1983), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - ACTIONS(2349), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38606] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [35111] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2361), 1, - anon_sym_PERCENT, - STATE(1172), 1, - sym_text_interpolation, - ACTIONS(2337), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2347), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2355), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2359), 2, - anon_sym_STAR, + ACTIONS(2337), 1, anon_sym_SLASH, - ACTIONS(1658), 3, - anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2351), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2349), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1656), 12, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - [38671] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - STATE(1173), 1, - sym_text_interpolation, - ACTIONS(2027), 10, - anon_sym_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2351), 1, + aux_sym_binary_expression_token2, + ACTIONS(2353), 1, + aux_sym_binary_expression_token3, + ACTIONS(2355), 1, + aux_sym_binary_expression_token4, + ACTIONS(2363), 1, + anon_sym_EQ_GT, + ACTIONS(1987), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2333), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2339), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2025), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [38720] = 28, - ACTIONS(5), 1, + [35188] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, + ACTIONS(107), 1, anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2365), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, + ACTIONS(2367), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, + ACTIONS(2371), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2383), 1, + ACTIONS(2373), 1, anon_sym_RBRACE, - ACTIONS(2385), 1, + ACTIONS(2375), 1, aux_sym_final_modifier_token1, - ACTIONS(2387), 1, + ACTIONS(2377), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, + ACTIONS(2379), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, + ACTIONS(2381), 1, sym_var_modifier, - STATE(649), 1, + STATE(1228), 1, + sym_final_modifier, + STATE(1303), 1, + sym_visibility_modifier, + STATE(1328), 1, + sym_attribute_list, + STATE(1377), 1, + sym__const_declaration, + STATE(1396), 1, + sym__class_const_declaration, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(650), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, aux_sym_property_declaration_repeat1, - STATE(1174), 1, - sym_text_interpolation, - STATE(1185), 1, + STATE(1179), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, aux_sym_declaration_list_repeat1, - STATE(1198), 1, + [35263] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2365), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2371), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2375), 1, + aux_sym_final_modifier_token1, + ACTIONS(2377), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2379), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2381), 1, + sym_var_modifier, + ACTIONS(2385), 1, + anon_sym_RBRACE, + STATE(1228), 1, sym_final_modifier, - STATE(1311), 1, + STATE(1303), 1, sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, + STATE(1328), 1, sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, + STATE(1377), 1, + sym__const_declaration, + STATE(1396), 1, + sym__class_const_declaration, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, sym_attribute_group, - STATE(1404), 1, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(650), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1179), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35338] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2365), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2371), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2375), 1, + aux_sym_final_modifier_token1, + ACTIONS(2377), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2379), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2381), 1, + sym_var_modifier, + ACTIONS(2387), 1, + anon_sym_RBRACE, + STATE(1228), 1, + sym_final_modifier, + STATE(1303), 1, + sym_visibility_modifier, + STATE(1328), 1, + sym_attribute_list, + STATE(1377), 1, sym__const_declaration, - STATE(1410), 1, + STATE(1396), 1, sym__class_const_declaration, - STATE(1411), 1, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(650), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1170), 5, sym__member_declaration, - STATE(1896), 1, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35413] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2365), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2371), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2375), 1, + aux_sym_final_modifier_token1, + ACTIONS(2377), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2379), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2381), 1, + sym_var_modifier, + ACTIONS(2389), 1, + anon_sym_RBRACE, + STATE(1228), 1, + sym_final_modifier, + STATE(1303), 1, + sym_visibility_modifier, + STATE(1328), 1, + sym_attribute_list, + STATE(1377), 1, + sym__const_declaration, + STATE(1396), 1, + sym__class_const_declaration, + STATE(1789), 1, sym__function_definition_header, - ACTIONS(2393), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1314), 3, + STATE(650), 5, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, - STATE(1403), 3, + aux_sym_property_declaration_repeat1, + STATE(1179), 5, + sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [38811] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_declaration_list_repeat1, + [35488] = 23, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2237), 1, anon_sym_DOT, - STATE(1175), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2239), 1, + anon_sym_SLASH, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2391), 1, + anon_sym_COMMA, + ACTIONS(2393), 1, + anon_sym_EQ_GT, + STATE(1992), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2395), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2297), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38892] = 27, - ACTIONS(5), 1, + [35567] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2365), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2371), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2375), 1, + aux_sym_final_modifier_token1, + ACTIONS(2377), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2379), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2381), 1, + sym_var_modifier, + ACTIONS(2395), 1, + anon_sym_RBRACE, + STATE(1228), 1, + sym_final_modifier, + STATE(1303), 1, + sym_visibility_modifier, + STATE(1328), 1, + sym_attribute_list, + STATE(1377), 1, + sym__const_declaration, + STATE(1396), 1, + sym__class_const_declaration, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(650), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + aux_sym_property_declaration_repeat1, + STATE(1180), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [35642] = 16, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(43), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, + anon_sym_QMARK, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(1236), 1, + sym_readonly_modifier, + STATE(1506), 1, + sym_qualified_name, + STATE(1975), 1, + sym_variable_name, + STATE(2302), 1, + sym__type, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + STATE(1526), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [35707] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2397), 1, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2365), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2400), 1, + ACTIONS(2367), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2403), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2406), 1, + ACTIONS(2371), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2409), 1, - anon_sym_RBRACE, - ACTIONS(2411), 1, + ACTIONS(2375), 1, aux_sym_final_modifier_token1, - ACTIONS(2414), 1, + ACTIONS(2377), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2417), 1, + ACTIONS(2379), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2420), 1, + ACTIONS(2381), 1, sym_var_modifier, - ACTIONS(2426), 1, - anon_sym_POUND_LBRACK, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1198), 1, + ACTIONS(2397), 1, + anon_sym_RBRACE, + STATE(1228), 1, sym_final_modifier, - STATE(1311), 1, + STATE(1303), 1, sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, + STATE(1328), 1, sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, + STATE(1377), 1, sym__const_declaration, - STATE(1410), 1, + STATE(1396), 1, sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, + STATE(1789), 1, sym__function_definition_header, - STATE(1176), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - ACTIONS(2423), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1314), 3, + STATE(650), 5, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, - STATE(1403), 3, + aux_sym_property_declaration_repeat1, + STATE(1172), 5, + sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [38981] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_declaration_list_repeat1, + [35782] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2431), 1, - anon_sym_COMMA, - STATE(1177), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2287), 1, + anon_sym_SLASH, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2429), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2399), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39064] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [35857] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - ACTIONS(2433), 1, - anon_sym_EQ_GT, - STATE(1178), 1, - sym_text_interpolation, - ACTIONS(1983), 2, + ACTIONS(2403), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2337), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2351), 3, + ACTIONS(2401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39147] = 28, - ACTIONS(5), 1, + [35934] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2405), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, + ACTIONS(2408), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, + ACTIONS(2411), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, + ACTIONS(2414), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(2419), 1, aux_sym_final_modifier_token1, - ACTIONS(2387), 1, + ACTIONS(2422), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, + ACTIONS(2425), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, + ACTIONS(2428), 1, sym_var_modifier, - ACTIONS(2435), 1, - anon_sym_RBRACE, - STATE(649), 1, + ACTIONS(2434), 1, + anon_sym_POUND_LBRACK, + STATE(1228), 1, + sym_final_modifier, + STATE(1303), 1, + sym_visibility_modifier, + STATE(1328), 1, + sym_attribute_list, + STATE(1377), 1, + sym__const_declaration, + STATE(1396), 1, + sym__class_const_declaration, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2431), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(650), 5, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, aux_sym_property_declaration_repeat1, - STATE(1179), 1, - sym_text_interpolation, - STATE(1191), 1, + STATE(1179), 5, + sym__member_declaration, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, aux_sym_declaration_list_repeat1, - STATE(1198), 1, + [36009] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2365), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2371), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2375), 1, + aux_sym_final_modifier_token1, + ACTIONS(2377), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2379), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2381), 1, + sym_var_modifier, + ACTIONS(2437), 1, + anon_sym_RBRACE, + STATE(1228), 1, sym_final_modifier, - STATE(1311), 1, + STATE(1303), 1, sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, + STATE(1328), 1, sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, + STATE(1377), 1, sym__const_declaration, - STATE(1410), 1, + STATE(1396), 1, sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, + STATE(1789), 1, sym__function_definition_header, - ACTIONS(2393), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1314), 3, + STATE(650), 5, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, - STATE(1403), 3, + aux_sym_property_declaration_repeat1, + STATE(1179), 5, + sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [39238] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_declaration_list_repeat1, + [36084] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2259), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2437), 1, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2439), 1, anon_sym_EQ_GT, - STATE(1180), 1, - sym_text_interpolation, - ACTIONS(1983), 2, + ACTIONS(1987), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2231), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39321] = 28, - ACTIONS(5), 1, + [36161] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, + ACTIONS(107), 1, anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2365), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, + ACTIONS(2367), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, + ACTIONS(2371), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, + ACTIONS(2375), 1, aux_sym_final_modifier_token1, - ACTIONS(2387), 1, + ACTIONS(2377), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, + ACTIONS(2379), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, + ACTIONS(2381), 1, sym_var_modifier, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_RBRACE, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1176), 1, - aux_sym_declaration_list_repeat1, - STATE(1181), 1, - sym_text_interpolation, - STATE(1198), 1, + STATE(1228), 1, sym_final_modifier, - STATE(1311), 1, + STATE(1303), 1, sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, + STATE(1328), 1, sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, + STATE(1377), 1, sym__const_declaration, - STATE(1410), 1, + STATE(1396), 1, sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, + STATE(1789), 1, sym__function_definition_header, - ACTIONS(2393), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2383), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1314), 3, + STATE(650), 5, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, - STATE(1403), 3, + aux_sym_property_declaration_repeat1, + STATE(1169), 5, + sym__member_declaration, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [39412] = 19, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(232), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1679), 1, - anon_sym_QMARK, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(1182), 1, - sym_text_interpolation, - STATE(1242), 1, - sym_readonly_modifier, - STATE(1538), 1, - sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(1955), 1, - sym_variable_name, - STATE(2400), 1, - sym__type, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [39485] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_declaration_list_repeat1, + [36236] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1183), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2287), 1, + anon_sym_SLASH, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2441), 3, + ACTIONS(2443), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39566] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36311] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2259), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - ACTIONS(2443), 1, - anon_sym_EQ_GT, - STATE(1184), 1, - sym_text_interpolation, - ACTIONS(1983), 2, + ACTIONS(2403), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2231), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2445), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39649] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, - aux_sym_final_modifier_token1, - ACTIONS(2387), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, - sym_var_modifier, - ACTIONS(2445), 1, - anon_sym_RBRACE, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1176), 1, - aux_sym_declaration_list_repeat1, - STATE(1185), 1, - sym_text_interpolation, - STATE(1198), 1, - sym_final_modifier, - STATE(1311), 1, - sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, - sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, - sym__const_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2393), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1314), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1403), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39740] = 19, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [36388] = 16, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(232), 1, + ACTIONS(43), 1, aux_sym_readonly_modifier_token1, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1679), 1, + ACTIONS(1665), 1, anon_sym_QMARK, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(1186), 1, - sym_text_interpolation, - STATE(1306), 1, + STATE(1242), 1, sym_readonly_modifier, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(2020), 1, + STATE(1938), 1, sym_variable_name, - STATE(2344), 1, + STATE(2251), 1, sym__type, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1669), 2, + STATE(1631), 2, sym_union_type, sym_intersection_type, - STATE(1619), 3, + STATE(1526), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -110546,3181 +106715,2661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_false, anon_sym_null, - anon_sym_true, - [39813] = 25, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, - anon_sym_PIPE, - ACTIONS(2233), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2447), 1, - anon_sym_COMMA, - ACTIONS(2449), 1, - anon_sym_EQ_GT, - STATE(1187), 1, - sym_text_interpolation, - STATE(2037), 1, - aux_sym_match_condition_list_repeat1, - ACTIONS(2231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2247), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2261), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2249), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [39898] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, - aux_sym_final_modifier_token1, - ACTIONS(2387), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, - sym_var_modifier, - ACTIONS(2451), 1, - anon_sym_RBRACE, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1188), 1, - sym_text_interpolation, - STATE(1193), 1, - aux_sym_declaration_list_repeat1, - STATE(1198), 1, - sym_final_modifier, - STATE(1311), 1, - sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, - sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, - sym__const_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2393), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1314), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1403), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39989] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_true, + [36453] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2431), 1, - anon_sym_COMMA, - STATE(1189), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2287), 1, + anon_sym_SLASH, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2453), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2447), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40072] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36528] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1190), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2449), 1, + anon_sym_EQ_GT, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2299), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2455), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2297), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40153] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, - aux_sym_final_modifier_token1, - ACTIONS(2387), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, - sym_var_modifier, - ACTIONS(2457), 1, - anon_sym_RBRACE, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1176), 1, - aux_sym_declaration_list_repeat1, - STATE(1191), 1, - sym_text_interpolation, - STATE(1198), 1, - sym_final_modifier, - STATE(1311), 1, - sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, - sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, - sym__const_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2393), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1314), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1403), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40244] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, - aux_sym_final_modifier_token1, - ACTIONS(2387), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, - sym_var_modifier, - ACTIONS(2459), 1, - anon_sym_RBRACE, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1181), 1, - aux_sym_declaration_list_repeat1, - STATE(1192), 1, - sym_text_interpolation, - STATE(1198), 1, - sym_final_modifier, - STATE(1311), 1, - sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, - sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, - sym__const_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2393), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1314), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1403), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40335] = 28, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2375), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, - aux_sym_final_modifier_token1, - ACTIONS(2387), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, - sym_var_modifier, - ACTIONS(2461), 1, - anon_sym_RBRACE, - STATE(649), 1, - aux_sym_property_declaration_repeat1, - STATE(1176), 1, - aux_sym_declaration_list_repeat1, - STATE(1193), 1, - sym_text_interpolation, - STATE(1198), 1, - sym_final_modifier, - STATE(1311), 1, - sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, - sym_attribute_list, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1404), 1, - sym__const_declaration, - STATE(1410), 1, - sym__class_const_declaration, - STATE(1411), 1, - sym__member_declaration, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2393), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1314), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1403), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40426] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36604] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1194), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2463), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2453), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40506] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36678] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2337), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2465), 1, - anon_sym_EQ_GT, - ACTIONS(2467), 1, - anon_sym_RPAREN, - STATE(1195), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40588] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36752] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1196), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 2, + ACTIONS(2457), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40668] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36826] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1197), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2471), 2, + ACTIONS(2459), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40748] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2475), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1198), 1, - sym_text_interpolation, - STATE(1384), 1, - sym__const_declaration, - STATE(2600), 1, - sym_visibility_modifier, - ACTIONS(2477), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2473), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [40798] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [36900] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2289), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2461), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2277), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [36974] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1199), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2479), 2, + ACTIONS(2463), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40878] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37048] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2259), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - STATE(1200), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2481), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(2251), 3, + ACTIONS(2465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40958] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37122] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1201), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2483), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2467), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41038] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37196] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1202), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2485), 2, + ACTIONS(2469), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41118] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37270] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2323), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2337), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2343), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1203), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2487), 2, + ACTIONS(2471), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41198] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37344] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - STATE(1204), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2489), 2, + ACTIONS(2473), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + anon_sym_RBRACE, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41278] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37418] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - STATE(1205), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2491), 2, + ACTIONS(2475), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + anon_sym_RBRACE, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41358] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37492] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1206), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2493), 2, + ACTIONS(2477), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41438] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37566] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - STATE(1207), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2445), 1, + anon_sym_SEMI, + ACTIONS(2479), 1, + anon_sym_COMMA, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2495), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41518] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37642] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1208), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2445), 1, + anon_sym_RPAREN, + ACTIONS(2481), 1, + anon_sym_COMMA, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2497), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41598] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37718] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - ACTIONS(2453), 1, - anon_sym_RPAREN, - ACTIONS(2499), 1, - anon_sym_COMMA, - STATE(1209), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2351), 3, + ACTIONS(2483), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41680] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37792] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1210), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2501), 2, + ACTIONS(2485), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41760] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37866] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1211), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2503), 2, + ACTIONS(2487), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41840] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2475), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1212), 1, - sym_text_interpolation, - STATE(1412), 1, - sym__const_declaration, - STATE(2600), 1, - sym_visibility_modifier, - ACTIONS(2477), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2473), 25, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [41890] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [37940] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1213), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2287), 1, + anon_sym_SLASH, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2505), 2, + ACTIONS(2489), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41970] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38014] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1214), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2507), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2491), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42050] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38088] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1215), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2493), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42130] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38162] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1216), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2511), 2, + ACTIONS(2495), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42210] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38236] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2465), 1, - anon_sym_EQ_GT, - ACTIONS(2513), 1, - anon_sym_RPAREN, - STATE(1217), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_CARET, + ACTIONS(2281), 1, + anon_sym_GT_EQ, + ACTIONS(2285), 1, + anon_sym_DOT, + ACTIONS(2287), 1, + anon_sym_SLASH, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42292] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38310] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2255), 1, + anon_sym_QMARK, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2263), 1, + aux_sym_binary_expression_token2, + ACTIONS(2265), 1, + aux_sym_binary_expression_token3, + ACTIONS(2267), 1, + aux_sym_binary_expression_token4, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2285), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2287), 1, anon_sym_SLASH, - ACTIONS(2363), 1, - anon_sym_QMARK, - ACTIONS(2365), 1, - aux_sym_binary_expression_token2, - ACTIONS(2367), 1, - aux_sym_binary_expression_token3, - ACTIONS(2369), 1, - aux_sym_binary_expression_token4, - STATE(1218), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2275), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2515), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2499), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42372] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38384] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2429), 1, - anon_sym_SEMI, - ACTIONS(2517), 1, - anon_sym_COMMA, - STATE(1219), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2449), 1, + anon_sym_EQ_GT, + ACTIONS(2501), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42454] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38460] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - STATE(1220), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2449), 1, + anon_sym_EQ_GT, + ACTIONS(2503), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2519), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42534] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38536] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1221), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2521), 2, + ACTIONS(2505), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42614] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38610] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2253), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2255), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2257), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2261), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2263), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2265), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2267), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, + ACTIONS(2273), 1, anon_sym_CARET, - ACTIONS(2301), 1, + ACTIONS(2281), 1, anon_sym_GT_EQ, - ACTIONS(2303), 1, + ACTIONS(2285), 1, anon_sym_DOT, - STATE(1222), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2287), 1, + anon_sym_SLASH, + ACTIONS(2259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2275), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2283), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2289), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2523), 2, + ACTIONS(2507), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2279), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2277), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42694] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38684] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2277), 1, - anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1223), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2401), 1, + anon_sym_RPAREN, + ACTIONS(2481), 1, + anon_sym_COMMA, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2325), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42774] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38760] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2429), 1, - anon_sym_RPAREN, - ACTIONS(2499), 1, - anon_sym_COMMA, - STATE(1224), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2351), 3, + ACTIONS(2509), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42856] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38834] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2337), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1225), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2527), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2155), 3, + ACTIONS(2511), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42936] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38908] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1226), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2529), 2, + ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43016] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [38982] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2517), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1393), 1, + sym__const_declaration, + STATE(2554), 1, + sym_visibility_modifier, + ACTIONS(2519), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2515), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [39026] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2319), 1, anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2353), 1, - anon_sym_GT_EQ, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - STATE(1227), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2531), 2, + ACTIONS(2521), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43096] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39100] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, - aux_sym_binary_expression_token2, - ACTIONS(2237), 1, - aux_sym_binary_expression_token3, - ACTIONS(2239), 1, - aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2253), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2257), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2259), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - STATE(1228), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2243), 1, + anon_sym_QMARK, + ACTIONS(2245), 1, + aux_sym_binary_expression_token2, + ACTIONS(2247), 1, + aux_sym_binary_expression_token3, + ACTIONS(2249), 1, + aux_sym_binary_expression_token4, + ACTIONS(2401), 1, + anon_sym_SEMI, + ACTIONS(2479), 1, + anon_sym_COMMA, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2533), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2251), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43176] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39176] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2335), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2339), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - STATE(1229), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2535), 2, + ACTIONS(2523), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + anon_sym_EQ_GT, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43256] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39250] = 22, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2465), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2449), 1, anon_sym_EQ_GT, - ACTIONS(2537), 1, + ACTIONS(2525), 1, anon_sym_RPAREN, - STATE(1230), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43338] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39326] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2319), 1, anon_sym_AMP, - ACTIONS(2227), 1, - anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, + anon_sym_GT_EQ, + ACTIONS(2335), 1, + anon_sym_DOT, + ACTIONS(2337), 1, + anon_sym_SLASH, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP_AMP, + ACTIONS(2349), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, - anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2453), 1, - anon_sym_SEMI, - ACTIONS(2517), 1, - anon_sym_COMMA, - STATE(1231), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2527), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43420] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39400] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2279), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2281), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2285), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2287), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2289), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1232), 1, - sym_text_interpolation, - ACTIONS(2267), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2269), 2, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2273), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2539), 2, - sym__automatic_semicolon, + ACTIONS(2529), 2, anon_sym_SEMI, - ACTIONS(2299), 3, + anon_sym_COLON, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2297), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43500] = 24, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39474] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2319), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, + ACTIONS(2331), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2337), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2341), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2343), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2345), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2347), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2349), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2351), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2353), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2355), 1, aux_sym_binary_expression_token4, - ACTIONS(2465), 1, - anon_sym_EQ_GT, - ACTIONS(2541), 1, - anon_sym_RPAREN, - STATE(1233), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2321), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2325), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2333), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2339), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2531), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2329), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2327), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43582] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39548] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_SLASH, - ACTIONS(2275), 1, - anon_sym_AMP, - ACTIONS(2277), 1, + ACTIONS(2517), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1385), 1, + sym__const_declaration, + STATE(2554), 1, + sym_visibility_modifier, + ACTIONS(2519), 3, + anon_sym_BSLASH, anon_sym_QMARK, - ACTIONS(2279), 1, - anon_sym_PIPE, - ACTIONS(2281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2283), 1, - aux_sym_binary_expression_token2, - ACTIONS(2285), 1, - aux_sym_binary_expression_token3, - ACTIONS(2287), 1, - aux_sym_binary_expression_token4, - ACTIONS(2289), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2291), 1, - anon_sym_AMP_AMP, - ACTIONS(2293), 1, - anon_sym_CARET, - ACTIONS(2301), 1, - anon_sym_GT_EQ, - ACTIONS(2303), 1, - anon_sym_DOT, - STATE(1234), 1, - sym_text_interpolation, - ACTIONS(2267), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2273), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2295), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2299), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2297), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43662] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_DOLLAR, + ACTIONS(2515), 24, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_string, + anon_sym_int, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [39592] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2341), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP_AMP, - ACTIONS(2345), 1, + ACTIONS(2135), 1, anon_sym_CARET, - ACTIONS(2353), 1, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2357), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2363), 1, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2367), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2369), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - STATE(1235), 1, - sym_text_interpolation, - ACTIONS(2337), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2533), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2347), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2355), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2361), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2545), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2351), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2349), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43742] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39665] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2547), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2535), 1, anon_sym_RBRACE, - STATE(1236), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43821] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39738] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2549), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1237), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2537), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43900] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39811] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2551), 1, - anon_sym_RBRACK, - STATE(1238), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2539), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43979] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39884] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2553), 1, - anon_sym_COLON, - STATE(1239), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2541), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44058] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [39957] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2555), 1, - anon_sym_RPAREN, - STATE(1240), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2543), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44137] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40030] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2557), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2545), 1, anon_sym_RBRACE, - STATE(1241), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44216] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [40103] = 14, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1679), 1, + ACTIONS(1665), 1, anon_sym_QMARK, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(1242), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(2014), 1, + STATE(2050), 1, sym_variable_name, - STATE(2355), 1, + STATE(2198), 1, sym__type, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1669), 2, + STATE(1631), 2, sym_union_type, sym_intersection_type, - STATE(1619), 3, + STATE(1526), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -113734,3736 +109383,3355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [44283] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40162] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2559), 1, - anon_sym_RBRACE, - STATE(1243), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2547), 1, + anon_sym_EQ_GT, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44362] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40235] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2561), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2549), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44441] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40308] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2553), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2551), 26, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [40345] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2563), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2555), 1, anon_sym_RBRACE, - STATE(1245), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44520] = 24, - ACTIONS(5), 1, + [40418] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2557), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2560), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, + ACTIONS(2563), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2567), 1, + ACTIONS(2566), 1, anon_sym_RBRACE, - ACTIONS(2569), 1, + ACTIONS(2568), 1, aux_sym_enum_case_token1, ACTIONS(2571), 1, aux_sym_final_modifier_token1, - ACTIONS(2573), 1, + ACTIONS(2574), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, - aux_sym_readonly_modifier_token1, ACTIONS(2577), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2580), 1, sym_var_modifier, - STATE(1246), 1, - sym_text_interpolation, - STATE(1305), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1342), 1, + ACTIONS(2586), 1, + anon_sym_POUND_LBRACK, + STATE(1330), 1, sym_attribute_list, - STATE(1344), 1, - aux_sym_property_declaration_repeat1, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1409), 1, - sym__enum_member_declaration, - STATE(1455), 1, - sym__modifier, - STATE(1896), 1, + STATE(1789), 1, sym__function_definition_header, - ACTIONS(2579), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2583), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1408), 3, + STATE(1241), 5, + sym__enum_member_declaration, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1454), 5, + aux_sym_enum_declaration_list_repeat1, + STATE(1333), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, sym_visibility_modifier, - [44601] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_property_declaration_repeat1, + [40483] = 14, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1665), 1, anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - ACTIONS(2581), 1, - anon_sym_RBRACE, - STATE(1247), 1, - sym_text_interpolation, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2155), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44680] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(1506), 1, + sym_qualified_name, + STATE(1968), 1, + sym_variable_name, + STATE(2313), 1, + sym__type, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1631), 2, + sym_union_type, + sym_intersection_type, + STATE(1526), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, + anon_sym_string, + anon_sym_int, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + [40542] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - ACTIONS(2583), 1, - anon_sym_RPAREN, - STATE(1248), 1, - sym_text_interpolation, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2155), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [44759] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2585), 1, - anon_sym_RBRACE, - STATE(1249), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2555), 1, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44838] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40615] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2589), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2591), 1, + anon_sym_RBRACE, + ACTIONS(2593), 1, + aux_sym_enum_case_token1, + ACTIONS(2595), 1, + aux_sym_final_modifier_token1, + ACTIONS(2597), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2599), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2601), 1, + sym_var_modifier, + STATE(1330), 1, + sym_attribute_list, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2603), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1276), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1333), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [40680] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2367), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2589), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2593), 1, + aux_sym_enum_case_token1, + ACTIONS(2595), 1, + aux_sym_final_modifier_token1, + ACTIONS(2597), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2599), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2601), 1, + sym_var_modifier, + ACTIONS(2605), 1, + anon_sym_RBRACE, + STATE(1330), 1, + sym_attribute_list, + STATE(1789), 1, + sym__function_definition_header, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2603), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1241), 5, + sym__enum_member_declaration, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + aux_sym_enum_declaration_list_repeat1, + STATE(1333), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [40745] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2587), 1, - anon_sym_RBRACK, - STATE(1250), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2607), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44917] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40818] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2589), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2609), 1, anon_sym_RBRACE, - STATE(1251), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44996] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40891] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2591), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2611), 1, anon_sym_RBRACE, - STATE(1252), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45075] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [40964] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - aux_sym_binary_expression_token2, - ACTIONS(2189), 1, - aux_sym_binary_expression_token3, - ACTIONS(2191), 1, - aux_sym_binary_expression_token4, - ACTIONS(2593), 1, - anon_sym_RBRACE, - STATE(1253), 1, - sym_text_interpolation, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2155), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2153), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [45154] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2157), 1, + ACTIONS(2233), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2237), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2239), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2595), 1, - anon_sym_RBRACE, - STATE(1254), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2613), 1, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45233] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41037] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2597), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2615), 1, anon_sym_RBRACE, - STATE(1255), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45312] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41110] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2591), 1, - anon_sym_RBRACK, - STATE(1256), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45391] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41183] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2599), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1257), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45470] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41256] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2601), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1258), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2619), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45549] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41329] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2603), 1, - anon_sym_RPAREN, - STATE(1259), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45628] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41402] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2605), 1, - anon_sym_RBRACK, - STATE(1260), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2623), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45707] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41475] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2607), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2625), 1, anon_sym_RBRACE, - STATE(1261), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45786] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41548] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2609), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2627), 1, anon_sym_RBRACE, - STATE(1262), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45865] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41621] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2611), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2629), 1, anon_sym_RBRACE, - STATE(1263), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45944] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41694] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2613), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2631), 1, anon_sym_RBRACE, - STATE(1264), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46023] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41767] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2615), 1, - anon_sym_RBRACE, - STATE(1265), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2633), 1, + anon_sym_EQ_GT, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46102] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41840] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2605), 1, - anon_sym_RBRACE, - STATE(1266), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2635), 1, + anon_sym_EQ_GT, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46181] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41913] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2135), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2587), 1, - anon_sym_RBRACE, - STATE(1267), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2637), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46260] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1268), 1, - sym_text_interpolation, - ACTIONS(2619), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2617), 27, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_string, - anon_sym_int, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [46303] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [41986] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2621), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2639), 1, anon_sym_RBRACE, - STATE(1269), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46382] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42059] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2623), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2641), 1, anon_sym_RBRACE, - STATE(1270), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46461] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42132] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2625), 1, - anon_sym_RBRACE, - STATE(1271), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2643), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46540] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42205] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2627), 1, - anon_sym_EQ_GT, - STATE(1272), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2645), 1, + anon_sym_COLON, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46619] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42278] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2629), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2647), 1, anon_sym_RBRACE, - STATE(1273), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46698] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42351] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2631), 1, - anon_sym_RBRACE, - STATE(1274), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2649), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46777] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42424] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2551), 1, - anon_sym_RBRACE, - STATE(1275), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2651), 1, + anon_sym_COLON, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46856] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42497] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2239), 1, + anon_sym_SLASH, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2633), 1, - anon_sym_RBRACE, - STATE(1276), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2653), 1, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46935] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42570] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2635), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2655), 1, anon_sym_RBRACE, - STATE(1277), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47014] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42643] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2637), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2657), 1, anon_sym_COLON, - STATE(1278), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47093] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42716] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2639), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2659), 1, anon_sym_RBRACE, - STATE(1279), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47172] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42789] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2641), 1, - anon_sym_RPAREN, - STATE(1280), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2661), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47251] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [42862] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2643), 1, - anon_sym_RBRACE, - STATE(1281), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_RPAREN, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47330] = 23, - ACTIONS(5), 1, + [42935] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2645), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2648), 1, + ACTIONS(107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2367), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2651), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2654), 1, - anon_sym_RBRACE, - ACTIONS(2656), 1, + ACTIONS(2589), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2593), 1, aux_sym_enum_case_token1, - ACTIONS(2659), 1, + ACTIONS(2595), 1, aux_sym_final_modifier_token1, - ACTIONS(2662), 1, + ACTIONS(2597), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2665), 1, + ACTIONS(2599), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2668), 1, + ACTIONS(2601), 1, sym_var_modifier, - ACTIONS(2674), 1, - anon_sym_POUND_LBRACK, - STATE(1342), 1, + ACTIONS(2665), 1, + anon_sym_RBRACE, + STATE(1330), 1, sym_attribute_list, - STATE(1344), 1, - aux_sym_property_declaration_repeat1, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1409), 1, - sym__enum_member_declaration, - STATE(1455), 1, - sym__modifier, - STATE(1896), 1, + STATE(1789), 1, sym__function_definition_header, - STATE(1282), 2, - sym_text_interpolation, - aux_sym_enum_declaration_list_repeat1, - ACTIONS(2671), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2603), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1408), 3, + STATE(1241), 5, + sym__enum_member_declaration, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1454), 5, + aux_sym_enum_declaration_list_repeat1, + STATE(1333), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, sym_visibility_modifier, - [47409] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_property_declaration_repeat1, + [43000] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2677), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2667), 1, anon_sym_RBRACE, - STATE(1283), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47488] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43073] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, + ACTIONS(2165), 1, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2669), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2151), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2141), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2139), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [43146] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2679), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2671), 1, anon_sym_RBRACE, - STATE(1284), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47567] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2569), 1, - aux_sym_enum_case_token1, - ACTIONS(2571), 1, - aux_sym_final_modifier_token1, - ACTIONS(2573), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2577), 1, - sym_var_modifier, - ACTIONS(2681), 1, - anon_sym_RBRACE, - STATE(1282), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1285), 1, - sym_text_interpolation, - STATE(1342), 1, - sym_attribute_list, - STATE(1344), 1, - aux_sym_property_declaration_repeat1, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1409), 1, - sym__enum_member_declaration, - STATE(1455), 1, - sym__modifier, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2579), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1408), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1454), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [47648] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43219] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2683), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1286), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2673), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47727] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43292] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2239), 1, + anon_sym_SLASH, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2685), 1, - anon_sym_EQ_GT, - STATE(1287), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2673), 1, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47806] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43365] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2687), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2675), 1, anon_sym_RBRACE, - STATE(1288), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47885] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43438] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - STATE(1289), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2677), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47964] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43511] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2691), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2679), 1, anon_sym_RBRACE, - STATE(1290), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48043] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43584] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2693), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2681), 1, anon_sym_RBRACE, - STATE(1291), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48122] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43657] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2695), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2683), 1, anon_sym_RBRACE, - STATE(1292), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48201] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43730] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2687), 1, - anon_sym_RBRACK, - STATE(1293), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2685), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48280] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43803] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2697), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2687), 1, anon_sym_COLON, - STATE(1294), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48359] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43876] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2239), 1, + anon_sym_SLASH, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2699), 1, - anon_sym_RBRACE, - STATE(1295), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2543), 1, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48438] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [43949] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2701), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2689), 1, anon_sym_RBRACE, - STATE(1296), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48517] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44022] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2703), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2691), 1, anon_sym_RBRACE, - STATE(1297), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48596] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44095] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2705), 1, - anon_sym_COLON, - STATE(1298), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2653), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48675] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44168] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, - anon_sym_GT_EQ, - ACTIONS(2161), 1, - anon_sym_DOT, - ACTIONS(2163), 1, - anon_sym_SLASH, - ACTIONS(2169), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2221), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2223), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2225), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2233), 1, + anon_sym_GT_EQ, + ACTIONS(2237), 1, + anon_sym_DOT, + ACTIONS(2239), 1, + anon_sym_SLASH, + ACTIONS(2243), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2245), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2247), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2249), 1, aux_sym_binary_expression_token4, - ACTIONS(2707), 1, - anon_sym_RBRACE, - STATE(1299), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2537), 1, + anon_sym_RBRACK, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2231), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2229), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48754] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44241] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2709), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2693), 1, anon_sym_RBRACE, - STATE(1300), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48833] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44314] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2711), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1301), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48912] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44387] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2713), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2697), 1, anon_sym_RBRACE, - STATE(1302), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48991] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44460] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, - anon_sym_PIPE, - ACTIONS(2175), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_AMP_AMP, - ACTIONS(2181), 1, - anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2715), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2699), 1, anon_sym_RBRACE, - STATE(1303), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49070] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44533] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2131), 1, anon_sym_AMP, - ACTIONS(2227), 1, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2229), 1, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2233), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2235), 1, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2237), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2239), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2241), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2243), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2245), 1, - anon_sym_CARET, - ACTIONS(2253), 1, - anon_sym_GT_EQ, - ACTIONS(2257), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - anon_sym_SLASH, - ACTIONS(2703), 1, - anon_sym_RBRACK, - STATE(1304), 1, - sym_text_interpolation, - ACTIONS(2231), 2, + ACTIONS(2701), 1, + anon_sym_RBRACE, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2247), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2255), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2261), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2251), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2249), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49149] = 24, - ACTIONS(5), 1, + [44606] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, + ACTIONS(107), 1, anon_sym_POUND_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2367), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, + ACTIONS(2589), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2569), 1, + ACTIONS(2593), 1, aux_sym_enum_case_token1, - ACTIONS(2571), 1, + ACTIONS(2595), 1, aux_sym_final_modifier_token1, - ACTIONS(2573), 1, + ACTIONS(2597), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, + ACTIONS(2599), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2577), 1, + ACTIONS(2601), 1, sym_var_modifier, - ACTIONS(2717), 1, + ACTIONS(2703), 1, anon_sym_RBRACE, - STATE(1282), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1305), 1, - sym_text_interpolation, - STATE(1342), 1, + STATE(1330), 1, sym_attribute_list, - STATE(1344), 1, - aux_sym_property_declaration_repeat1, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1409), 1, - sym__enum_member_declaration, - STATE(1455), 1, - sym__modifier, - STATE(1896), 1, + STATE(1789), 1, sym__function_definition_header, - ACTIONS(2579), 3, + STATE(1335), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2603), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1408), 3, + STATE(1245), 5, + sym__enum_member_declaration, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1454), 5, + aux_sym_enum_declaration_list_repeat1, + STATE(1333), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, sym_visibility_modifier, - [49230] = 17, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1679), 1, - anon_sym_QMARK, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(1306), 1, - sym_text_interpolation, - STATE(1538), 1, - sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(2092), 1, - sym_variable_name, - STATE(2235), 1, - sym__type, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1669), 2, - sym_union_type, - sym_intersection_type, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [49297] = 23, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_property_declaration_repeat1, + [44671] = 21, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, + anon_sym_CARET, + ACTIONS(2143), 1, anon_sym_GT_EQ, - ACTIONS(2161), 1, + ACTIONS(2147), 1, anon_sym_DOT, - ACTIONS(2163), 1, + ACTIONS(2149), 1, anon_sym_SLASH, - ACTIONS(2169), 1, - anon_sym_AMP, - ACTIONS(2173), 1, + ACTIONS(2155), 1, + anon_sym_QMARK, + ACTIONS(2157), 1, anon_sym_PIPE, - ACTIONS(2175), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(2177), 1, + ACTIONS(2161), 1, + aux_sym_binary_expression_token2, + ACTIONS(2163), 1, + aux_sym_binary_expression_token3, + ACTIONS(2165), 1, + aux_sym_binary_expression_token4, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(2181), 1, + ACTIONS(2705), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2133), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2137), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2145), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2151), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2141), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2139), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [44744] = 21, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_AMP, + ACTIONS(2135), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2143), 1, + anon_sym_GT_EQ, + ACTIONS(2147), 1, + anon_sym_DOT, + ACTIONS(2149), 1, + anon_sym_SLASH, + ACTIONS(2155), 1, anon_sym_QMARK, - ACTIONS(2187), 1, + ACTIONS(2157), 1, + anon_sym_PIPE, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, aux_sym_binary_expression_token2, - ACTIONS(2189), 1, + ACTIONS(2163), 1, aux_sym_binary_expression_token3, - ACTIONS(2191), 1, + ACTIONS(2165), 1, aux_sym_binary_expression_token4, - ACTIONS(2719), 1, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2707), 1, anon_sym_RBRACE, - STATE(1307), 1, - sym_text_interpolation, - ACTIONS(2149), 2, + ACTIONS(2133), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2137), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 2, + ACTIONS(2145), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2165), 2, + ACTIONS(2151), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2155), 3, + ACTIONS(2141), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2153), 4, + ACTIONS(2139), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49376] = 24, - ACTIONS(5), 1, + [44817] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2377), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2569), 1, - aux_sym_enum_case_token1, - ACTIONS(2571), 1, - aux_sym_final_modifier_token1, - ACTIONS(2573), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2577), 1, - sym_var_modifier, - ACTIONS(2721), 1, - anon_sym_RBRACE, - STATE(1285), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1308), 1, - sym_text_interpolation, - STATE(1342), 1, - sym_attribute_list, - STATE(1344), 1, - aux_sym_property_declaration_repeat1, - STATE(1346), 1, - aux_sym_attribute_list_repeat1, - STATE(1352), 1, - sym_attribute_group, - STATE(1409), 1, - sym__enum_member_declaration, - STATE(1455), 1, - sym__modifier, - STATE(1896), 1, - sym__function_definition_header, - ACTIONS(2579), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1408), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1454), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [49457] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1309), 1, - sym_text_interpolation, - ACTIONS(2725), 2, + ACTIONS(2711), 3, anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2723), 26, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_string, - anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [49499] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1310), 1, - sym_text_interpolation, - ACTIONS(2729), 2, - anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2727), 26, + ACTIONS(2709), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_string, anon_sym_int, - aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -117471,7 +112739,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117484,19 +112751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49541] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [44853] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2731), 1, + ACTIONS(2713), 1, aux_sym_namespace_use_declaration_token3, - STATE(1311), 1, - sym_text_interpolation, - ACTIONS(2477), 2, + ACTIONS(2519), 3, anon_sym_BSLASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2473), 25, + ACTIONS(2515), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -117509,7 +112773,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117522,41 +112785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49585] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [44891] = 13, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(2715), 1, sym_name, - ACTIONS(1679), 1, + ACTIONS(2719), 1, anon_sym_QMARK, - ACTIONS(2733), 1, + ACTIONS(2721), 1, sym_bottom_type, - STATE(1312), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1684), 1, sym_qualified_name, - STATE(1550), 1, - sym__types, - STATE(2423), 1, + STATE(2054), 1, sym__type, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1669), 2, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(2075), 2, sym_union_type, sym_intersection_type, - STATE(1619), 3, + STATE(1513), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(2717), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117570,41 +112828,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [49649] = 16, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [44947] = 13, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(1665), 1, anon_sym_QMARK, - ACTIONS(2741), 1, + ACTIONS(2723), 1, sym_bottom_type, - STATE(1313), 1, - sym_text_interpolation, - STATE(1530), 1, - sym__types, - STATE(1725), 1, + STATE(1506), 1, sym_qualified_name, - STATE(2090), 1, + STATE(2375), 1, sym__type, - STATE(2615), 1, - sym_namespace_name, - STATE(2616), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2115), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1631), 2, sym_union_type, sym_intersection_type, - STATE(1722), 3, + STATE(1526), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2737), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117618,22 +112871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [49713] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [45003] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1314), 1, - sym_text_interpolation, - ACTIONS(2477), 2, + ACTIONS(2727), 3, anon_sym_BSLASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2473), 25, + ACTIONS(2725), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, anon_sym_string, anon_sym_int, + aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -117641,7 +112892,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117654,17 +112904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49754] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1315), 1, - sym_text_interpolation, - ACTIONS(2745), 2, + [45039] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2731), 3, anon_sym_BSLASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2743), 25, + ACTIONS(2729), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -117677,7 +112924,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117690,17 +112936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49795] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1316), 1, - sym_text_interpolation, - ACTIONS(2749), 2, + [45074] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 3, anon_sym_BSLASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2747), 25, + ACTIONS(2733), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -117713,7 +112956,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117726,30 +112968,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49836] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1317), 1, - sym_text_interpolation, - ACTIONS(2753), 2, + [45109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym_POUND_LBRACK, + STATE(1309), 2, + sym_attribute_group, + aux_sym_attribute_list_repeat1, + ACTIONS(2739), 5, + anon_sym_AMP, anon_sym_BSLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2751), 25, - aux_sym_function_static_declaration_token1, + ACTIONS(2737), 18, aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, anon_sym_string, anon_sym_int, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117762,32 +113001,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49877] = 8, - ACTIONS(5), 1, + [45147] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1746), 1, + ACTIONS(1713), 1, anon_sym_POUND_LBRACK, - STATE(1318), 1, - sym_text_interpolation, - STATE(1319), 1, - aux_sym_attribute_list_repeat1, - STATE(1326), 1, + STATE(1309), 2, sym_attribute_group, - ACTIONS(2757), 4, + aux_sym_attribute_list_repeat1, + ACTIONS(2746), 5, anon_sym_AMP, anon_sym_BSLASH, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2755), 19, + ACTIONS(2744), 18, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117800,31 +113034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49923] = 7, - ACTIONS(5), 1, + [45185] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2763), 1, - anon_sym_POUND_LBRACK, - STATE(1326), 1, - sym_attribute_group, - STATE(1319), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat1, - ACTIONS(2761), 4, + ACTIONS(2750), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2759), 19, + ACTIONS(2748), 18, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -117837,34 +113063,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [49967] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45217] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1679), 1, + ACTIONS(1665), 1, anon_sym_QMARK, - STATE(1320), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1745), 1, - sym__types, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1619), 3, + STATE(1657), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117878,34 +113099,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50021] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45263] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2715), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(2719), 1, anon_sym_QMARK, - STATE(1321), 1, - sym_text_interpolation, - STATE(1725), 1, + STATE(1684), 1, sym_qualified_name, - STATE(1797), 1, - sym__types, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2616), 1, + STATE(2572), 1, sym_namespace_name_as_prefix, - STATE(1722), 3, + STATE(1722), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2737), 13, + ACTIONS(2717), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117919,34 +113135,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50075] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45309] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2715), 1, sym_name, - ACTIONS(2739), 1, + ACTIONS(2719), 1, anon_sym_QMARK, - STATE(1322), 1, - sym_text_interpolation, - STATE(1725), 1, + STATE(1684), 1, sym_qualified_name, - STATE(1796), 1, - sym__types, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2616), 1, + STATE(2572), 1, sym_namespace_name_as_prefix, - STATE(1722), 3, + STATE(1723), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2737), 13, + ACTIONS(2717), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -117960,34 +113171,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50129] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45355] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1679), 1, + ACTIONS(1665), 1, anon_sym_QMARK, - STATE(1323), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1601), 1, - sym__types, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1619), 3, + STATE(1563), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118001,60 +113207,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50183] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1324), 1, - sym_text_interpolation, - ACTIONS(2768), 5, - anon_sym_AMP, + [45401] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2766), 19, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - anon_sym_string, - anon_sym_int, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [50221] = 5, - ACTIONS(5), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1325), 1, - sym_text_interpolation, - ACTIONS(2772), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2770), 19, - aux_sym_namespace_definition_token1, + ACTIONS(1651), 1, + sym_name, + ACTIONS(1711), 1, + anon_sym_QMARK, + STATE(1506), 1, + sym_qualified_name, + STATE(2473), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1657), 4, + sym__types, + sym_named_type, + sym_optional_type, + sym_primitive_type, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -118066,28 +113243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - sym_name, - [50259] = 5, - ACTIONS(5), 1, + [45447] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1326), 1, - sym_text_interpolation, - ACTIONS(2776), 5, + ACTIONS(2754), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2774), 19, + ACTIONS(2752), 18, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -118100,75 +113272,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50297] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45479] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1711), 1, anon_sym_QMARK, - STATE(1327), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1601), 1, - sym__types, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, + STATE(2473), 1, sym_namespace_name_as_prefix, - STATE(1619), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - ACTIONS(1671), 13, - anon_sym_string, - anon_sym_int, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - [50351] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, - sym_name, - ACTIONS(1744), 1, - anon_sym_QMARK, - STATE(1328), 1, - sym_text_interpolation, - STATE(1538), 1, - sym_qualified_name, - STATE(1745), 1, - sym__types, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2648), 1, - sym_namespace_name_as_prefix, - STATE(1619), 3, + STATE(1563), 4, + sym__types, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118182,27 +113308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50405] = 5, - ACTIONS(5), 1, + [45525] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1329), 1, - sym_text_interpolation, - ACTIONS(2780), 5, + ACTIONS(2758), 6, anon_sym_AMP, anon_sym_BSLASH, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2778), 19, + ACTIONS(2756), 18, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -118215,29 +113337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50443] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45557] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(1651), 1, sym_name, - STATE(1330), 1, - sym_text_interpolation, - STATE(1725), 1, + STATE(1506), 1, sym_qualified_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2616), 1, + STATE(2473), 1, sym_namespace_name_as_prefix, - STATE(1657), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1562), 2, sym_named_type, sym_primitive_type, - ACTIONS(2737), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118251,29 +113369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50490] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45598] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - STATE(1331), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(2615), 1, - sym_namespace_name, - STATE(2648), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(1593), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(1562), 2, sym_named_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(1657), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118287,29 +113401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50537] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [45639] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(2715), 1, sym_name, - STATE(1332), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1684), 1, sym_qualified_name, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1593), 2, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1705), 2, sym_named_type, sym_primitive_type, - ACTIONS(1671), 13, + ACTIONS(2717), 13, anon_sym_string, anon_sym_int, anon_sym_array, @@ -118323,171 +113433,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50584] = 16, + [45680] = 13, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, - ACTIONS(2785), 1, + ACTIONS(2762), 1, sym_escape_sequence, - ACTIONS(2794), 1, + ACTIONS(2769), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2771), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2800), 1, + ACTIONS(2773), 1, sym_heredoc_end, - STATE(1341), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1351), 1, + STATE(1324), 1, + aux_sym_heredoc_body_repeat1, + STATE(1339), 1, sym__new_line, - STATE(1364), 1, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - ACTIONS(2791), 2, + ACTIONS(2766), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1333), 2, - sym_text_interpolation, - aux_sym_heredoc_body_repeat1, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2788), 4, + ACTIONS(2764), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50640] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1334), 1, - sym_text_interpolation, - ACTIONS(2725), 2, - anon_sym_BSLASH, - anon_sym_DOLLAR, - ACTIONS(2723), 18, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token3, - anon_sym_string, - anon_sym_int, - aux_sym_readonly_modifier_token1, - anon_sym_QMARK, - anon_sym_array, - aux_sym_primitive_type_token1, - anon_sym_iterable, - anon_sym_bool, - anon_sym_float, - anon_sym_void, - anon_sym_mixed, - anon_sym_static, - anon_sym_false, - anon_sym_null, - anon_sym_true, - sym_name, - [50674] = 17, + STATE(1331), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45728] = 13, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2775), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2778), 1, sym_escape_sequence, - ACTIONS(2811), 1, + ACTIONS(2787), 1, anon_sym_DOLLAR, - ACTIONS(2813), 1, + ACTIONS(2790), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2815), 1, + ACTIONS(2793), 1, sym_heredoc_end, - STATE(1333), 1, + STATE(1324), 1, aux_sym_heredoc_body_repeat1, - STATE(1335), 1, - sym_text_interpolation, - STATE(1341), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1351), 1, + STATE(1339), 1, sym__new_line, - STATE(1364), 1, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - ACTIONS(2808), 2, + ACTIONS(2784), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2806), 4, + ACTIONS(2781), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50732] = 16, + STATE(1331), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45776] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2711), 3, + anon_sym_BSLASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + ACTIONS(2709), 17, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token3, + anon_sym_string, + anon_sym_int, + aux_sym_readonly_modifier_token1, + anon_sym_array, + aux_sym_primitive_type_token1, + anon_sym_iterable, + anon_sym_bool, + anon_sym_float, + anon_sym_void, + anon_sym_mixed, + anon_sym_static, + anon_sym_false, + anon_sym_null, + anon_sym_true, + sym_name, + [45804] = 12, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2762), 1, sym_escape_sequence, - ACTIONS(2811), 1, + ACTIONS(2769), 1, anon_sym_DOLLAR, - ACTIONS(2813), 1, + ACTIONS(2771), 1, sym_encapsed_string_chars_heredoc, - STATE(1335), 1, + STATE(1323), 1, aux_sym_heredoc_body_repeat1, - STATE(1336), 1, - sym_text_interpolation, - STATE(1341), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1351), 1, + STATE(1339), 1, sym__new_line, - STATE(1364), 1, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - ACTIONS(2817), 2, + ACTIONS(2795), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2806), 4, + ACTIONS(2764), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50787] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1337), 1, - sym_text_interpolation, - ACTIONS(2753), 2, + STATE(1331), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45849] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 3, anon_sym_BSLASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2751), 17, + ACTIONS(2733), 16, aux_sym_namespace_definition_token1, anon_sym_string, anon_sym_int, aux_sym_class_declaration_token1, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -118500,277 +113585,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50820] = 18, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [45876] = 14, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2365), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2379), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2381), 1, + ACTIONS(2371), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2385), 1, + ACTIONS(2375), 1, aux_sym_final_modifier_token1, - ACTIONS(2387), 1, + ACTIONS(2377), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2389), 1, + ACTIONS(2379), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2391), 1, + ACTIONS(2797), 1, sym_var_modifier, - STATE(659), 1, - aux_sym_property_declaration_repeat1, - STATE(1212), 1, + STATE(1220), 1, sym_final_modifier, - STATE(1311), 1, + STATE(1303), 1, sym_visibility_modifier, - STATE(1316), 1, - sym__modifier, - STATE(1338), 1, - sym_text_interpolation, - STATE(1402), 1, + STATE(1392), 1, sym__const_declaration, - STATE(1790), 1, + STATE(1857), 1, sym__function_definition_header, - ACTIONS(2393), 3, + ACTIONS(2383), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1314), 3, + STATE(646), 5, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, - [50879] = 14, + aux_sym_property_declaration_repeat1, + [45925] = 11, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, - ACTIONS(2822), 1, - sym_escape_sequence, - ACTIONS(2830), 1, + ACTIONS(2769), 1, anon_sym_DOLLAR, - ACTIONS(2833), 1, + ACTIONS(2771), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2836), 1, + ACTIONS(2793), 1, sym_heredoc_end, - STATE(1364), 1, + ACTIONS(2799), 1, + sym_escape_sequence, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - ACTIONS(2828), 2, + ACTIONS(2801), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1339), 2, - sym_text_interpolation, - aux_sym__interpolated_string_body_heredoc, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2825), 4, + ACTIONS(2764), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50929] = 15, + STATE(1332), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [45967] = 11, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2369), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2589), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2595), 1, + aux_sym_final_modifier_token1, + ACTIONS(2597), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2599), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2803), 1, + aux_sym_enum_case_token1, + ACTIONS(2805), 1, + sym_var_modifier, + STATE(1857), 1, + sym__function_definition_header, + ACTIONS(2603), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1336), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [46009] = 11, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2800), 1, - sym_heredoc_end, - ACTIONS(2802), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, - sym_escape_sequence, - ACTIONS(2811), 1, + ACTIONS(2769), 1, anon_sym_DOLLAR, - ACTIONS(2813), 1, + ACTIONS(2771), 1, sym_encapsed_string_chars_heredoc, - STATE(1339), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1340), 1, - sym_text_interpolation, - STATE(1364), 1, + ACTIONS(2799), 1, + sym_escape_sequence, + ACTIONS(2809), 1, + sym_heredoc_end, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - ACTIONS(2838), 2, + ACTIONS(2807), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2806), 4, + ACTIONS(2764), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [50981] = 15, + STATE(1332), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46051] = 11, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2811), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2814), 1, sym_escape_sequence, - ACTIONS(2811), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR, - ACTIONS(2813), 1, + ACTIONS(2825), 1, sym_encapsed_string_chars_heredoc, - ACTIONS(2842), 1, + ACTIONS(2828), 1, sym_heredoc_end, - STATE(1339), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1341), 1, - sym_text_interpolation, - STATE(1364), 1, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - ACTIONS(2840), 2, + ACTIONS(2820), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2806), 4, + ACTIONS(2817), 4, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51033] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1332), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46093] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2379), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, + ACTIONS(2589), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2571), 1, + ACTIONS(2595), 1, aux_sym_final_modifier_token1, - ACTIONS(2573), 1, + ACTIONS(2597), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, + ACTIONS(2599), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2577), 1, + ACTIONS(2830), 1, sym_var_modifier, - ACTIONS(2844), 1, - aux_sym_enum_case_token1, - STATE(1342), 1, - sym_text_interpolation, - STATE(1343), 1, - aux_sym_property_declaration_repeat1, - STATE(1455), 1, - sym__modifier, - STATE(1790), 1, + STATE(1759), 1, sym__function_definition_header, - ACTIONS(2579), 3, + ACTIONS(2603), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1454), 5, + STATE(1338), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [51085] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2571), 1, - aux_sym_final_modifier_token1, - ACTIONS(2573), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2577), 1, - sym_var_modifier, - STATE(1343), 1, - sym_text_interpolation, - STATE(1347), 1, - aux_sym_property_declaration_repeat1, - STATE(1455), 1, sym__modifier, - STATE(1813), 1, - sym__function_definition_header, - ACTIONS(2579), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1454), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [51134] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2565), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2571), 1, - aux_sym_final_modifier_token1, - ACTIONS(2573), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2575), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2577), 1, - sym_var_modifier, - STATE(1344), 1, - sym_text_interpolation, - STATE(1347), 1, aux_sym_property_declaration_repeat1, - STATE(1455), 1, - sym__modifier, - STATE(1794), 1, - sym__function_definition_header, - ACTIONS(2579), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1454), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [51183] = 6, - ACTIONS(5), 1, + [46132] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(2846), 1, + ACTIONS(2832), 1, anon_sym_POUND_LBRACK, - STATE(1352), 1, + STATE(1334), 2, sym_attribute_group, - STATE(1345), 2, - sym_text_interpolation, aux_sym_attribute_list_repeat1, - ACTIONS(2761), 14, + ACTIONS(2739), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -118785,20 +113796,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [51216] = 7, - ACTIONS(5), 1, + [46159] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(296), 1, + ACTIONS(107), 1, anon_sym_POUND_LBRACK, - STATE(1345), 1, - aux_sym_attribute_list_repeat1, - STATE(1346), 1, - sym_text_interpolation, - STATE(1352), 1, + STATE(1334), 2, sym_attribute_group, - ACTIONS(2757), 14, + aux_sym_attribute_list_repeat1, + ACTIONS(2746), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -118813,53 +113819,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [51251] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [46186] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2314), 1, + ACTIONS(2369), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2849), 1, + ACTIONS(2589), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2852), 1, + ACTIONS(2595), 1, aux_sym_final_modifier_token1, - ACTIONS(2855), 1, + ACTIONS(2597), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2858), 1, + ACTIONS(2599), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2861), 1, + ACTIONS(2830), 1, sym_var_modifier, - STATE(1455), 1, - sym__modifier, - STATE(1347), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2864), 3, + STATE(1780), 1, + sym__function_definition_header, + ACTIONS(2603), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1454), 5, + STATE(1338), 7, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, + sym__modifier, sym_static_modifier, sym_visibility_modifier, - [51295] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_property_declaration_repeat1, + [46225] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1348), 1, - sym_text_interpolation, - ACTIONS(2867), 6, + ACTIONS(2835), 6, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_cast_type_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(1766), 10, + ACTIONS(1750), 10, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -118870,92 +113869,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [51325] = 4, - ACTIONS(5), 1, + [46249] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1349), 1, - sym_text_interpolation, - ACTIONS(2772), 15, - aux_sym_function_static_declaration_token1, + ACTIONS(2296), 1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - anon_sym_POUND_LBRACK, - [51352] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1350), 1, - sym_text_interpolation, - ACTIONS(2780), 15, + ACTIONS(2837), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - aux_sym_enum_declaration_token1, - aux_sym_enum_case_token1, - aux_sym_class_declaration_token1, + ACTIONS(2840), 1, aux_sym_final_modifier_token1, + ACTIONS(2843), 1, aux_sym_abstract_modifier_token1, + ACTIONS(2846), 1, aux_sym_readonly_modifier_token1, + ACTIONS(2849), 1, sym_var_modifier, + ACTIONS(2852), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - aux_sym__arrow_function_header_token1, - anon_sym_POUND_LBRACK, - [51379] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1338), 7, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym__modifier, + sym_static_modifier, + sym_visibility_modifier, + aux_sym_property_declaration_repeat1, + [46285] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2804), 1, - sym_escape_sequence, - ACTIONS(2806), 1, + ACTIONS(2764), 1, anon_sym_BSLASHu, - ACTIONS(2869), 1, + ACTIONS(2855), 1, anon_sym_LBRACE, - ACTIONS(2871), 1, + ACTIONS(2857), 1, + sym_escape_sequence, + ACTIONS(2859), 1, anon_sym_DOLLAR, - STATE(1340), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1351), 1, - sym_text_interpolation, - STATE(1364), 1, + STATE(1349), 1, sym_variable_name, - STATE(1423), 1, + STATE(1411), 1, sym__simple_string_member_access_expression, - STATE(1424), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1428), 2, - sym__complex_string_part, - sym__simple_string_part, - ACTIONS(2813), 4, + ACTIONS(2771), 4, sym_encapsed_string_chars_heredoc, anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51424] = 4, - ACTIONS(5), 1, + STATE(1329), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body_heredoc, + sym_dynamic_variable_name, + [46320] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1352), 1, - sym_text_interpolation, - ACTIONS(2776), 15, + ACTIONS(2758), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -118971,14 +113941,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51451] = 4, - ACTIONS(5), 1, + [46341] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1353), 1, - sym_text_interpolation, - ACTIONS(2768), 15, + ACTIONS(2750), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, @@ -118994,169 +113960,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51478] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(593), 1, - anon_sym_LT_LT_LT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2875), 1, - sym_integer, - STATE(1354), 1, - sym_text_interpolation, - STATE(2480), 1, - sym__string, - ACTIONS(589), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - ACTIONS(591), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(2873), 3, - sym_float, - sym_boolean, - sym_null, - STATE(740), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - [51516] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1355), 1, - sym_text_interpolation, - ACTIONS(2877), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51542] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym_LBRACE, - ACTIONS(2881), 1, - sym_escape_sequence, - ACTIONS(2883), 1, - anon_sym_BSLASHu, - ACTIONS(2887), 1, - anon_sym_DQUOTE, - ACTIONS(2889), 1, - anon_sym_DOLLAR, - STATE(1356), 1, - sym_text_interpolation, - STATE(1365), 1, - aux_sym__interpolated_string_body, - STATE(1439), 1, - sym_variable_name, - STATE(1559), 1, - sym__simple_string_member_access_expression, - ACTIONS(2885), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1525), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1560), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51588] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1357), 1, - sym_text_interpolation, - ACTIONS(996), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51614] = 5, + [46362] = 2, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1358), 1, - sym_text_interpolation, - ACTIONS(1564), 4, - sym_encapsed_string_chars_heredoc, - sym_encapsed_string_chars_after_variable_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(1566), 10, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [51642] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1359), 1, - sym_text_interpolation, - ACTIONS(1000), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51668] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1360), 1, - sym_text_interpolation, - ACTIONS(2891), 14, + ACTIONS(2754), 15, aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, + aux_sym_enum_declaration_token1, aux_sym_enum_case_token1, + aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119164,15 +113977,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, + aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [51694] = 4, - ACTIONS(5), 1, + [46383] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1361), 1, - sym_text_interpolation, - ACTIONS(2891), 14, + ACTIONS(2861), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119187,14 +113997,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51720] = 4, - ACTIONS(5), 1, + [46403] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1362), 1, - sym_text_interpolation, - ACTIONS(2893), 14, + ACTIONS(2863), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119209,47 +114015,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51746] = 4, - ACTIONS(5), 1, + [46423] = 7, + ACTIONS(591), 1, + anon_sym_LT_LT_LT, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1363), 1, - sym_text_interpolation, - ACTIONS(2895), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51772] = 8, + ACTIONS(2867), 1, + sym_integer, + ACTIONS(587), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + ACTIONS(589), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(2865), 3, + sym_float, + sym_boolean, + sym_null, + STATE(2435), 5, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + sym__string, + [46453] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(2899), 1, - anon_sym_DASH_GT, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2905), 1, - sym_encapsed_string_chars_after_variable_heredoc, - STATE(1364), 1, - sym_text_interpolation, - ACTIONS(2903), 3, + ACTIONS(1582), 4, sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(2897), 8, + ACTIONS(1584), 10, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_BSLASHu, anon_sym_SQUOTE, anon_sym_LT_QMARK, @@ -119257,112 +114057,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [51806] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [46475] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 1, - anon_sym_LBRACE, - ACTIONS(2881), 1, - sym_escape_sequence, - ACTIONS(2883), 1, - anon_sym_BSLASHu, - ACTIONS(2889), 1, - anon_sym_DOLLAR, - ACTIONS(2907), 1, - anon_sym_DQUOTE, - STATE(1365), 1, - sym_text_interpolation, - STATE(1370), 1, - aux_sym__interpolated_string_body, - STATE(1439), 1, - sym_variable_name, - STATE(1559), 1, - sym__simple_string_member_access_expression, - ACTIONS(2885), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1525), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1560), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [51852] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1366), 1, - sym_text_interpolation, - ACTIONS(2909), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51878] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1367), 1, - sym_text_interpolation, - ACTIONS(2911), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51904] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1368), 1, - sym_text_interpolation, - ACTIONS(2913), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [51930] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1369), 1, - sym_text_interpolation, - ACTIONS(2915), 14, + ACTIONS(2869), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119377,67 +114075,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [51956] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [46495] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - anon_sym_LBRACE, - ACTIONS(2920), 1, - sym_escape_sequence, - ACTIONS(2923), 1, - anon_sym_BSLASHu, - ACTIONS(2929), 1, - anon_sym_DQUOTE, - ACTIONS(2931), 1, - anon_sym_DOLLAR, - STATE(1439), 1, - sym_variable_name, - STATE(1559), 1, - sym__simple_string_member_access_expression, - ACTIONS(2926), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1370), 2, - sym_text_interpolation, - aux_sym__interpolated_string_body, - STATE(1525), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1560), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52000] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1371), 1, - sym_text_interpolation, - ACTIONS(2934), 14, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [52026] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1372), 1, - sym_text_interpolation, - ACTIONS(2936), 14, + ACTIONS(2871), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119452,78 +114093,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52052] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym_LBRACE, - ACTIONS(2881), 1, - sym_escape_sequence, - ACTIONS(2883), 1, - anon_sym_BSLASHu, - ACTIONS(2889), 1, - anon_sym_DOLLAR, - ACTIONS(2938), 1, - anon_sym_DQUOTE, - STATE(1370), 1, - aux_sym__interpolated_string_body, - STATE(1373), 1, - sym_text_interpolation, - STATE(1439), 1, - sym_variable_name, - STATE(1559), 1, - sym__simple_string_member_access_expression, - ACTIONS(2885), 2, - sym_encapsed_string_chars, - anon_sym_SQUOTE, - STATE(1525), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1560), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52098] = 14, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [46515] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 1, - anon_sym_LBRACE, + ACTIONS(2875), 1, + anon_sym_DASH_GT, + ACTIONS(2877), 1, + anon_sym_LBRACK, ACTIONS(2881), 1, + sym_encapsed_string_chars_after_variable_heredoc, + ACTIONS(2879), 3, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, sym_escape_sequence, - ACTIONS(2883), 1, + ACTIONS(2873), 8, + anon_sym_LBRACE, anon_sym_BSLASHu, - ACTIONS(2889), 1, - anon_sym_DOLLAR, - ACTIONS(2940), 1, - anon_sym_DQUOTE, - STATE(1373), 1, - aux_sym__interpolated_string_body, - STATE(1374), 1, - sym_text_interpolation, - STATE(1439), 1, - sym_variable_name, - STATE(1559), 1, - sym__simple_string_member_access_expression, - ACTIONS(2885), 2, - sym_encapsed_string_chars, anon_sym_SQUOTE, - STATE(1525), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1560), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52144] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1375), 1, - sym_text_interpolation, - ACTIONS(2936), 14, + anon_sym_LT_QMARK, + anon_sym_QMARK_GT2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + anon_sym_DOLLAR, + [46543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2883), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119538,14 +114133,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52170] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1376), 1, - sym_text_interpolation, - ACTIONS(2942), 14, + [46563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2861), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119560,14 +114151,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52196] = 4, - ACTIONS(5), 1, + [46583] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1377), 1, - sym_text_interpolation, - ACTIONS(2944), 14, + ACTIONS(2885), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119582,14 +114169,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52222] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1378), 1, - sym_text_interpolation, - ACTIONS(2877), 14, + [46603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119604,14 +114187,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52248] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1379), 1, - sym_text_interpolation, - ACTIONS(2909), 14, + [46623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119626,19 +114205,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52274] = 4, - ACTIONS(5), 1, + [46643] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1380), 1, - sym_text_interpolation, - ACTIONS(2946), 13, + ACTIONS(2891), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119647,19 +114223,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52299] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1381), 1, - sym_text_interpolation, - ACTIONS(1360), 13, + [46663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119668,19 +114241,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52324] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1382), 1, - sym_text_interpolation, - ACTIONS(1484), 13, + [46683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2893), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119689,19 +114259,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52349] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1383), 1, - sym_text_interpolation, - ACTIONS(1316), 13, + [46703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119710,19 +114277,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52374] = 4, - ACTIONS(5), 1, + [46723] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1384), 1, - sym_text_interpolation, - ACTIONS(2948), 13, + ACTIONS(2897), 1, + anon_sym_LBRACE, + ACTIONS(2899), 1, + sym_escape_sequence, + ACTIONS(2901), 1, + anon_sym_BSLASHu, + ACTIONS(2905), 1, + anon_sym_DQUOTE, + ACTIONS(2907), 1, + anon_sym_DOLLAR, + STATE(1432), 1, + sym_variable_name, + STATE(1530), 1, + sym__simple_string_member_access_expression, + ACTIONS(2903), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1362), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119731,17 +114321,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52399] = 4, - ACTIONS(5), 1, + [46779] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1385), 1, - sym_text_interpolation, - ACTIONS(2950), 13, + ACTIONS(2893), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, aux_sym_enum_case_token1, aux_sym_final_modifier_token1, @@ -119752,48 +114339,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52424] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [46799] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2897), 1, anon_sym_LBRACE, - ACTIONS(2958), 1, + ACTIONS(2901), 1, anon_sym_BSLASHu, - ACTIONS(2961), 1, - anon_sym_BQUOTE, - ACTIONS(2963), 1, + ACTIONS(2907), 1, anon_sym_DOLLAR, - STATE(1478), 1, + ACTIONS(2909), 1, + sym_escape_sequence, + ACTIONS(2911), 1, + anon_sym_DQUOTE, + STATE(1432), 1, sym_variable_name, - STATE(1576), 1, + STATE(1530), 1, sym__simple_string_member_access_expression, - ACTIONS(2955), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1386), 2, - sym_text_interpolation, - aux_sym__interpolated_execution_operator_body, - STATE(1579), 2, + ACTIONS(2903), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1368), 5, sym__complex_string_part, + sym__simple_string_subscript_expression, sym__simple_string_part, - STATE(1604), 2, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [46855] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2897), 1, + anon_sym_LBRACE, + ACTIONS(2901), 1, + anon_sym_BSLASHu, + ACTIONS(2907), 1, + anon_sym_DOLLAR, + ACTIONS(2913), 1, + sym_escape_sequence, + ACTIONS(2915), 1, + anon_sym_DQUOTE, + STATE(1432), 1, + sym_variable_name, + STATE(1530), 1, + sym__simple_string_member_access_expression, + ACTIONS(2903), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1367), 5, + sym__complex_string_part, sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [52465] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1387), 1, - sym_text_interpolation, - ACTIONS(2966), 13, + [46891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2917), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -119802,17 +114427,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52490] = 4, - ACTIONS(5), 1, + [46911] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1388), 1, - sym_text_interpolation, - ACTIONS(2968), 13, + ACTIONS(994), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, aux_sym_enum_case_token1, aux_sym_final_modifier_token1, @@ -119823,73 +114445,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52515] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [46931] = 10, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2970), 1, + ACTIONS(2897), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2901), 1, anon_sym_BSLASHu, - ACTIONS(2976), 1, - anon_sym_BQUOTE, - ACTIONS(2978), 1, + ACTIONS(2907), 1, anon_sym_DOLLAR, - STATE(1389), 1, - sym_text_interpolation, - STATE(1399), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1478), 1, + ACTIONS(2909), 1, + sym_escape_sequence, + ACTIONS(2919), 1, + anon_sym_DQUOTE, + STATE(1432), 1, sym_variable_name, - STATE(1576), 1, + STATE(1530), 1, sym__simple_string_member_access_expression, - ACTIONS(2972), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1579), 2, + ACTIONS(2903), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1368), 5, sym__complex_string_part, + sym__simple_string_subscript_expression, sym__simple_string_part, - STATE(1604), 2, + aux_sym__interpolated_string_body, + sym_dynamic_variable_name, + [46967] = 10, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2924), 1, + sym_escape_sequence, + ACTIONS(2927), 1, + anon_sym_BSLASHu, + ACTIONS(2933), 1, + anon_sym_DQUOTE, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + STATE(1432), 1, + sym_variable_name, + STATE(1530), 1, + sym__simple_string_member_access_expression, + ACTIONS(2930), 2, + sym_encapsed_string_chars, + anon_sym_SQUOTE, + STATE(1368), 5, + sym__complex_string_part, sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [52558] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, + [47003] = 10, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(2938), 1, sym_name, - ACTIONS(2986), 1, + ACTIONS(2944), 1, anon_sym_BSLASH, - STATE(1390), 1, - sym_text_interpolation, - STATE(1773), 1, + STATE(1729), 1, sym_namespace_use_clause, - STATE(2596), 1, + STATE(2553), 1, sym_namespace_name, - STATE(2616), 1, + STATE(2572), 1, sym_namespace_name_as_prefix, - ACTIONS(2984), 2, + ACTIONS(2942), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - STATE(1751), 2, + STATE(1710), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52599] = 4, - ACTIONS(5), 1, + [47038] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1391), 1, - sym_text_interpolation, - ACTIONS(2988), 13, + ACTIONS(2946), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119903,44 +114556,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52624] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [47076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47095] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2970), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2956), 1, anon_sym_BSLASHu, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(2958), 1, anon_sym_BQUOTE, - STATE(1392), 1, - sym_text_interpolation, - STATE(1400), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1478), 1, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + STATE(1435), 1, sym_variable_name, - STATE(1576), 1, + STATE(1604), 1, sym__simple_string_member_access_expression, - ACTIONS(2972), 2, + ACTIONS(2954), 2, sym_execution_string_chars, sym_escape_sequence, - STATE(1579), 2, + STATE(1374), 5, sym__complex_string_part, + sym__simple_string_subscript_expression, sym__simple_string_part, - STATE(1604), 2, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47128] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(2964), 1, + anon_sym_BSLASHu, + ACTIONS(2966), 1, + anon_sym_BQUOTE, + STATE(1435), 1, + sym_variable_name, + STATE(1604), 1, + sym__simple_string_member_access_expression, + ACTIONS(2962), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1394), 5, + sym__complex_string_part, sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [52667] = 4, - ACTIONS(5), 1, + [47161] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1393), 1, - sym_text_interpolation, - ACTIONS(2992), 13, + ACTIONS(2968), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119954,14 +114638,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52692] = 4, - ACTIONS(5), 1, + [47180] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1394), 1, - sym_text_interpolation, - ACTIONS(2994), 13, + ACTIONS(2970), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119975,14 +114655,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52717] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1395), 1, - sym_text_interpolation, - ACTIONS(2996), 13, + [47199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -119996,14 +114672,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52742] = 4, - ACTIONS(5), 1, + [47218] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1396), 1, - sym_text_interpolation, - ACTIONS(2998), 13, + ACTIONS(2974), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120017,14 +114689,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52767] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1397), 1, - sym_text_interpolation, - ACTIONS(3000), 13, + [47237] = 13, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2375), 1, + aux_sym_final_modifier_token1, + ACTIONS(2377), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2976), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2978), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2980), 1, + aux_sym_enum_declaration_token1, + ACTIONS(2982), 1, + aux_sym_class_declaration_token1, + ACTIONS(2984), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2986), 1, + aux_sym__arrow_function_header_token1, + STATE(2215), 1, + sym__function_definition_header, + STATE(2493), 1, + sym_static_modifier, + STATE(2494), 1, + sym_readonly_modifier, + STATE(1884), 2, + sym_final_modifier, + sym_abstract_modifier, + [47278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120038,19 +114734,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52792] = 4, - ACTIONS(5), 1, + [47297] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1398), 1, - sym_text_interpolation, - ACTIONS(3002), 13, + ACTIONS(2988), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, - aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -120059,103 +114751,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52817] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2970), 1, - anon_sym_LBRACE, - ACTIONS(2974), 1, - anon_sym_BSLASHu, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(3004), 1, - anon_sym_BQUOTE, - STATE(1386), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1399), 1, - sym_text_interpolation, - STATE(1478), 1, - sym_variable_name, - STATE(1576), 1, - sym__simple_string_member_access_expression, - ACTIONS(2972), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1579), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1604), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52860] = 13, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2970), 1, - anon_sym_LBRACE, - ACTIONS(2974), 1, - anon_sym_BSLASHu, - ACTIONS(2978), 1, - anon_sym_DOLLAR, - ACTIONS(3006), 1, - anon_sym_BQUOTE, - STATE(1386), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1400), 1, - sym_text_interpolation, - STATE(1478), 1, - sym_variable_name, - STATE(1576), 1, - sym__simple_string_member_access_expression, - ACTIONS(2972), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1579), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1604), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52903] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, + [47316] = 10, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(2938), 1, sym_name, - ACTIONS(3010), 1, + ACTIONS(2992), 1, anon_sym_BSLASH, - STATE(1401), 1, - sym_text_interpolation, - STATE(1831), 1, + STATE(1785), 1, sym_namespace_use_clause, - STATE(2552), 1, + STATE(2506), 1, sym_namespace_name, - STATE(2616), 1, + STATE(2572), 1, sym_namespace_name_as_prefix, - ACTIONS(3008), 2, + ACTIONS(2990), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - STATE(1751), 2, + STATE(1710), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52944] = 4, - ACTIONS(5), 1, + [47351] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1402), 1, - sym_text_interpolation, - ACTIONS(3012), 13, + ACTIONS(2994), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120169,14 +114793,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52969] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1403), 1, - sym_text_interpolation, - ACTIONS(3014), 13, + [47370] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(2998), 1, + anon_sym_BSLASHu, + ACTIONS(3000), 1, + anon_sym_BQUOTE, + STATE(1435), 1, + sym_variable_name, + STATE(1604), 1, + sym__simple_string_member_access_expression, + ACTIONS(2996), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1391), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3002), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120190,14 +114834,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52994] = 4, - ACTIONS(5), 1, + [47422] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1404), 1, - sym_text_interpolation, - ACTIONS(3016), 13, + ACTIONS(1190), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120211,19 +114851,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53019] = 4, - ACTIONS(5), 1, + [47441] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1405), 1, - sym_text_interpolation, - ACTIONS(3018), 13, + ACTIONS(3004), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -120232,78 +114868,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53044] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [47460] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, - aux_sym_final_modifier_token1, - ACTIONS(2387), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(3020), 1, + ACTIONS(3006), 13, aux_sym_function_static_declaration_token1, - ACTIONS(3022), 1, + aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, - ACTIONS(3024), 1, - aux_sym_enum_declaration_token1, - ACTIONS(3026), 1, - aux_sym_class_declaration_token1, - ACTIONS(3028), 1, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, - ACTIONS(3030), 1, - aux_sym__arrow_function_header_token1, - STATE(1406), 1, - sym_text_interpolation, - STATE(2258), 1, - sym__function_definition_header, - STATE(2535), 1, - sym_static_modifier, - STATE(2562), 1, - sym_readonly_modifier, - STATE(1915), 2, - sym_final_modifier, - sym_abstract_modifier, - [53091] = 15, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47479] = 13, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2375), 1, aux_sym_final_modifier_token1, - ACTIONS(2387), 1, + ACTIONS(2377), 1, aux_sym_abstract_modifier_token1, - ACTIONS(3020), 1, + ACTIONS(2976), 1, aux_sym_function_static_declaration_token1, - ACTIONS(3022), 1, + ACTIONS(2978), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(3028), 1, + ACTIONS(2984), 1, aux_sym_readonly_modifier_token1, - ACTIONS(3030), 1, + ACTIONS(2986), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3032), 1, + ACTIONS(3008), 1, aux_sym_enum_declaration_token1, - ACTIONS(3034), 1, + ACTIONS(3010), 1, aux_sym_class_declaration_token1, - STATE(1407), 1, - sym_text_interpolation, - STATE(2260), 1, + STATE(2354), 1, sym__function_definition_header, - STATE(2535), 1, + STATE(2493), 1, sym_static_modifier, - STATE(2536), 1, + STATE(2516), 1, sym_readonly_modifier, - STATE(1921), 2, + STATE(1879), 2, sym_final_modifier, sym_abstract_modifier, - [53138] = 4, - ACTIONS(5), 1, + [47520] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1408), 1, - sym_text_interpolation, - ACTIONS(3036), 13, + ACTIONS(3012), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120317,19 +114930,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53163] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1409), 1, - sym_text_interpolation, - ACTIONS(3038), 13, + [47539] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(2960), 1, + anon_sym_DOLLAR, + ACTIONS(2964), 1, + anon_sym_BSLASHu, + ACTIONS(3014), 1, + anon_sym_BQUOTE, + STATE(1435), 1, + sym_variable_name, + STATE(1604), 1, + sym__simple_string_member_access_expression, + ACTIONS(2962), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1394), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 13, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + anon_sym_RBRACE, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [47591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3018), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_RBRACE, - aux_sym_enum_case_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -120338,14 +114988,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53188] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1410), 1, - sym_text_interpolation, - ACTIONS(3040), 13, + [47610] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3020), 1, + anon_sym_LBRACE, + ACTIONS(3026), 1, + anon_sym_BSLASHu, + ACTIONS(3029), 1, + anon_sym_BQUOTE, + ACTIONS(3031), 1, + anon_sym_DOLLAR, + STATE(1435), 1, + sym_variable_name, + STATE(1604), 1, + sym__simple_string_member_access_expression, + ACTIONS(3023), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1394), 5, + sym__complex_string_part, + sym__simple_string_subscript_expression, + sym__simple_string_part, + aux_sym__interpolated_execution_operator_body, + sym_dynamic_variable_name, + [47643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120359,14 +115029,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53213] = 4, - ACTIONS(5), 1, + [47662] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1411), 1, - sym_text_interpolation, - ACTIONS(3042), 13, + ACTIONS(3036), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120380,14 +115046,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53238] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - STATE(1412), 1, - sym_text_interpolation, - ACTIONS(3044), 13, + [47681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 13, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -120401,252 +115063,175 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53263] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [47700] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3038), 1, sym_name, - ACTIONS(3050), 1, + ACTIONS(3042), 1, anon_sym_RBRACK, - STATE(1413), 1, - sym_text_interpolation, - STATE(2383), 1, + STATE(2340), 1, sym_attribute, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1783), 2, + STATE(1805), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53303] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [47734] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3038), 1, sym_name, - ACTIONS(3052), 1, + ACTIONS(3044), 1, anon_sym_RBRACK, - STATE(1414), 1, - sym_text_interpolation, - STATE(2383), 1, + STATE(2340), 1, sym_attribute, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1783), 2, + STATE(1805), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53343] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [47768] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3038), 1, sym_name, - ACTIONS(3054), 1, + ACTIONS(3046), 1, anon_sym_RBRACK, - STATE(1415), 1, - sym_text_interpolation, - STATE(2383), 1, + STATE(2340), 1, sym_attribute, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1783), 2, + STATE(1805), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53383] = 12, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [47802] = 10, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3038), 1, sym_name, - ACTIONS(3056), 1, + ACTIONS(3048), 1, anon_sym_RBRACK, - STATE(1416), 1, - sym_text_interpolation, - STATE(2383), 1, + STATE(2340), 1, sym_attribute, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1783), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53423] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2980), 1, - sym_name, - STATE(1417), 1, - sym_text_interpolation, - STATE(1953), 1, - sym_namespace_use_clause, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2616), 1, - sym_namespace_name_as_prefix, - STATE(1751), 2, + STATE(1805), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, - anon_sym_parent, - [53460] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(3058), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3060), 1, - aux_sym_use_instead_of_clause_token1, - STATE(592), 1, - sym_arguments, - STATE(1418), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53495] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1419), 1, - sym_text_interpolation, - ACTIONS(3064), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(3062), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - anon_sym_DOLLAR, - [53520] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_parent, + [47836] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - ACTIONS(1871), 1, - anon_sym_COLON_COLON, - ACTIONS(2745), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3066), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1420), 1, - sym_text_interpolation, - STATE(1779), 1, - sym_variable_name, - STATE(1828), 1, - sym_static_variable_declaration, - ACTIONS(1592), 5, - anon_sym_LBRACE, + ACTIONS(1524), 1, anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3050), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3052), 1, + aux_sym_use_instead_of_clause_token1, + STATE(581), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [53555] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, + [47865] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(3038), 1, + sym_name, + STATE(1878), 1, + sym_attribute, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1805), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [47896] = 9, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2938), 1, sym_name, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_BSLASH, - STATE(1421), 1, - sym_text_interpolation, - STATE(1840), 1, + STATE(1834), 1, sym_namespace_use_clause, - STATE(2527), 1, + STATE(2517), 1, sym_namespace_name, - STATE(2616), 1, + STATE(2572), 1, sym_namespace_name_as_prefix, - STATE(1751), 2, + STATE(1710), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53592] = 5, + [47927] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1422), 1, - sym_text_interpolation, - ACTIONS(3072), 3, + ACTIONS(3058), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3070), 8, + ACTIONS(3056), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120655,18 +115240,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53617] = 5, + [47946] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1423), 1, - sym_text_interpolation, - ACTIONS(3076), 3, + ACTIONS(3062), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3074), 8, + ACTIONS(3060), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120675,38 +115256,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53642] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + [47965] = 8, + ACTIONS(1506), 1, sym_comment, - STATE(1424), 1, - sym_text_interpolation, - ACTIONS(2903), 3, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - ACTIONS(2897), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, + ACTIONS(1667), 1, anon_sym_DOLLAR, - [53667] = 5, + ACTIONS(1819), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3064), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1720), 1, + sym_variable_name, + STATE(1782), 1, + sym_static_variable_declaration, + ACTIONS(1558), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [47994] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1425), 1, - sym_text_interpolation, - ACTIONS(3080), 3, + ACTIONS(3068), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3078), 8, + ACTIONS(3066), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120715,18 +115293,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53692] = 5, + [48013] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1426), 1, - sym_text_interpolation, - ACTIONS(3084), 3, + ACTIONS(1582), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3082), 8, + ACTIONS(1584), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120735,44 +115309,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53717] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + [48032] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, - sym_name, - STATE(1427), 1, - sym_text_interpolation, - STATE(1925), 1, - sym_attribute, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1783), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53754] = 5, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + ACTIONS(1819), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3064), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1720), 1, + sym_variable_name, + STATE(1745), 1, + sym_static_variable_declaration, + ACTIONS(1558), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48061] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1428), 1, - sym_text_interpolation, - ACTIONS(3088), 3, + ACTIONS(3072), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(3086), 8, + ACTIONS(3070), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120781,18 +115346,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53779] = 5, + [48080] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1429), 1, - sym_text_interpolation, - ACTIONS(1612), 3, + ACTIONS(3076), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1614), 8, + ACTIONS(3074), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120801,18 +115362,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53804] = 5, + [48099] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1430), 1, - sym_text_interpolation, - ACTIONS(2836), 3, + ACTIONS(1578), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(2828), 8, + ACTIONS(1580), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120821,18 +115378,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53829] = 5, + [48118] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1431), 1, - sym_text_interpolation, - ACTIONS(1604), 3, + ACTIONS(1562), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1606), 8, + ACTIONS(1564), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120841,95 +115394,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53854] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [48137] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3038), 1, sym_name, - STATE(1432), 1, - sym_text_interpolation, - STATE(1919), 1, + STATE(1892), 1, sym_attribute, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1783), 2, + STATE(1805), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48168] = 9, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2938), 1, + sym_name, + ACTIONS(3078), 1, + anon_sym_BSLASH, + STATE(1825), 1, + sym_namespace_use_clause, + STATE(2484), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1710), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53891] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [48199] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3038), 1, sym_name, - STATE(1433), 1, - sym_text_interpolation, - STATE(2383), 1, + STATE(2340), 1, sym_attribute, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1783), 2, + STATE(1805), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53928] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48230] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - ACTIONS(1871), 1, - anon_sym_COLON_COLON, - ACTIONS(2745), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3066), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1434), 1, - sym_text_interpolation, - STATE(1779), 1, - sym_variable_name, - STATE(1780), 1, - sym_static_variable_declaration, - ACTIONS(1592), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [53963] = 5, + ACTIONS(2938), 1, + sym_name, + STATE(1914), 1, + sym_namespace_use_clause, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1710), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2940), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48261] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - STATE(1435), 1, - sym_text_interpolation, - ACTIONS(1564), 3, + ACTIONS(2828), 3, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, - ACTIONS(1566), 8, + ACTIONS(2820), 8, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_SQUOTE, @@ -120938,132 +115498,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__new_line_token1, aux_sym__new_line_token2, anon_sym_DOLLAR, - [53988] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(555), 1, + [48280] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3080), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1558), 7, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48302] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2980), 1, + ACTIONS(3082), 1, sym_name, - ACTIONS(3090), 1, - anon_sym_BSLASH, - STATE(1436), 1, - sym_text_interpolation, - STATE(1880), 1, - sym_namespace_use_clause, - STATE(2563), 1, + STATE(2571), 1, sym_namespace_name, - STATE(2616), 1, + STATE(2572), 1, sym_namespace_name_as_prefix, - STATE(1751), 2, + STATE(1598), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54025] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [48330] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3084), 1, + anon_sym_COMMA, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(581), 1, + sym_arguments, + STATE(1932), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48356] = 8, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3088), 1, sym_name, - STATE(1437), 1, - sym_text_interpolation, - STATE(2615), 1, - sym_namespace_name, - STATE(2616), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(1825), 2, + STATE(2571), 1, + sym_namespace_name, + STATE(2094), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54059] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, - anon_sym_COMMA, - ACTIONS(1516), 1, + [48384] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - ACTIONS(3094), 1, + ACTIONS(3084), 1, + anon_sym_COMMA, + ACTIONS(3090), 1, anon_sym_RPAREN, - STATE(592), 1, + STATE(581), 1, sym_arguments, - STATE(1438), 1, - sym_text_interpolation, - STATE(2143), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1558), 5, + STATE(1996), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54091] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48410] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_BSLASHu, - ACTIONS(3096), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1775), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, - ACTIONS(3098), 1, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(3100), 1, - sym_encapsed_string_chars_after_variable, - STATE(1439), 1, - sym_text_interpolation, - ACTIONS(2903), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [54121] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48432] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_COLON_COLON, - ACTIONS(2745), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3102), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1440), 1, - sym_text_interpolation, - ACTIONS(1592), 7, + ACTIONS(3092), 1, + sym_name, + STATE(2571), 1, + sym_namespace_name, + STATE(2572), 1, + sym_namespace_name_as_prefix, + STATE(1771), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2940), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48460] = 7, + ACTIONS(833), 1, anon_sym_COMMA, - anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, anon_sym_LPAREN, + ACTIONS(3094), 1, anon_sym_RPAREN, + STATE(581), 1, + sym_arguments, + STATE(2104), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54149] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48486] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(1584), 1, anon_sym_BSLASHu, - STATE(1441), 1, - sym_text_interpolation, - ACTIONS(1564), 9, + ACTIONS(1582), 9, sym_encapsed_string_chars, sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, @@ -121073,298 +115664,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [54173] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48504] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - ACTIONS(3104), 1, + STATE(581), 1, + sym_arguments, + ACTIONS(1536), 3, anon_sym_COMMA, - ACTIONS(3106), 1, anon_sym_RPAREN, - STATE(592), 1, - sym_arguments, - STATE(1442), 1, - sym_text_interpolation, - STATE(2038), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1558), 5, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54205] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [48526] = 8, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(3096), 1, + sym_name, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + STATE(1924), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48554] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3098), 1, sym_name, - STATE(1443), 1, - sym_text_interpolation, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - STATE(1897), 2, + STATE(1731), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54239] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [48582] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2873), 1, + anon_sym_BSLASHu, + ACTIONS(3100), 1, + anon_sym_DASH_GT, + ACTIONS(3102), 1, + anon_sym_LBRACK, + ACTIONS(3104), 1, + sym_encapsed_string_chars_after_variable, + ACTIONS(2879), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [48606] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(581), 1, sym_arguments, - STATE(1444), 1, - sym_text_interpolation, - ACTIONS(1717), 3, + ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54267] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1445), 1, - sym_text_interpolation, - ACTIONS(3112), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(3110), 8, - anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, + [48627] = 7, + ACTIONS(1500), 1, anon_sym_DOLLAR, - [54291] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3114), 1, + ACTIONS(3106), 1, sym_name, - STATE(1446), 1, - sym_text_interpolation, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(2125), 2, - sym_qualified_name, + ACTIONS(3108), 1, + anon_sym_LBRACE, + STATE(833), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + STATE(767), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54325] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + [48652] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2873), 1, + anon_sym_BSLASHu, + ACTIONS(3110), 1, + anon_sym_DASH_GT, + ACTIONS(3112), 1, + anon_sym_LBRACK, + ACTIONS(3114), 1, + sym_execution_string_chars_after_variable, + ACTIONS(2879), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [48675] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2711), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [48690] = 6, + ACTIONS(1506), 1, sym_comment, + ACTIONS(1691), 1, + anon_sym_DOLLAR, ACTIONS(3116), 1, sym_name, - STATE(1447), 1, - sym_text_interpolation, - STATE(2615), 1, - sym_namespace_name, - STATE(2616), 1, - sym_namespace_name_as_prefix, - STATE(1575), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2982), 3, + ACTIONS(3118), 1, + anon_sym_LBRACE, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54359] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(827), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48713] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(581), 1, sym_arguments, - STATE(1448), 1, - sym_text_interpolation, - ACTIONS(1562), 3, + ACTIONS(2527), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54387] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + [48734] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(3120), 1, sym_name, - STATE(1449), 1, - sym_text_interpolation, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - STATE(1976), 2, - sym_qualified_name, + ACTIONS(3122), 1, + anon_sym_LBRACE, + ACTIONS(2940), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(804), 3, + sym_dynamic_variable_name, + sym_variable_name, sym__reserved_identifier, - ACTIONS(3048), 3, + [48757] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(3124), 1, + sym_name, + ACTIONS(3126), 1, + anon_sym_LBRACE, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54421] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(825), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48780] = 6, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(3104), 1, - anon_sym_COMMA, - ACTIONS(3120), 1, - anon_sym_RPAREN, - STATE(592), 1, - sym_arguments, - STATE(1450), 1, - sym_text_interpolation, - STATE(1980), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1558), 5, + ACTIONS(3128), 1, + sym_name, + ACTIONS(3132), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54453] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3130), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(766), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48803] = 7, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(3134), 1, + sym_name, + ACTIONS(3136), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym__reserved_identifier, + STATE(576), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48828] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(3122), 1, + ACTIONS(3138), 1, sym_name, - ACTIONS(3124), 1, + ACTIONS(3140), 1, anon_sym_LBRACE, - STATE(1451), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(698), 3, + STATE(824), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [48851] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2727), 9, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [48866] = 7, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_LBRACE, + ACTIONS(3142), 1, + sym_name, + STATE(1539), 1, + sym__reserved_identifier, + STATE(767), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48891] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3144), 1, + sym_name, + ACTIONS(3146), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym__reserved_identifier, + STATE(707), 2, sym_dynamic_variable_name, sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48916] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym_name, + ACTIONS(3150), 1, + anon_sym_LBRACE, + STATE(1522), 1, sym__reserved_identifier, - [54482] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1510), 1, + STATE(806), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [48941] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(3152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48962] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(581), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [48985] = 7, + ACTIONS(595), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3126), 1, + ACTIONS(3148), 1, sym_name, - ACTIONS(3128), 1, + ACTIONS(3150), 1, anon_sym_LBRACE, - STATE(825), 1, + STATE(1522), 1, sym__reserved_identifier, - STATE(1452), 1, - sym_text_interpolation, - STATE(775), 2, + STATE(1503), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2982), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54513] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49010] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(3130), 1, + ACTIONS(3154), 1, sym_name, - ACTIONS(3132), 1, + ACTIONS(3156), 1, anon_sym_LBRACE, - STATE(1453), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(710), 3, + STATE(698), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54542] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1454), 1, - sym_text_interpolation, - ACTIONS(2477), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54563] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1455), 1, - sym_text_interpolation, - ACTIONS(2749), 9, + [49033] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2735), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -121374,119 +116070,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54584] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(793), 1, - sym_arguments, - STATE(1456), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54613] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49048] = 6, + ACTIONS(1500), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(592), 1, - sym_arguments, - STATE(1457), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(3158), 1, + sym_name, + ACTIONS(3160), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54642] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3130), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(765), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [49071] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR, ACTIONS(3134), 1, sym_name, ACTIONS(3136), 1, anon_sym_LBRACE, - STATE(1458), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + STATE(674), 1, + sym__reserved_identifier, + STATE(830), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [49096] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(3162), 1, + sym_name, + ACTIONS(3164), 1, + anon_sym_LBRACE, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(718), 3, + STATE(837), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54671] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49119] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1648), 1, anon_sym_BSLASH, - ACTIONS(1687), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(750), 1, + STATE(892), 1, sym_arguments, - STATE(1459), 1, - sym_text_interpolation, - STATE(2254), 1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54700] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1460), 1, - sym_text_interpolation, - ACTIONS(2619), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [54721] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49142] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1648), 1, anon_sym_BSLASH, - STATE(1461), 1, - sym_text_interpolation, - STATE(2254), 1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3138), 7, + ACTIONS(3166), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -121494,76 +116154,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54746] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49161] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(1462), 1, - sym_text_interpolation, - ACTIONS(2485), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54773] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1504), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3140), 1, + ACTIONS(3168), 1, sym_name, - ACTIONS(3144), 1, + ACTIONS(3170), 1, anon_sym_LBRACE, - STATE(1463), 1, - sym_text_interpolation, - ACTIONS(3142), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(657), 3, + STATE(838), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54802] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1504), 1, + [49184] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 1, + anon_sym_BSLASHu, + ACTIONS(1582), 8, + sym_execution_string_chars, + sym_execution_string_chars_after_variable, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + sym_escape_sequence, + anon_sym_BQUOTE, anon_sym_DOLLAR, - ACTIONS(1516), 1, + [49201] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3146), 1, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3172), 1, sym_name, - ACTIONS(3148), 1, + ACTIONS(3174), 1, anon_sym_LBRACE, - STATE(1464), 1, - sym_text_interpolation, - ACTIONS(3142), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(655), 3, + STATE(708), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54831] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1465), 1, - sym_text_interpolation, - ACTIONS(2753), 9, + [49224] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2731), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -121573,14 +116215,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54852] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1466), 1, - sym_text_interpolation, - ACTIONS(2725), 9, + [49239] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2553), 9, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token2, aux_sym_final_modifier_token1, @@ -121590,19572 +116228,14271 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [54873] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49254] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(3150), 1, + ACTIONS(3134), 1, sym_name, - ACTIONS(3152), 1, + ACTIONS(3136), 1, anon_sym_LBRACE, - STATE(1467), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + STATE(674), 1, + sym__reserved_identifier, + STATE(682), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(686), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [54902] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, + [49279] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(3134), 1, sym_name, - ACTIONS(3156), 1, + ACTIONS(3136), 1, anon_sym_LBRACE, - STATE(672), 1, + STATE(674), 1, sym__reserved_identifier, - STATE(1468), 1, - sym_text_interpolation, - STATE(576), 2, + STATE(691), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54933] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49304] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(3158), 1, - sym_name, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1469), 1, - sym_text_interpolation, - STATE(1563), 1, - sym_reference_modifier, - STATE(1573), 1, - sym_formal_parameters, - STATE(2216), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [54966] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3162), 1, + ACTIONS(3176), 1, sym_name, - ACTIONS(3166), 1, + ACTIONS(3178), 1, anon_sym_LBRACE, - STATE(1470), 1, - sym_text_interpolation, - ACTIONS(3164), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(607), 3, + STATE(681), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [54995] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, + [49327] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_arguments, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49350] = 6, + ACTIONS(595), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3168), 1, + ACTIONS(3180), 1, sym_name, - ACTIONS(3170), 1, + ACTIONS(3182), 1, anon_sym_LBRACE, - STATE(1471), 1, - sym_text_interpolation, - ACTIONS(3164), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(606), 3, + STATE(572), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55024] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3172), 1, - sym_name, - ACTIONS(3174), 1, - anon_sym_LBRACE, - STATE(834), 1, - sym__reserved_identifier, - STATE(1472), 1, - sym_text_interpolation, - STATE(605), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2982), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55055] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49373] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1707), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(3176), 1, + ACTIONS(3184), 1, sym_name, - ACTIONS(3178), 1, + ACTIONS(3186), 1, anon_sym_LBRACE, - STATE(1473), 1, - sym_text_interpolation, - ACTIONS(2982), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(855), 3, + STATE(709), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55084] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49396] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(1877), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(801), 1, sym_arguments, - STATE(1474), 1, - sym_text_interpolation, - ACTIONS(2515), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55111] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49419] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(581), 1, sym_arguments, - STATE(1475), 1, - sym_text_interpolation, - ACTIONS(3180), 2, + ACTIONS(3188), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55138] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49440] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(3182), 1, - sym_name, - ACTIONS(3184), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(3190), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, - STATE(1476), 1, - sym_text_interpolation, - ACTIONS(2982), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(840), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55167] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1707), 1, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [49461] = 6, + ACTIONS(595), 1, anon_sym_DOLLAR, - ACTIONS(3186), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3192), 1, sym_name, - ACTIONS(3188), 1, + ACTIONS(3196), 1, anon_sym_LBRACE, - STATE(1477), 1, - sym_text_interpolation, - ACTIONS(2982), 3, + ACTIONS(3194), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(832), 3, + STATE(574), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55196] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_BSLASHu, - ACTIONS(3190), 1, - anon_sym_DASH_GT, - ACTIONS(3192), 1, - anon_sym_LBRACK, - ACTIONS(3194), 1, - sym_execution_string_chars_after_variable, - STATE(1478), 1, - sym_text_interpolation, - ACTIONS(2903), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [55225] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1566), 1, - anon_sym_BSLASHu, - STATE(1479), 1, - sym_text_interpolation, - ACTIONS(1564), 8, - sym_execution_string_chars, - sym_execution_string_chars_after_variable, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [55248] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1510), 1, + [49484] = 6, + ACTIONS(595), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3196), 1, + ACTIONS(3192), 1, sym_name, - ACTIONS(3200), 1, + ACTIONS(3196), 1, anon_sym_LBRACE, - STATE(1480), 1, - sym_text_interpolation, - ACTIONS(3198), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(773), 3, + STATE(574), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55277] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49507] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1707), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(3154), 1, + ACTIONS(3198), 1, sym_name, - ACTIONS(3156), 1, + ACTIONS(3200), 1, anon_sym_LBRACE, - STATE(672), 1, - sym__reserved_identifier, - STATE(1481), 1, - sym_text_interpolation, - STATE(828), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55308] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - ACTIONS(3154), 1, - sym_name, - ACTIONS(3156), 1, - anon_sym_LBRACE, - STATE(672), 1, - sym__reserved_identifier, - STATE(1482), 1, - sym_text_interpolation, - STATE(713), 2, + STATE(683), 3, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55339] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1483), 1, - sym_text_interpolation, - ACTIONS(2729), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [55360] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - ACTIONS(3154), 1, - sym_name, - ACTIONS(3156), 1, - anon_sym_LBRACE, - STATE(672), 1, sym__reserved_identifier, - STATE(1484), 1, - sym_text_interpolation, - STATE(709), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55391] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1510), 1, + [49530] = 6, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, ACTIONS(3202), 1, sym_name, - ACTIONS(3204), 1, + ACTIONS(3206), 1, anon_sym_LBRACE, - STATE(1485), 1, - sym_text_interpolation, - ACTIONS(3198), 3, + ACTIONS(3204), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(772), 3, + STATE(649), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55420] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(3158), 1, - sym_name, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1486), 1, - sym_text_interpolation, - STATE(1526), 1, - sym_reference_modifier, - STATE(1638), 1, - sym_formal_parameters, - STATE(2216), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55453] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(1487), 1, - sym_text_interpolation, - ACTIONS(2529), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55480] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1488), 1, - sym_text_interpolation, - ACTIONS(2745), 9, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [55501] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1707), 1, + [49553] = 7, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(3206), 1, - sym_name, + ACTIONS(1506), 1, + sym_comment, ACTIONS(3208), 1, + sym_name, + ACTIONS(3210), 1, anon_sym_LBRACE, - STATE(1489), 1, - sym_text_interpolation, - ACTIONS(2982), 3, + STATE(680), 1, + sym__reserved_identifier, + STATE(652), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(829), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55530] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, + [49578] = 6, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3210), 1, + ACTIONS(3212), 1, sym_name, ACTIONS(3214), 1, anon_sym_LBRACE, - STATE(1490), 1, - sym_text_interpolation, - ACTIONS(3212), 3, + ACTIONS(3204), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(579), 3, + STATE(653), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55559] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49601] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, ACTIONS(3216), 1, sym_name, ACTIONS(3218), 1, anon_sym_LBRACE, - STATE(1491), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(714), 3, + STATE(690), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55588] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49624] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1707), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(3220), 1, + ACTIONS(3134), 1, sym_name, - ACTIONS(3222), 1, + ACTIONS(3136), 1, anon_sym_LBRACE, - STATE(1492), 1, - sym_text_interpolation, - STATE(1539), 1, + STATE(674), 1, sym__reserved_identifier, - STATE(841), 2, + STATE(820), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55619] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1695), 1, + [49649] = 7, + ACTIONS(117), 1, anon_sym_DOLLAR, - ACTIONS(3224), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3220), 1, sym_name, - ACTIONS(3226), 1, + ACTIONS(3222), 1, anon_sym_LBRACE, - STATE(1493), 1, - sym_text_interpolation, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(682), 3, + STATE(849), 1, + sym__reserved_identifier, + STATE(596), 2, sym_dynamic_variable_name, sym_variable_name, - sym__reserved_identifier, - [55648] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3228), 1, - sym_name, - ACTIONS(3230), 1, - anon_sym_LBRACE, - STATE(1494), 1, - sym_text_interpolation, - ACTIONS(3212), 3, + ACTIONS(2940), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(575), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55677] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49674] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(3154), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3224), 1, sym_name, - ACTIONS(3156), 1, - anon_sym_LBRACE, - STATE(672), 1, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym_reference_modifier, + STATE(1591), 1, + sym_formal_parameters, + STATE(2172), 1, sym__reserved_identifier, - STATE(1495), 1, - sym_text_interpolation, - STATE(856), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55708] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(860), 1, - sym_arguments, - STATE(1496), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55737] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, + [49701] = 6, + ACTIONS(595), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(3180), 1, sym_name, - ACTIONS(3230), 1, + ACTIONS(3182), 1, anon_sym_LBRACE, - STATE(1497), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + ACTIONS(3194), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(575), 3, + STATE(572), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55766] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, + [49724] = 6, + ACTIONS(117), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3220), 1, + ACTIONS(3228), 1, sym_name, - ACTIONS(3222), 1, - anon_sym_LBRACE, - STATE(1498), 1, - sym_text_interpolation, - STATE(1539), 1, - sym__reserved_identifier, - STATE(1528), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55797] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR, ACTIONS(3232), 1, - sym_name, - ACTIONS(3234), 1, anon_sym_LBRACE, - STATE(1499), 1, - sym_text_interpolation, - ACTIONS(2982), 3, + ACTIONS(3230), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(814), 3, + STATE(599), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55826] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49747] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(1663), 1, + ACTIONS(1646), 1, anon_sym_LPAREN, - STATE(664), 1, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(661), 1, sym_arguments, - STATE(1500), 1, - sym_text_interpolation, - STATE(2254), 1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55855] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49770] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(581), 1, sym_arguments, - STATE(1501), 1, - sym_text_interpolation, - ACTIONS(3236), 2, + ACTIONS(2531), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, + anon_sym_RPAREN, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55882] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1707), 1, + [49791] = 6, + ACTIONS(117), 1, anon_sym_DOLLAR, - ACTIONS(3238), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3234), 1, sym_name, - ACTIONS(3240), 1, + ACTIONS(3236), 1, anon_sym_LBRACE, - STATE(1502), 1, - sym_text_interpolation, - ACTIONS(2982), 3, + ACTIONS(3230), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(831), 3, + STATE(598), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55911] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49814] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(581), 1, sym_arguments, - STATE(1503), 1, - sym_text_interpolation, - ACTIONS(2531), 2, + ACTIONS(2463), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55938] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1510), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3128), 1, - anon_sym_LBRACE, - ACTIONS(3242), 1, - sym_name, - STATE(1504), 1, - sym_text_interpolation, - STATE(1564), 1, - sym__reserved_identifier, - STATE(775), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55969] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3244), 1, - sym_name, - ACTIONS(3246), 1, - anon_sym_LBRACE, - STATE(1505), 1, - sym_text_interpolation, - STATE(1541), 1, - sym__reserved_identifier, - STATE(1546), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56000] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1504), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3248), 1, - sym_name, - ACTIONS(3250), 1, - anon_sym_LBRACE, - STATE(691), 1, - sym__reserved_identifier, - STATE(1506), 1, - sym_text_interpolation, - STATE(660), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56031] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49835] = 8, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, - anon_sym_DOLLAR, - ACTIONS(3244), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3224), 1, sym_name, - ACTIONS(3246), 1, - anon_sym_LBRACE, - STATE(1507), 1, - sym_text_interpolation, - STATE(1541), 1, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_reference_modifier, + STATE(1553), 1, + sym_formal_parameters, + STATE(2172), 1, sym__reserved_identifier, - STATE(699), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56062] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(1508), 1, - sym_text_interpolation, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56089] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, + [49862] = 7, + ACTIONS(595), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3210), 1, + ACTIONS(3144), 1, sym_name, - ACTIONS(3214), 1, + ACTIONS(3146), 1, anon_sym_LBRACE, - STATE(1509), 1, - sym_text_interpolation, - ACTIONS(3048), 3, + STATE(1518), 1, + sym__reserved_identifier, + STATE(1519), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(579), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56118] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1121), 1, - sym_declaration_list, - STATE(1510), 1, - sym_text_interpolation, - STATE(1584), 1, - sym_arguments, - STATE(1775), 1, - sym_base_clause, - STATE(2373), 1, - sym_class_interface_clause, - [56152] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, + [49887] = 9, + ACTIONS(27), 1, anon_sym_BSLASH, - ACTIONS(555), 1, + ACTIONS(553), 1, aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, + ACTIONS(1651), 1, sym_name, - STATE(1511), 1, - sym_text_interpolation, - STATE(1538), 1, + STATE(1506), 1, sym_qualified_name, - STATE(1817), 1, + STATE(1777), 1, sym_named_type, - STATE(2033), 1, + STATE(1988), 1, sym_type_list, - STATE(2454), 1, + STATE(2400), 1, sym_namespace_name_as_prefix, - STATE(2615), 1, + STATE(2571), 1, sym_namespace_name, - [56186] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, + [49915] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1665), 1, - sym_name, - STATE(1512), 1, - sym_text_interpolation, - STATE(1538), 1, - sym_qualified_name, - STATE(1817), 1, - sym_named_type, - STATE(2032), 1, - sym_type_list, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - [56220] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + STATE(937), 1, + sym_declaration_list, + STATE(1597), 1, + sym_arguments, + STATE(1781), 1, + sym_base_clause, + STATE(2331), 1, + sym_class_interface_clause, + [49943] = 5, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, ACTIONS(3094), 1, anon_sym_RPAREN, - STATE(1513), 1, - sym_text_interpolation, - STATE(2143), 1, + STATE(2104), 1, aux_sym__list_destructing_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56246] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3110), 1, - anon_sym_BSLASHu, - STATE(1514), 1, - sym_text_interpolation, - ACTIONS(3112), 7, - sym_encapsed_string_chars_heredoc, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_LT_QMARK, - anon_sym_QMARK_GT2, - anon_sym_DOLLAR, - [56268] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49963] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(3262), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(1932), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1532), 5, anon_sym_LBRACE, - STATE(1363), 1, - sym_use_list, - STATE(1515), 1, - sym_text_interpolation, - STATE(1599), 1, - aux_sym_base_clause_repeat1, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3260), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56300] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1871), 1, anon_sym_COLON_COLON, - ACTIONS(2745), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3066), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1516), 1, - sym_text_interpolation, - ACTIONS(1592), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56326] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [49983] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - ACTIONS(3254), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1056), 1, + STATE(938), 1, sym_declaration_list, - STATE(1517), 1, - sym_text_interpolation, - STATE(1614), 1, + STATE(1550), 1, sym_arguments, - STATE(1862), 1, + STATE(1849), 1, sym_base_clause, - STATE(2394), 1, + STATE(2194), 1, sym_class_interface_clause, - [56360] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50011] = 9, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(962), 1, + STATE(1077), 1, sym_declaration_list, - STATE(1518), 1, - sym_text_interpolation, - STATE(1595), 1, + STATE(1600), 1, sym_arguments, - STATE(1807), 1, + STATE(1763), 1, sym_base_clause, - STATE(2409), 1, + STATE(2352), 1, sym_class_interface_clause, - [56394] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(937), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3268), 1, - aux_sym_catch_clause_token1, - ACTIONS(3270), 1, - aux_sym_finally_clause_token1, - STATE(1519), 1, - sym_text_interpolation, - STATE(1521), 1, - aux_sym_try_statement_repeat1, - ACTIONS(935), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1685), 2, - sym_catch_clause, - sym_finally_clause, - [56424] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50039] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - ACTIONS(3106), 1, + ACTIONS(3090), 1, anon_sym_RPAREN, - STATE(1520), 1, - sym_text_interpolation, - STATE(2038), 1, + STATE(1996), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56450] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(945), 1, + [50059] = 9, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1651), 1, + sym_name, + STATE(1506), 1, + sym_qualified_name, + STATE(1777), 1, + sym_named_type, + STATE(1987), 1, + sym_type_list, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + [50087] = 6, + ACTIONS(935), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3246), 1, aux_sym_catch_clause_token1, - ACTIONS(3275), 1, + ACTIONS(3248), 1, aux_sym_finally_clause_token1, - ACTIONS(943), 2, + ACTIONS(933), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1521), 2, - sym_text_interpolation, - aux_sym_try_statement_repeat1, - STATE(1685), 2, + STATE(1502), 3, sym_catch_clause, sym_finally_clause, - [56478] = 11, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_try_statement_repeat1, + [50109] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1819), 1, + anon_sym_COLON_COLON, + ACTIONS(2731), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3064), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1558), 5, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(3256), 1, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50129] = 8, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3252), 1, + anon_sym_COMMA, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1365), 1, + sym_use_list, + STATE(1592), 1, + aux_sym_base_clause_repeat1, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3250), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50155] = 9, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(1047), 1, sym_declaration_list, - STATE(1522), 1, - sym_text_interpolation, - STATE(1643), 1, + STATE(1609), 1, sym_arguments, - STATE(1895), 1, + STATE(1804), 1, sym_base_clause, - STATE(2198), 1, + STATE(2272), 1, sym_class_interface_clause, - [56512] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50183] = 6, + ACTIONS(943), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_COMMA, - ACTIONS(3120), 1, - anon_sym_RPAREN, - STATE(1523), 1, - sym_text_interpolation, - STATE(1980), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1558), 5, + ACTIONS(3256), 1, + aux_sym_catch_clause_token1, + ACTIONS(3259), 1, + aux_sym_finally_clause_token1, + ACTIONS(941), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1502), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [50205] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(895), 1, + sym_arguments, + ACTIONS(1546), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56538] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50222] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(750), 1, - sym_arguments, - STATE(1524), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3262), 2, + sym_integer, + sym_name, + STATE(2539), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50241] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3152), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56561] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50256] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3166), 7, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [50269] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3268), 1, anon_sym_BSLASHu, - STATE(1525), 1, - sym_text_interpolation, - ACTIONS(3278), 6, + ACTIONS(3266), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56582] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50284] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3272), 1, + aux_sym_enum_case_token1, + ACTIONS(3275), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3270), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1508), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [50303] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, anon_sym_LPAREN, - ACTIONS(3282), 1, + ACTIONS(3278), 1, sym_name, - STATE(1526), 1, - sym_text_interpolation, - STATE(1621), 1, + STATE(1576), 1, sym_formal_parameters, - STATE(2283), 1, + STATE(2236), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56609] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(3286), 1, - anon_sym_DASH, - STATE(1527), 1, - sym_text_interpolation, - STATE(2441), 1, - sym__simple_string_array_access_argument, - ACTIONS(3284), 2, - sym_integer, - sym_name, - STATE(2452), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [56636] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50324] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1877), 1, anon_sym_LPAREN, - STATE(898), 1, + STATE(801), 1, sym_arguments, - STATE(1528), 1, - sym_text_interpolation, - ACTIONS(1536), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56659] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50341] = 8, + ACTIONS(27), 1, + anon_sym_BSLASH, + ACTIONS(553), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(3288), 1, + ACTIONS(1651), 1, sym_name, - STATE(1529), 1, - sym_text_interpolation, - STATE(1726), 1, - sym_reference_modifier, - STATE(2319), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56686] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1506), 1, + sym_qualified_name, + STATE(1863), 1, + sym_named_type, + STATE(2400), 1, + sym_namespace_name_as_prefix, + STATE(2571), 1, + sym_namespace_name, + [50366] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN, + STATE(626), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50383] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3283), 1, anon_sym_AMP, - ACTIONS(3295), 1, + ACTIONS(3285), 1, anon_sym_PIPE, - STATE(1530), 1, - sym_text_interpolation, - STATE(1658), 1, - aux_sym_union_type_repeat1, - STATE(1666), 1, + STATE(1621), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3290), 3, + STATE(1704), 1, + aux_sym_union_type_repeat1, + ACTIONS(3280), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [56713] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3070), 1, - anon_sym_BSLASHu, - STATE(1531), 1, - sym_text_interpolation, - ACTIONS(3072), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [56734] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50404] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1532), 1, - sym_text_interpolation, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_arguments, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56755] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50421] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1564), 1, + anon_sym_BSLASHu, + ACTIONS(1562), 6, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DQUOTE, anon_sym_DOLLAR, - ACTIONS(3286), 1, - anon_sym_DASH, - STATE(1533), 1, - sym_text_interpolation, - STATE(2589), 1, - sym__simple_string_array_access_argument, - ACTIONS(3284), 2, - sym_integer, - sym_name, - STATE(2452), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [56782] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50436] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(750), 1, + STATE(892), 1, sym_arguments, - STATE(1534), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56805] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50453] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(793), 1, + STATE(581), 1, sym_arguments, - STATE(1535), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56828] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50470] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1677), 1, anon_sym_LPAREN, - STATE(860), 1, + STATE(743), 1, sym_arguments, - STATE(1536), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1699), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56851] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50487] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1677), 1, anon_sym_LPAREN, - STATE(860), 1, + STATE(743), 1, sym_arguments, - STATE(1537), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1546), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56874] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50504] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(1538), 1, - sym_text_interpolation, - ACTIONS(3138), 7, + ACTIONS(1703), 1, anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [56893] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3287), 1, + sym_name, + STATE(1625), 1, + sym_reference_modifier, + STATE(2324), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [50525] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1646), 1, anon_sym_LPAREN, - STATE(898), 1, + STATE(661), 1, sym_arguments, - STATE(1539), 1, - sym_text_interpolation, - ACTIONS(1697), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56916] = 10, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(212), 1, - anon_sym_BSLASH, - ACTIONS(555), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1665), 1, - sym_name, - STATE(1538), 1, - sym_qualified_name, - STATE(1540), 1, - sym_text_interpolation, - STATE(1901), 1, - sym_named_type, - STATE(2454), 1, - sym_namespace_name_as_prefix, - STATE(2615), 1, - sym_namespace_name, - [56947] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50542] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(720), 1, + STATE(895), 1, sym_arguments, - STATE(1541), 1, - sym_text_interpolation, - ACTIONS(1697), 5, + ACTIONS(1699), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56970] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(3299), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1542), 1, - sym_text_interpolation, - STATE(1924), 1, - sym_namespace_aliasing_clause, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3297), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [56997] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3082), 1, - anon_sym_BSLASHu, - STATE(1543), 1, - sym_text_interpolation, - ACTIONS(3084), 6, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [57018] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50559] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, + ACTIONS(1877), 1, anon_sym_LPAREN, - STATE(793), 1, + STATE(801), 1, sym_arguments, - STATE(1544), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57041] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50576] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1648), 1, anon_sym_BSLASH, - STATE(1545), 1, - sym_text_interpolation, - STATE(2254), 1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3138), 5, + ACTIONS(3166), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [57064] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(720), 1, - sym_arguments, - STATE(1546), 1, - sym_text_interpolation, - ACTIONS(1536), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57087] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(619), 1, - sym_arguments, - STATE(1547), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57110] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3303), 1, - aux_sym_enum_case_token1, - ACTIONS(3306), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3301), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1548), 2, - sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1784), 2, - sym_case_statement, - sym_default_statement, - [57135] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50593] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(1549), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(3190), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57158] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50608] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3289), 1, anon_sym_AMP, - ACTIONS(3311), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - STATE(1550), 1, - sym_text_interpolation, - STATE(1660), 1, - aux_sym_intersection_type_repeat1, - STATE(1670), 1, + STATE(1693), 1, aux_sym_union_type_repeat1, - ACTIONS(3290), 3, + STATE(1707), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3280), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [57185] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, - anon_sym_LPAREN, - STATE(664), 1, - sym_arguments, - STATE(1551), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57208] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50629] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1606), 1, + ACTIONS(1584), 1, anon_sym_BSLASHu, - STATE(1552), 1, - sym_text_interpolation, - ACTIONS(1604), 6, + ACTIONS(1582), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57229] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50644] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1663), 1, + ACTIONS(1677), 1, anon_sym_LPAREN, - STATE(664), 1, + STATE(741), 1, sym_arguments, - STATE(1553), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57252] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50661] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(3286), 1, - anon_sym_DASH, - STATE(1554), 1, - sym_text_interpolation, - STATE(2455), 1, - sym__simple_string_array_access_argument, - ACTIONS(3284), 2, - sym_integer, - sym_name, - STATE(2452), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [57279] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50678] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3070), 1, anon_sym_BSLASHu, - STATE(1555), 1, - sym_text_interpolation, - ACTIONS(2929), 6, + ACTIONS(3072), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57300] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50693] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3056), 1, anon_sym_BSLASHu, - STATE(1556), 1, - sym_text_interpolation, - ACTIONS(3064), 6, + ACTIONS(3058), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57321] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50708] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1566), 1, + ACTIONS(3293), 1, anon_sym_BSLASHu, - STATE(1557), 1, - sym_text_interpolation, - ACTIONS(1564), 6, + ACTIONS(2933), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57342] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50723] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3295), 2, + sym_integer, + sym_name, + STATE(2408), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50742] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3299), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1885), 1, + sym_namespace_aliasing_clause, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3297), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [50763] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3301), 2, + sym_integer, + sym_name, + STATE(2411), 3, + sym__simple_string_subscript_unary_expression, + sym__simple_string_array_access_argument, + sym_variable_name, + [50782] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_arguments, + ACTIONS(1532), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50799] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1558), 1, - sym_text_interpolation, - ACTIONS(3236), 2, + ACTIONS(3188), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1558), 5, + anon_sym_RPAREN, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57363] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50814] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(1580), 1, anon_sym_BSLASHu, - STATE(1559), 1, - sym_text_interpolation, - ACTIONS(3076), 6, + ACTIONS(1578), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57384] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50829] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(789), 1, + sym_arguments, + ACTIONS(1699), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [50846] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(3060), 1, anon_sym_BSLASHu, - STATE(1560), 1, - sym_text_interpolation, - ACTIONS(2903), 6, + ACTIONS(3062), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57405] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50861] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1614), 1, + ACTIONS(3066), 1, anon_sym_BSLASHu, - STATE(1561), 1, - sym_text_interpolation, - ACTIONS(1612), 6, + ACTIONS(3068), 6, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [57426] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50876] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1879), 1, anon_sym_LPAREN, - STATE(592), 1, + STATE(892), 1, sym_arguments, - STATE(1562), 1, - sym_text_interpolation, - ACTIONS(1558), 5, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57449] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50893] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - ACTIONS(3282), 1, + ACTIONS(3278), 1, sym_name, - STATE(1563), 1, - sym_text_interpolation, - STATE(1644), 1, + STATE(1593), 1, sym_formal_parameters, - STATE(2283), 1, + STATE(2236), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57476] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50914] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(788), 1, - sym_arguments, - STATE(1564), 1, - sym_text_interpolation, - ACTIONS(1697), 5, + ACTIONS(3050), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3052), 1, + aux_sym_use_instead_of_clause_token1, + ACTIONS(1532), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57499] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1565), 1, - sym_text_interpolation, - ACTIONS(1899), 3, + [50931] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1887), 3, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(1897), 4, + ACTIONS(1885), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [57520] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50946] = 7, + ACTIONS(1506), 1, sym_comment, - STATE(1566), 1, - sym_text_interpolation, - ACTIONS(3180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1558), 5, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57541] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1065), 1, + sym_compound_statement, + STATE(1826), 1, + sym_anonymous_function_use_clause, + STATE(2298), 1, + sym__return_type, + [50968] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3309), 1, anon_sym_BSLASHu, - STATE(1567), 1, - sym_text_interpolation, - ACTIONS(3315), 6, - sym_encapsed_string_chars, + ACTIONS(3029), 5, + sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_SQUOTE, - anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [57562] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3058), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3060), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1568), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57585] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3319), 1, - sym_name, - STATE(1569), 1, - sym_text_interpolation, - STATE(1768), 1, - sym_const_element, - STATE(2594), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57609] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(967), 1, - aux_sym_while_statement_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3321), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3323), 1, - aux_sym_else_clause_token1, - STATE(1570), 1, - sym_text_interpolation, - STATE(1598), 1, - aux_sym_if_statement_repeat1, - STATE(2080), 1, - sym_else_clause, - STATE(2081), 1, - sym_else_if_clause, - [57637] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [50982] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(447), 1, sym_declaration_list, - STATE(1571), 1, - sym_text_interpolation, - STATE(1845), 1, + STATE(1735), 1, sym_base_clause, - STATE(2181), 1, + STATE(2232), 1, sym_class_interface_clause, - [57665] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51004] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1566), 1, - anon_sym_BSLASHu, - STATE(1572), 1, - sym_text_interpolation, - ACTIONS(1564), 5, - sym_execution_string_chars, + ACTIONS(1648), 1, + anon_sym_BSLASH, + ACTIONS(3313), 1, + anon_sym_COMMA, + STATE(1820), 1, + aux_sym_base_clause_repeat1, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3315), 2, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57685] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_interface_clause_token1, + [51024] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1095), 1, - sym_compound_statement, - STATE(1573), 1, - sym_text_interpolation, - STATE(1757), 1, - sym_anonymous_function_use_clause, - STATE(2371), 1, - sym__return_type, - [57713] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(452), 1, + STATE(947), 1, sym_declaration_list, - STATE(1574), 1, - sym_text_interpolation, - STATE(1771), 1, + STATE(1787), 1, sym_base_clause, - STATE(2368), 1, + STATE(2297), 1, sym_class_interface_clause, - [57741] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51046] = 7, + ACTIONS(951), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3262), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_use_list, - STATE(1575), 1, - sym_text_interpolation, - STATE(1599), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3260), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [57767] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3317), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3319), 1, + aux_sym_else_clause_token1, + STATE(1694), 1, + aux_sym_if_statement_repeat1, + STATE(2024), 1, + sym_else_clause, + STATE(2043), 1, + sym_else_if_clause, + [51068] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3074), 1, - anon_sym_BSLASHu, - STATE(1576), 1, - sym_text_interpolation, - ACTIONS(3076), 5, - sym_execution_string_chars, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3311), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57787] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(441), 1, + sym_declaration_list, + STATE(1732), 1, + sym_base_clause, + STATE(2333), 1, + sym_class_interface_clause, + [51090] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1099), 1, + STATE(1037), 1, sym_compound_statement, - STATE(1577), 1, - sym_text_interpolation, - STATE(1765), 1, + STATE(1854), 1, sym_anonymous_function_use_clause, - STATE(2362), 1, + STATE(2239), 1, sym__return_type, - [57815] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51112] = 7, + ACTIONS(951), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3321), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3324), 1, + aux_sym_else_clause_token1, + STATE(1694), 1, + aux_sym_if_statement_repeat1, + STATE(2024), 1, + sym_else_clause, + STATE(2043), 1, + sym_else_if_clause, + [51134] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3327), 1, anon_sym_RBRACE, - ACTIONS(3335), 1, + ACTIONS(3329), 1, aux_sym_enum_case_token1, - ACTIONS(3337), 1, + ACTIONS(3331), 1, aux_sym_match_default_expression_token1, - STATE(1548), 1, - aux_sym_switch_block_repeat1, - STATE(1578), 1, - sym_text_interpolation, - STATE(1784), 2, + STATE(1606), 3, sym_case_statement, sym_default_statement, - [57841] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_BSLASHu, - STATE(1579), 1, - sym_text_interpolation, - ACTIONS(3339), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [57861] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_switch_block_repeat1, + [51152] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1069), 1, + STATE(1044), 1, sym_compound_statement, - STATE(1580), 1, - sym_text_interpolation, - STATE(1857), 1, + STATE(1810), 1, sym_anonymous_function_use_clause, - STATE(2188), 1, + STATE(2147), 1, sym__return_type, - [57889] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [51174] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(915), 1, - sym_compound_statement, - STATE(1581), 1, - sym_text_interpolation, - STATE(1888), 1, - sym_anonymous_function_use_clause, - STATE(2242), 1, - sym__return_type, - [57917] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3333), 1, + aux_sym_if_statement_token2, + ACTIONS(3335), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3337), 1, + aux_sym_else_clause_token1, + STATE(1607), 1, + aux_sym_if_statement_repeat2, + STATE(1934), 1, + sym_else_if_clause_2, + STATE(2409), 1, + sym_else_clause_2, + [51196] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3339), 1, sym_name, - STATE(1582), 1, - sym_text_interpolation, - STATE(1881), 1, + STATE(1923), 1, sym_const_element, - STATE(2594), 1, + STATE(2551), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57941] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(953), 1, - aux_sym_while_statement_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3343), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3346), 1, - aux_sym_else_clause_token1, - STATE(1583), 1, - sym_text_interpolation, - STATE(1737), 1, - aux_sym_if_statement_repeat1, - STATE(2063), 1, - sym_else_clause, - STATE(2081), 1, - sym_else_if_clause, - [57969] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1053), 1, - sym_declaration_list, - STATE(1584), 1, - sym_text_interpolation, - STATE(1864), 1, - sym_base_clause, - STATE(2395), 1, - sym_class_interface_clause, - [57997] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3062), 1, - anon_sym_BSLASHu, - STATE(1585), 1, - sym_text_interpolation, - ACTIONS(3064), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58017] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3082), 1, - anon_sym_BSLASHu, - STATE(1586), 1, - sym_text_interpolation, - ACTIONS(3084), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58037] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51214] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1044), 1, - sym_compound_statement, - STATE(1587), 1, - sym_text_interpolation, - STATE(1802), 1, - sym_anonymous_function_use_clause, - STATE(2265), 1, - sym__return_type, - [58065] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3335), 1, aux_sym_enum_case_token1, - ACTIONS(3337), 1, + ACTIONS(3331), 1, aux_sym_match_default_expression_token1, - ACTIONS(3349), 1, + ACTIONS(3341), 1, aux_sym_switch_block_token1, - STATE(1588), 1, - sym_text_interpolation, - STATE(1620), 1, - aux_sym_switch_block_repeat1, - STATE(1784), 2, + STATE(1617), 3, sym_case_statement, sym_default_statement, - [58091] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3335), 1, - aux_sym_enum_case_token1, - ACTIONS(3337), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3351), 1, - anon_sym_RBRACE, - STATE(1589), 1, - sym_text_interpolation, - STATE(1623), 1, aux_sym_switch_block_repeat1, - STATE(1784), 2, - sym_case_statement, - sym_default_statement, - [58117] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51232] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3060), 1, + anon_sym_BSLASHu, + ACTIONS(3062), 5, + sym_execution_string_chars, anon_sym_LBRACE, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1590), 1, - sym_text_interpolation, - STATE(1697), 1, - sym_declaration_list, - STATE(1892), 1, - sym_base_clause, - STATE(2165), 1, - sym_class_interface_clause, - [58145] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3353), 1, - aux_sym_if_statement_token2, - ACTIONS(3355), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3357), 1, - aux_sym_else_clause_token1, - STATE(1591), 1, - sym_text_interpolation, - STATE(1630), 1, - aux_sym_if_statement_repeat2, - STATE(1982), 1, - sym_else_if_clause_2, - STATE(2446), 1, - sym_else_clause_2, - [58173] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [51246] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1592), 1, - sym_text_interpolation, - STATE(1700), 1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1663), 1, sym_declaration_list, - STATE(1788), 1, + STATE(1779), 1, sym_base_clause, - STATE(2303), 1, + STATE(2266), 1, sym_class_interface_clause, - [58201] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51268] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1593), 1, - sym_text_interpolation, - ACTIONS(3359), 6, + ACTIONS(3343), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [58219] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(953), 1, - sym_compound_statement, - STATE(1594), 1, - sym_text_interpolation, - STATE(1867), 1, - sym_anonymous_function_use_clause, - STATE(2418), 1, - sym__return_type, - [58247] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51280] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3345), 6, + anon_sym_AMP, anon_sym_LBRACE, - STATE(918), 1, - sym_declaration_list, - STATE(1595), 1, - sym_text_interpolation, - STATE(1861), 1, - sym_base_clause, - STATE(2384), 1, - sym_class_interface_clause, - [58275] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(967), 1, - aux_sym_while_statement_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3361), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3364), 1, - aux_sym_else_clause_token1, - STATE(1583), 1, - aux_sym_if_statement_repeat1, - STATE(1596), 1, - sym_text_interpolation, - STATE(2080), 1, - sym_else_clause, - STATE(2081), 1, - sym_else_if_clause, - [58303] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(1597), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - STATE(2326), 1, - sym_arguments, - ACTIONS(3367), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [58329] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(953), 1, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [51292] = 7, + ACTIONS(961), 1, aux_sym_while_statement_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3347), 1, aux_sym_else_if_clause_token1, - ACTIONS(3323), 1, + ACTIONS(3350), 1, aux_sym_else_clause_token1, - STATE(1598), 1, - sym_text_interpolation, - STATE(1737), 1, + STATE(1554), 1, aux_sym_if_statement_repeat1, - STATE(2063), 1, + STATE(2042), 1, sym_else_clause, - STATE(2081), 1, + STATE(2043), 1, sym_else_if_clause, - [58357] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3262), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_LBRACE, - STATE(1369), 1, - sym_use_list, - STATE(1599), 1, - sym_text_interpolation, - STATE(1731), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3369), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [58383] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1065), 1, - sym_compound_statement, - STATE(1600), 1, - sym_text_interpolation, - STATE(1819), 1, - sym_anonymous_function_use_clause, - STATE(2339), 1, - sym__return_type, - [58411] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1601), 1, - sym_text_interpolation, - ACTIONS(3371), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [58429] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [51314] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(942), 1, - sym_compound_statement, - STATE(1602), 1, - sym_text_interpolation, - STATE(1789), 1, - sym_anonymous_function_use_clause, - STATE(2273), 1, - sym__return_type, - [58457] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3339), 1, + sym_name, + STATE(1859), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51332] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3066), 1, anon_sym_BSLASHu, - STATE(1603), 1, - sym_text_interpolation, - ACTIONS(2961), 5, + ACTIONS(3068), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58477] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51346] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(3339), 1, + sym_name, + STATE(1741), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51364] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1564), 1, anon_sym_BSLASHu, - STATE(1604), 1, - sym_text_interpolation, - ACTIONS(2903), 5, + ACTIONS(1562), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58497] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1605), 1, - sym_text_interpolation, - ACTIONS(3375), 6, - anon_sym_AMP, + [51378] = 7, + ACTIONS(379), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [58515] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - STATE(1606), 1, - sym_text_interpolation, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3377), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(951), 1, + sym_compound_statement, + STATE(1818), 1, + sym_anonymous_function_use_clause, + STATE(2231), 1, + sym__return_type, + [51400] = 7, + ACTIONS(379), 1, anon_sym_LBRACE, - [58537] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3256), 1, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(935), 1, + sym_compound_statement, + STATE(1786), 1, + sym_anonymous_function_use_clause, + STATE(2292), 1, + sym__return_type, + [51422] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1607), 1, - sym_text_interpolation, - STATE(1713), 1, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(445), 1, sym_declaration_list, - STATE(1871), 1, + STATE(1860), 1, sym_base_clause, - STATE(2421), 1, + STATE(2141), 1, sym_class_interface_clause, - [58565] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + [51444] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3379), 1, - sym_php_tag, - ACTIONS(3383), 1, - sym__eof, - STATE(1608), 1, - sym_text_interpolation, - STATE(1681), 1, - aux_sym_text_repeat1, - STATE(2164), 1, - sym_text, - ACTIONS(3381), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [58591] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1614), 1, - anon_sym_BSLASHu, - STATE(1609), 1, - sym_text_interpolation, - ACTIONS(1612), 5, - sym_execution_string_chars, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [58611] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3335), 1, - aux_sym_enum_case_token1, - ACTIONS(3337), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3385), 1, - aux_sym_switch_block_token1, - STATE(1548), 1, - aux_sym_switch_block_repeat1, - STATE(1610), 1, - sym_text_interpolation, - STATE(1784), 2, - sym_case_statement, - sym_default_statement, - [58637] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3355), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3357), 1, - aux_sym_else_clause_token1, - ACTIONS(3387), 1, - aux_sym_if_statement_token2, - STATE(1611), 1, - sym_text_interpolation, - STATE(1676), 1, - aux_sym_if_statement_repeat2, - STATE(1982), 1, - sym_else_if_clause_2, - STATE(2482), 1, - sym_else_clause_2, - [58665] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1096), 1, + sym_compound_statement, + STATE(1744), 1, + sym_anonymous_function_use_clause, + STATE(2221), 1, + sym__return_type, + [51466] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3353), 6, + anon_sym_AMP, anon_sym_LBRACE, - STATE(447), 1, - sym_declaration_list, - STATE(1612), 1, - sym_text_interpolation, - STATE(1803), 1, - sym_base_clause, - STATE(2271), 1, - sym_class_interface_clause, - [58693] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [51478] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3339), 1, sym_name, - STATE(1613), 1, - sym_text_interpolation, - STATE(1891), 1, + STATE(1734), 1, sym_const_element, - STATE(2594), 1, + STATE(2551), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58717] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51496] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1132), 1, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(436), 1, sym_declaration_list, - STATE(1614), 1, - sym_text_interpolation, - STATE(1876), 1, + STATE(1858), 1, sym_base_clause, - STATE(2297), 1, + STATE(2245), 1, sym_class_interface_clause, - [58745] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51518] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1606), 1, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1093), 1, + sym_compound_statement, + STATE(1747), 1, + sym_anonymous_function_use_clause, + STATE(2225), 1, + sym__return_type, + [51540] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1584), 1, anon_sym_BSLASHu, - STATE(1615), 1, - sym_text_interpolation, - ACTIONS(1604), 5, + ACTIONS(1582), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [58765] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51554] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1118), 1, + sym_compound_statement, + STATE(1769), 1, + sym_anonymous_function_use_clause, + STATE(2320), 1, + sym__return_type, + [51576] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3339), 1, sym_name, - STATE(1616), 1, - sym_text_interpolation, - STATE(1770), 1, + STATE(1767), 1, sym_const_element, - STATE(2594), 1, + STATE(2551), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58789] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [51594] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(956), 1, - sym_compound_statement, - STATE(1617), 1, - sym_text_interpolation, - STATE(1873), 1, - sym_anonymous_function_use_clause, - STATE(2427), 1, - sym__return_type, - [58817] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3339), 1, + sym_name, + STATE(1719), 1, + sym_const_element, + STATE(2551), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [51612] = 7, + ACTIONS(961), 1, + aux_sym_while_statement_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3389), 1, - anon_sym_AMP, - ACTIONS(3393), 1, - anon_sym_PIPE, - STATE(1618), 1, - sym_text_interpolation, - STATE(1678), 1, - aux_sym_union_type_repeat1, - STATE(1859), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3290), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [58843] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3317), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3319), 1, + aux_sym_else_clause_token1, + STATE(1551), 1, + aux_sym_if_statement_repeat1, + STATE(2042), 1, + sym_else_clause, + STATE(2043), 1, + sym_else_if_clause, + [51634] = 7, + ACTIONS(1506), 1, sym_comment, - STATE(1619), 1, - sym_text_interpolation, - ACTIONS(3395), 6, - anon_sym_AMP, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3244), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, + STATE(1689), 1, + sym_declaration_list, + STATE(1817), 1, + sym_base_clause, + STATE(2334), 1, + sym_class_interface_clause, + [51656] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1580), 1, + anon_sym_BSLASHu, + ACTIONS(1578), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [58861] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51670] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, + STATE(1753), 1, + sym_base_clause, + STATE(2326), 1, + sym_class_interface_clause, + [51692] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3329), 1, aux_sym_enum_case_token1, - ACTIONS(3337), 1, + ACTIONS(3331), 1, aux_sym_match_default_expression_token1, - ACTIONS(3397), 1, + ACTIONS(3355), 1, aux_sym_switch_block_token1, - STATE(1548), 1, - aux_sym_switch_block_repeat1, - STATE(1620), 1, - sym_text_interpolation, - STATE(1784), 2, + STATE(1508), 3, sym_case_statement, sym_default_statement, - [58887] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_switch_block_repeat1, + [51710] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1055), 1, + STATE(925), 1, sym_compound_statement, - STATE(1621), 1, - sym_text_interpolation, - STATE(1866), 1, + STATE(1841), 1, sym_anonymous_function_use_clause, - STATE(2417), 1, + STATE(2372), 1, sym__return_type, - [58915] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51732] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1622), 1, - sym_text_interpolation, - STATE(1739), 1, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(448), 1, sym_declaration_list, - STATE(1818), 1, + STATE(1749), 1, sym_base_clause, - STATE(2354), 1, + STATE(2218), 1, sym_class_interface_clause, - [58943] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51754] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3329), 1, aux_sym_enum_case_token1, - ACTIONS(3337), 1, + ACTIONS(3331), 1, aux_sym_match_default_expression_token1, - ACTIONS(3399), 1, + ACTIONS(3357), 1, anon_sym_RBRACE, - STATE(1548), 1, - aux_sym_switch_block_repeat1, - STATE(1623), 1, - sym_text_interpolation, - STATE(1784), 2, + STATE(1508), 3, sym_case_statement, sym_default_statement, - [58969] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_switch_block_repeat1, + [51772] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(461), 1, + STATE(1717), 1, sym_declaration_list, - STATE(1624), 1, - sym_text_interpolation, - STATE(1774), 1, + STATE(1762), 1, sym_base_clause, - STATE(2375), 1, + STATE(2378), 1, sym_class_interface_clause, - [58997] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3070), 1, - anon_sym_BSLASHu, - STATE(1625), 1, - sym_text_interpolation, - ACTIONS(3072), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59017] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3319), 1, - sym_name, - STATE(1626), 1, - sym_text_interpolation, - STATE(1969), 1, - sym_const_element, - STATE(2594), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59041] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51794] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(1682), 1, sym_declaration_list, - STATE(1627), 1, - sym_text_interpolation, - STATE(1791), 1, + STATE(1794), 1, sym_base_clause, - STATE(2259), 1, + STATE(2312), 1, sym_class_interface_clause, - [59069] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, + [51816] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1035), 1, + sym_compound_statement, + STATE(1721), 1, + sym_anonymous_function_use_clause, + STATE(2329), 1, + sym__return_type, + [51838] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3252), 1, + anon_sym_COMMA, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(1348), 1, + sym_use_list, + STATE(1677), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3359), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51858] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(960), 1, + STATE(1107), 1, sym_compound_statement, - STATE(1628), 1, - sym_text_interpolation, - STATE(1826), 1, + STATE(1773), 1, sym_anonymous_function_use_clause, - STATE(2363), 1, + STATE(2377), 1, sym__return_type, - [59097] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [51880] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(914), 1, + STATE(939), 1, sym_compound_statement, - STATE(1629), 1, - sym_text_interpolation, - STATE(1830), 1, + STATE(1803), 1, sym_anonymous_function_use_clause, - STATE(2367), 1, + STATE(2321), 1, sym__return_type, - [59125] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3355), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3357), 1, - aux_sym_else_clause_token1, - ACTIONS(3401), 1, - aux_sym_if_statement_token2, - STATE(1630), 1, - sym_text_interpolation, - STATE(1676), 1, - aux_sym_if_statement_repeat2, - STATE(1982), 1, - sym_else_if_clause_2, - STATE(2502), 1, - sym_else_clause_2, - [59153] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [51902] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(946), 1, + STATE(936), 1, sym_compound_statement, - STATE(1631), 1, - sym_text_interpolation, - STATE(1846), 1, + STATE(1806), 1, sym_anonymous_function_use_clause, - STATE(2393), 1, + STATE(2325), 1, sym__return_type, - [59181] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51924] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(444), 1, + STATE(1713), 1, sym_declaration_list, - STATE(1632), 1, - sym_text_interpolation, - STATE(1898), 1, + STATE(1839), 1, sym_base_clause, - STATE(2293), 1, + STATE(2366), 1, sym_class_interface_clause, - [59209] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3355), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3357), 1, - aux_sym_else_clause_token1, - ACTIONS(3403), 1, - aux_sym_if_statement_token2, - STATE(1611), 1, - aux_sym_if_statement_repeat2, - STATE(1633), 1, - sym_text_interpolation, - STATE(1982), 1, - sym_else_if_clause_2, - STATE(2499), 1, - sym_else_clause_2, - [59237] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51946] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3256), 1, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1634), 1, - sym_text_interpolation, - STATE(1694), 1, + STATE(949), 1, sym_declaration_list, - STATE(1894), 1, + STATE(1835), 1, sym_base_clause, - STATE(2414), 1, + STATE(2341), 1, sym_class_interface_clause, - [59265] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [51968] = 6, + ACTIONS(1506), 1, sym_comment, + ACTIONS(3252), 1, + anon_sym_COMMA, ACTIONS(3254), 1, anon_sym_LBRACE, - ACTIONS(3256), 1, + STATE(1365), 1, + sym_use_list, + STATE(1592), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3250), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51988] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3361), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [52004] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1635), 1, - sym_text_interpolation, - STATE(1646), 1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1122), 1, sym_declaration_list, - STATE(1832), 1, + STATE(1761), 1, sym_base_clause, - STATE(2376), 1, + STATE(2257), 1, sym_class_interface_clause, - [59293] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52026] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3319), 1, - sym_name, - STATE(1636), 1, - sym_text_interpolation, - STATE(1853), 1, - sym_const_element, - STATE(2594), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59317] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + ACTIONS(3335), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3337), 1, + aux_sym_else_clause_token1, + ACTIONS(3363), 1, + aux_sym_if_statement_token2, + STATE(1681), 1, + aux_sym_if_statement_repeat2, + STATE(1934), 1, + sym_else_if_clause_2, + STATE(2455), 1, + sym_else_clause_2, + [52048] = 7, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(906), 1, + STATE(944), 1, sym_compound_statement, - STATE(1637), 1, - sym_text_interpolation, - STATE(1833), 1, + STATE(1842), 1, sym_anonymous_function_use_clause, - STATE(2304), 1, + STATE(2199), 1, sym__return_type, - [59345] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52070] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3244), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1125), 1, - sym_compound_statement, - STATE(1638), 1, - sym_text_interpolation, - STATE(1872), 1, - sym_anonymous_function_use_clause, - STATE(2285), 1, - sym__return_type, - [59373] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1690), 1, + sym_declaration_list, + STATE(1846), 1, + sym_base_clause, + STATE(2165), 1, + sym_class_interface_clause, + [52092] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3335), 1, - aux_sym_enum_case_token1, - ACTIONS(3337), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3405), 1, - aux_sym_switch_block_token1, - STATE(1610), 1, - aux_sym_switch_block_repeat1, - STATE(1639), 1, - sym_text_interpolation, - STATE(1784), 2, - sym_case_statement, - sym_default_statement, - [59399] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3070), 1, + anon_sym_BSLASHu, + ACTIONS(3072), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [52106] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3339), 1, sym_name, - STATE(1640), 1, - sym_text_interpolation, - STATE(1835), 1, + STATE(1752), 1, sym_const_element, - STATE(2594), 1, + STATE(2551), 1, sym__reserved_identifier, - ACTIONS(3048), 3, + ACTIONS(3040), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [59423] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52124] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3329), 1, aux_sym_enum_case_token1, - ACTIONS(3337), 1, + ACTIONS(3331), 1, aux_sym_match_default_expression_token1, - ACTIONS(3407), 1, + ACTIONS(3365), 1, anon_sym_RBRACE, - STATE(1578), 1, - aux_sym_switch_block_repeat1, - STATE(1641), 1, - sym_text_interpolation, - STATE(1784), 2, + STATE(1508), 3, sym_case_statement, sym_default_statement, - [59449] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_switch_block_repeat1, + [52142] = 7, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(3409), 1, - anon_sym_COMMA, - STATE(1642), 1, - sym_text_interpolation, - STATE(1814), 1, - aux_sym_base_clause_repeat1, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3411), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [59475] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3335), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3337), 1, + aux_sym_else_clause_token1, + ACTIONS(3367), 1, + aux_sym_if_statement_token2, + STATE(1681), 1, + aux_sym_if_statement_repeat2, + STATE(1934), 1, + sym_else_if_clause_2, + STATE(2443), 1, + sym_else_clause_2, + [52164] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3369), 1, + anon_sym_AMP, + ACTIONS(3373), 1, + anon_sym_PIPE, + STATE(1667), 1, + aux_sym_union_type_repeat1, + STATE(1853), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3280), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [52184] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3240), 1, aux_sym_base_clause_token1, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(963), 1, + STATE(1069), 1, sym_declaration_list, - STATE(1643), 1, - sym_text_interpolation, - STATE(1808), 1, + STATE(1764), 1, sym_base_clause, - STATE(2399), 1, + STATE(2353), 1, sym_class_interface_clause, - [59503] = 9, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52206] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3327), 1, + ACTIONS(3303), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1046), 1, + STATE(921), 1, sym_compound_statement, - STATE(1644), 1, - sym_text_interpolation, - STATE(1801), 1, + STATE(1838), 1, sym_anonymous_function_use_clause, - STATE(2264), 1, + STATE(2357), 1, sym__return_type, - [59531] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1068), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [52228] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1645), 1, - sym_text_interpolation, - ACTIONS(1066), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3413), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59552] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1044), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(3056), 1, + anon_sym_BSLASHu, + ACTIONS(3058), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [52242] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(1646), 1, - sym_text_interpolation, - ACTIONS(1042), 2, - aux_sym_while_statement_token1, + ACTIONS(3329), 1, + aux_sym_enum_case_token1, + ACTIONS(3331), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3375), 1, + aux_sym_switch_block_token1, + STATE(1585), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [52260] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3329), 1, + aux_sym_enum_case_token1, + ACTIONS(3331), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3377), 1, + anon_sym_RBRACE, + STATE(1588), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [52278] = 7, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3335), 1, aux_sym_else_if_clause_token1, - ACTIONS(3415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59573] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(3337), 1, + aux_sym_else_clause_token1, + ACTIONS(3379), 1, + aux_sym_if_statement_token2, + STATE(1601), 1, + aux_sym_if_statement_repeat2, + STATE(1934), 1, + sym_else_if_clause_2, + STATE(2399), 1, + sym_else_clause_2, + [52300] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3417), 1, - ts_builtin_sym_end, - ACTIONS(3419), 1, - sym_php_tag, - STATE(1647), 1, - sym_text_interpolation, - STATE(1728), 1, - aux_sym_text_repeat1, - ACTIONS(11), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [59596] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1524), 1, + anon_sym_LPAREN, + ACTIONS(1648), 1, + anon_sym_BSLASH, + STATE(2208), 1, + aux_sym_namespace_name_repeat1, + STATE(2281), 1, + sym_arguments, + ACTIONS(3381), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52320] = 7, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3423), 1, - sym_heredoc_end, - STATE(1648), 1, - sym_text_interpolation, - STATE(1855), 1, - sym_nowdoc_body, - STATE(2047), 1, - sym__new_line, - ACTIONS(3421), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59619] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(3303), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(903), 1, + sym_compound_statement, + STATE(1830), 1, + sym_anonymous_function_use_clause, + STATE(2219), 1, + sym__return_type, + [52342] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3427), 1, - sym_heredoc_end, - STATE(1336), 1, - sym__new_line, - STATE(1649), 1, - sym_text_interpolation, - STATE(1852), 1, - sym_heredoc_body, - ACTIONS(3425), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59642] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3329), 1, + aux_sym_enum_case_token1, + ACTIONS(3331), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3383), 1, + aux_sym_switch_block_token1, + STATE(1508), 3, + sym_case_statement, + sym_default_statement, + aux_sym_switch_block_repeat1, + [52360] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1650), 1, - sym_text_interpolation, - ACTIONS(3375), 5, + ACTIONS(3387), 1, + anon_sym_BSLASH, + STATE(1661), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3385), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, anon_sym_LBRACE, - anon_sym_PIPE, - [59659] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1504), 1, + [52375] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(3390), 1, + sym_name, + ACTIONS(3392), 1, + anon_sym_LBRACE, + STATE(890), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52392] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3394), 1, sym_name, - ACTIONS(3431), 1, + ACTIONS(3396), 1, anon_sym_LBRACE, - STATE(1651), 1, - sym_text_interpolation, - STATE(680), 2, + ACTIONS(3398), 1, + anon_sym_DOLLAR, + STATE(1583), 2, sym_dynamic_variable_name, sym_variable_name, - [59682] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1084), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [52409] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1652), 1, - sym_text_interpolation, - ACTIONS(1082), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3433), 2, + ACTIONS(3283), 1, + anon_sym_AMP, + STATE(1706), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3400), 3, sym__automatic_semicolon, anon_sym_SEMI, - [59703] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LBRACE, + [52424] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3402), 1, + sym_name, + ACTIONS(3404), 1, anon_sym_BSLASH, - STATE(1653), 1, - sym_text_interpolation, - STATE(1733), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3435), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [59724] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(533), 1, + sym_compound_statement, + STATE(1715), 1, + sym_namespace_name, + [52443] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3406), 1, anon_sym_LBRACE, - ACTIONS(3441), 1, + ACTIONS(3408), 1, anon_sym_COLON_COLON, - ACTIONS(3443), 1, + ACTIONS(3410), 1, anon_sym_DASH_GT, - ACTIONS(3445), 1, + ACTIONS(3412), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3447), 1, + ACTIONS(3414), 1, anon_sym_LBRACK, - STATE(1654), 1, - sym_text_interpolation, - [59749] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3451), 1, + [52462] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3418), 1, anon_sym_BSLASH, - STATE(1655), 2, - sym_text_interpolation, + STATE(1688), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3449), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59768] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3456), 1, - sym_heredoc_end, - ACTIONS(3458), 1, - sym_nowdoc_string, - STATE(1656), 1, - sym_text_interpolation, - STATE(1744), 1, - aux_sym_nowdoc_body_repeat1, - ACTIONS(3454), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [59791] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1657), 1, - sym_text_interpolation, - ACTIONS(3359), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [59808] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3416), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [52477] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3295), 1, - anon_sym_PIPE, - STATE(1658), 1, - sym_text_interpolation, - STATE(1716), 1, - aux_sym_union_type_repeat1, - ACTIONS(3460), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [59829] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(987), 1, + ACTIONS(3420), 1, + sym_name, + STATE(2202), 1, + sym__reserved_identifier, + ACTIONS(3040), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [52492] = 3, + ACTIONS(985), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1659), 1, - sym_text_interpolation, - ACTIONS(985), 4, + ACTIONS(983), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59848] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52505] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3422), 1, + anon_sym_AMP, + ACTIONS(3424), 1, + anon_sym_RPAREN, + STATE(2129), 2, + sym_variable_name, + sym_variable_reference, + [52522] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3428), 1, + anon_sym_EQ, + STATE(2091), 1, + sym_property_initializer, + ACTIONS(3426), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52537] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3418), 1, + anon_sym_BSLASH, + STATE(1624), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3385), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [52552] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym_DASH_GT, + ACTIONS(3434), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3436), 1, + anon_sym_LBRACK, + [52571] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3438), 5, anon_sym_AMP, - STATE(1660), 1, - sym_text_interpolation, - STATE(1705), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3462), 3, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [59869] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3464), 1, - sym_name, - ACTIONS(3466), 1, - anon_sym_BSLASH, - STATE(483), 1, - sym_compound_statement, - STATE(1661), 1, - sym_text_interpolation, - STATE(1732), 1, - sym_namespace_name, - [59894] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52582] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3470), 1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3440), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, anon_sym_COLON, - STATE(1662), 1, - sym_text_interpolation, - STATE(2074), 1, - sym__return_type, - ACTIONS(3468), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(2040), 1, + sym_enum_declaration_list, + STATE(2369), 1, + sym_class_interface_clause, + [52601] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3444), 1, anon_sym_LBRACE, - [59915] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1114), 1, + ACTIONS(3446), 1, + anon_sym_COLON, + STATE(550), 1, + sym_enum_declaration_list, + STATE(2327), 1, + sym_class_interface_clause, + [52620] = 4, + ACTIONS(1102), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1663), 1, - sym_text_interpolation, - ACTIONS(1112), 2, + ACTIONS(1100), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3472), 2, + ACTIONS(3448), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59936] = 7, + [52635] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3450), 1, + anon_sym_DOT_DOT_DOT, + STATE(1917), 1, + sym_reference_modifier, + STATE(1918), 1, + sym_variable_name, + [52654] = 3, + ACTIONS(981), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(979), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52667] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, + ACTIONS(3452), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_DASH_GT, + ACTIONS(3456), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3458), 1, + anon_sym_LBRACK, + [52686] = 5, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3462), 1, sym_heredoc_end, - STATE(1336), 1, - sym__new_line, - STATE(1664), 1, - sym_text_interpolation, - STATE(1885), 1, - sym_heredoc_body, - ACTIONS(3425), 2, + ACTIONS(3464), 1, + sym_nowdoc_string, + STATE(1638), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3460), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - [59959] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1102), 1, + [52703] = 4, + ACTIONS(1016), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1665), 1, - sym_text_interpolation, - ACTIONS(1100), 2, + ACTIONS(1014), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3476), 2, + ACTIONS(3467), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59980] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52718] = 4, + ACTIONS(1022), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3293), 1, - anon_sym_AMP, - STATE(1666), 1, - sym_text_interpolation, - STATE(1717), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3462), 3, + ACTIONS(1020), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3469), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [60001] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52733] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1697), 1, anon_sym_DOLLAR, - ACTIONS(3478), 1, + ACTIONS(3471), 1, sym_name, - ACTIONS(3480), 1, + ACTIONS(3473), 1, anon_sym_LBRACE, - STATE(1667), 1, - sym_text_interpolation, - STATE(734), 2, + STATE(726), 2, sym_dynamic_variable_name, sym_variable_name, - [60024] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52750] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3408), 1, anon_sym_COLON_COLON, - ACTIONS(3482), 1, + ACTIONS(3452), 1, anon_sym_LBRACE, - ACTIONS(3484), 1, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(3475), 1, anon_sym_DASH_GT, - ACTIONS(3486), 1, + ACTIONS(3477), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3488), 1, - anon_sym_LBRACK, - STATE(1668), 1, - sym_text_interpolation, - [60049] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52769] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1669), 1, - sym_text_interpolation, - ACTIONS(3490), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [60066] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3481), 1, + sym_heredoc_end, + STATE(1326), 1, + sym__new_line, + STATE(1856), 1, + sym_heredoc_body, + ACTIONS(3479), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [52786] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3311), 1, - anon_sym_PIPE, - STATE(1670), 1, - sym_text_interpolation, - STATE(1698), 1, - aux_sym_union_type_repeat1, - ACTIONS(3460), 3, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, + ACTIONS(3483), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [60087] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1020), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1671), 1, - sym_text_interpolation, - ACTIONS(1018), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3492), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60108] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3485), 1, + anon_sym_DASH_GT, + ACTIONS(3487), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3489), 1, + anon_sym_LBRACK, + [52805] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(1748), 1, + ACTIONS(3491), 1, + sym_name, + ACTIONS(3493), 1, + anon_sym_LBRACE, + ACTIONS(3495), 1, anon_sym_DOLLAR, - ACTIONS(3494), 1, - anon_sym_DOT_DOT_DOT, - STATE(1672), 1, - sym_text_interpolation, - STATE(2021), 1, - sym_reference_modifier, - STATE(2024), 1, + STATE(1538), 2, + sym_dynamic_variable_name, sym_variable_name, - [60133] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3496), 1, - sym_php_tag, - ACTIONS(3501), 1, - sym__eof, - ACTIONS(3498), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1673), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [60154] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(1748), 1, + [52822] = 5, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(3503), 1, - anon_sym_DOT_DOT_DOT, - STATE(1674), 1, - sym_text_interpolation, - STATE(1957), 1, - sym_reference_modifier, - STATE(1958), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3497), 1, + sym_name, + ACTIONS(3499), 1, + anon_sym_LBRACE, + STATE(659), 2, + sym_dynamic_variable_name, sym_variable_name, - [60179] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1014), 1, + [52839] = 4, + ACTIONS(1004), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1675), 1, - sym_text_interpolation, - ACTIONS(1012), 2, + ACTIONS(1002), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3505), 2, + ACTIONS(3501), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60200] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3507), 1, - aux_sym_if_statement_token2, - ACTIONS(3509), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3512), 1, - aux_sym_else_clause_token1, - STATE(1982), 1, - sym_else_if_clause_2, - STATE(1676), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat2, - [60223] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52854] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3408), 1, anon_sym_COLON_COLON, - ACTIONS(3514), 1, + ACTIONS(3452), 1, anon_sym_LBRACE, - ACTIONS(3516), 1, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(3503), 1, anon_sym_DASH_GT, - ACTIONS(3518), 1, + ACTIONS(3505), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3520), 1, - anon_sym_LBRACK, - STATE(1677), 1, - sym_text_interpolation, - [60248] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52873] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3507), 1, + sym_name, + STATE(2100), 1, + sym_visibility_modifier, + ACTIONS(3509), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [52888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3513), 1, + sym_heredoc_end, + ACTIONS(3515), 1, + sym_nowdoc_string, + STATE(1638), 1, + aux_sym_nowdoc_body_repeat1, + ACTIONS(3511), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [52905] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3517), 1, + sym_name, + STATE(1776), 1, + sym_namespace_name, + STATE(1966), 1, + sym_namespace_use_group_clause, + ACTIONS(3519), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [52922] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3521), 1, + sym_heredoc_end, + STATE(1326), 1, + sym__new_line, + STATE(1743), 1, + sym_heredoc_body, + ACTIONS(3479), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [52939] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3393), 1, + ACTIONS(3523), 1, anon_sym_PIPE, - STATE(1678), 1, - sym_text_interpolation, - STATE(1729), 1, + STATE(1653), 1, aux_sym_union_type_repeat1, - ACTIONS(3460), 3, + ACTIONS(3345), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [60269] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52954] = 5, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3522), 1, + ACTIONS(3526), 1, + sym_name, + ACTIONS(3528), 1, anon_sym_LBRACE, - ACTIONS(3524), 1, - anon_sym_COLON, - STATE(1679), 1, - sym_text_interpolation, - STATE(2078), 1, - sym_enum_declaration_list, - STATE(2426), 1, - sym_class_interface_clause, - [60294] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1010), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1680), 1, - sym_text_interpolation, - ACTIONS(1008), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [60313] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + STATE(625), 2, + sym_dynamic_variable_name, + sym_variable_name, + [52971] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3417), 1, - sym__eof, - ACTIONS(3419), 1, - sym_php_tag, - STATE(1673), 1, - aux_sym_text_repeat1, - STATE(1681), 1, - sym_text_interpolation, - ACTIONS(3381), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [60336] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3441), 1, + ACTIONS(3408), 1, anon_sym_COLON_COLON, - ACTIONS(3514), 1, + ACTIONS(3483), 1, anon_sym_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3489), 1, anon_sym_LBRACK, - ACTIONS(3526), 1, + ACTIONS(3530), 1, anon_sym_DASH_GT, - ACTIONS(3528), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DASH_GT, - STATE(1682), 1, - sym_text_interpolation, - [60361] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [52990] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3246), 1, aux_sym_catch_clause_token1, - ACTIONS(3270), 1, + ACTIONS(3248), 1, aux_sym_finally_clause_token1, - STATE(1519), 1, - aux_sym_try_statement_repeat1, - STATE(1683), 1, - sym_text_interpolation, - STATE(1685), 2, + STATE(1498), 3, sym_catch_clause, sym_finally_clause, - [60384] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_try_statement_repeat1, + [53005] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3534), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [53016] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3493), 1, + anon_sym_LBRACE, + ACTIONS(3495), 1, + anon_sym_DOLLAR, + ACTIONS(3536), 1, + sym_name, + STATE(1538), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53033] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1648), 1, anon_sym_BSLASH, - STATE(1684), 1, - sym_text_interpolation, - STATE(2254), 1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3377), 3, + ACTIONS(3361), 3, anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [60405] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1006), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [53048] = 6, + ACTIONS(1506), 1, sym_comment, - STATE(1685), 1, - sym_text_interpolation, - ACTIONS(1004), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [60424] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3530), 1, - anon_sym_LBRACE, - ACTIONS(3532), 1, - anon_sym_DASH_GT, - ACTIONS(3534), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3536), 1, - anon_sym_LBRACK, - STATE(1686), 1, - sym_text_interpolation, - [60449] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3522), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, ACTIONS(3538), 1, anon_sym_COLON, - STATE(1687), 1, - sym_text_interpolation, - STATE(2110), 1, + STATE(2071), 1, sym_enum_declaration_list, - STATE(2239), 1, + STATE(2223), 1, sym_class_interface_clause, - [60474] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53067] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR, ACTIONS(3540), 1, - sym_name, - ACTIONS(3542), 1, + anon_sym_BSLASH, + STATE(1697), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3416), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1688), 1, - sym_text_interpolation, - STATE(862), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60497] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53082] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3545), 1, + anon_sym_BSLASH, + STATE(1862), 1, + sym_compound_statement, + ACTIONS(3543), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53099] = 4, + ACTIONS(1058), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1056), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3547), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53114] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3408), 1, anon_sym_COLON_COLON, - ACTIONS(3530), 1, + ACTIONS(3549), 1, anon_sym_LBRACE, - ACTIONS(3536), 1, + ACTIONS(3551), 1, + anon_sym_DASH_GT, + ACTIONS(3553), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3555), 1, anon_sym_LBRACK, - ACTIONS(3544), 1, + [53133] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, + ACTIONS(3549), 1, + anon_sym_LBRACE, + ACTIONS(3555), 1, + anon_sym_LBRACK, + ACTIONS(3557), 1, anon_sym_DASH_GT, - ACTIONS(3546), 1, + ACTIONS(3559), 1, anon_sym_QMARK_DASH_GT, - STATE(1689), 1, - sym_text_interpolation, - [60522] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53152] = 4, + ACTIONS(1082), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3548), 1, - sym_name, - STATE(1690), 1, - sym_text_interpolation, - STATE(1761), 1, - sym_namespace_name, - STATE(2012), 1, - sym_namespace_use_group_clause, - ACTIONS(3550), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [60545] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1080), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3561), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53167] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3552), 1, - sym_name, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3556), 1, + ACTIONS(3373), 1, + anon_sym_PIPE, + STATE(1653), 1, + aux_sym_union_type_repeat1, + ACTIONS(3563), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - STATE(1691), 1, - sym_text_interpolation, - STATE(1609), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60568] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [53182] = 4, + ACTIONS(1088), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3560), 1, - anon_sym_BSLASH, - STATE(1692), 1, - sym_text_interpolation, - STATE(2117), 1, - sym_compound_statement, - ACTIONS(3558), 2, + ACTIONS(1086), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3565), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60591] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(981), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [53197] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1693), 1, - sym_text_interpolation, - ACTIONS(979), 4, + ACTIONS(3567), 1, aux_sym_catch_clause_token1, + ACTIONS(3569), 1, aux_sym_finally_clause_token1, + STATE(419), 3, + sym_catch_clause, + sym_finally_clause, + aux_sym_try_statement_repeat1, + [53212] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3571), 1, + anon_sym_DOT_DOT_DOT, + STATE(1978), 1, + sym_reference_modifier, + STATE(1980), 1, + sym_variable_name, + [53231] = 4, + ACTIONS(1096), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1094), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60610] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1124), 1, + ACTIONS(3573), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3577), 1, + sym_heredoc_end, + STATE(1828), 1, + sym_nowdoc_body, + STATE(2002), 1, + sym__new_line, + ACTIONS(3575), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [53263] = 4, + ACTIONS(1114), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1694), 1, - sym_text_interpolation, - ACTIONS(1122), 2, + ACTIONS(1112), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3562), 2, + ACTIONS(3579), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60631] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53278] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, + ACTIONS(3581), 1, + sym_heredoc_end, + STATE(1326), 1, + sym__new_line, + STATE(1827), 1, + sym_heredoc_body, + ACTIONS(3479), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [53295] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3396), 1, anon_sym_LBRACE, - ACTIONS(3520), 1, - anon_sym_LBRACK, - ACTIONS(3564), 1, - anon_sym_DASH_GT, - ACTIONS(3566), 1, - anon_sym_QMARK_DASH_GT, - STATE(1695), 1, - sym_text_interpolation, - [60656] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3568), 1, + ACTIONS(3398), 1, + anon_sym_DOLLAR, + ACTIONS(3583), 1, + sym_name, + STATE(1583), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53312] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3585), 1, + anon_sym_AMP, + STATE(1676), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3534), 3, anon_sym_LBRACE, - ACTIONS(3570), 1, - anon_sym_DASH_GT, - ACTIONS(3572), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3574), 1, - anon_sym_LBRACK, - STATE(1696), 1, - sym_text_interpolation, - [60681] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1026), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53327] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1697), 1, - sym_text_interpolation, - ACTIONS(1024), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3576), 2, + ACTIONS(3588), 1, + anon_sym_COMMA, + STATE(1677), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3361), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [53342] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3353), 5, sym__automatic_semicolon, anon_sym_SEMI, - [60702] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [53353] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3591), 1, anon_sym_PIPE, - STATE(1698), 2, - sym_text_interpolation, + STATE(1679), 1, aux_sym_union_type_repeat1, - ACTIONS(3371), 3, + ACTIONS(3345), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - [60721] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53368] = 5, + ACTIONS(595), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3530), 1, + ACTIONS(3594), 1, + sym_name, + ACTIONS(3596), 1, anon_sym_LBRACE, - ACTIONS(3536), 1, - anon_sym_LBRACK, - ACTIONS(3581), 1, - anon_sym_DASH_GT, - ACTIONS(3583), 1, - anon_sym_QMARK_DASH_GT, - STATE(1699), 1, - sym_text_interpolation, - [60746] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1050), 1, + STATE(584), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53385] = 6, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3598), 1, + aux_sym_if_statement_token2, + ACTIONS(3600), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3603), 1, + aux_sym_else_clause_token1, + STATE(1681), 1, + aux_sym_if_statement_repeat2, + STATE(1934), 1, + sym_else_if_clause_2, + [53404] = 4, + ACTIONS(1076), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1700), 1, - sym_text_interpolation, - ACTIONS(1048), 2, + ACTIONS(1074), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3585), 2, + ACTIONS(3605), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60767] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3587), 1, - sym_heredoc_end, - STATE(1701), 1, - sym_text_interpolation, - STATE(1869), 1, - sym_nowdoc_body, - STATE(2047), 1, - sym__new_line, - ACTIONS(3421), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [60790] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1056), 1, + [53419] = 4, + ACTIONS(1064), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1702), 1, - sym_text_interpolation, - ACTIONS(1054), 2, + ACTIONS(1062), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3589), 2, + ACTIONS(3607), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60811] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1062), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [53434] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1703), 1, - sym_text_interpolation, - ACTIONS(1060), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3591), 2, + ACTIONS(3166), 5, sym__automatic_semicolon, anon_sym_SEMI, - [60832] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [53445] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(3593), 1, + ACTIONS(3422), 1, anon_sym_AMP, - ACTIONS(3595), 1, + ACTIONS(3609), 1, anon_sym_RPAREN, - STATE(1704), 1, - sym_text_interpolation, - STATE(2169), 2, + STATE(2129), 2, sym_variable_name, sym_variable_reference, - [60855] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3597), 1, - anon_sym_AMP, - STATE(1705), 2, - sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3600), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [60874] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, + [53462] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3602), 1, - sym_name, - ACTIONS(3604), 1, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, + ACTIONS(3611), 1, anon_sym_LBRACE, - STATE(1706), 1, - sym_text_interpolation, - STATE(593), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60897] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3613), 1, + anon_sym_DASH_GT, + ACTIONS(3615), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3617), 1, + anon_sym_LBRACK, + [53481] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3606), 1, - anon_sym_LBRACE, - ACTIONS(3608), 1, + ACTIONS(3621), 1, anon_sym_COLON, - STATE(492), 1, - sym_enum_declaration_list, - STATE(1707), 1, - sym_text_interpolation, - STATE(2369), 1, - sym_class_interface_clause, - [60922] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3610), 1, - sym_name, - ACTIONS(3612), 1, - anon_sym_LBRACE, - STATE(1708), 1, - sym_text_interpolation, - STATE(627), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60945] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1510), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3614), 1, - sym_name, - ACTIONS(3616), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_text_interpolation, - STATE(789), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60968] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, + STATE(2055), 1, + sym__return_type, + ACTIONS(3619), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(1516), 1, + [53496] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3464), 1, - sym_name, - ACTIONS(3466), 1, + ACTIONS(3625), 1, anon_sym_BSLASH, - STATE(1692), 1, - sym_namespace_name, - STATE(1710), 1, - sym_text_interpolation, - STATE(2129), 1, - sym_compound_statement, - [60993] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1096), 1, + STATE(1688), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3623), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [53511] = 4, + ACTIONS(1070), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1711), 1, - sym_text_interpolation, - ACTIONS(1094), 2, + ACTIONS(1068), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3618), 2, + ACTIONS(3628), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61014] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1038), 1, + [53526] = 4, + ACTIONS(1010), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1712), 1, - sym_text_interpolation, - ACTIONS(1036), 2, + ACTIONS(1008), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3620), 2, + ACTIONS(3630), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61035] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1074), 1, + [53541] = 4, + ACTIONS(1034), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1713), 1, - sym_text_interpolation, - ACTIONS(1072), 2, + ACTIONS(1032), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3622), 2, + ACTIONS(3632), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61056] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3624), 1, - sym_heredoc_end, - STATE(1336), 1, - sym__new_line, - STATE(1714), 1, - sym_text_interpolation, - STATE(1844), 1, - sym_heredoc_body, - ACTIONS(3425), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [61079] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53556] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_EQ, - STATE(1715), 1, - sym_text_interpolation, - STATE(2123), 1, - sym_property_initializer, - ACTIONS(3626), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [61100] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3634), 1, + sym_name, + ACTIONS(3636), 1, + anon_sym_LBRACE, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + STATE(1413), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53573] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - STATE(1716), 2, - sym_text_interpolation, + STATE(1679), 1, aux_sym_union_type_repeat1, - ACTIONS(3371), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3563), 3, anon_sym_LBRACE, - [61119] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53588] = 6, + ACTIONS(987), 1, + aux_sym_while_statement_token1, + ACTIONS(989), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3633), 1, - anon_sym_AMP, - STATE(1717), 2, - sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3600), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [61138] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3640), 1, + aux_sym_else_if_clause_token1, + STATE(1694), 1, + aux_sym_if_statement_repeat1, + STATE(2043), 1, + sym_else_if_clause, + [53607] = 5, + ACTIONS(1506), 1, sym_comment, ACTIONS(3636), 1, - sym_name, - ACTIONS(3638), 1, anon_sym_LBRACE, - ACTIONS(3640), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - STATE(1718), 1, - sym_text_interpolation, - STATE(1561), 2, + ACTIONS(3643), 1, + sym_name, + STATE(1413), 2, sym_dynamic_variable_name, sym_variable_name, - [61161] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + [53624] = 6, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3642), 1, - sym_heredoc_end, - STATE(1336), 1, - sym__new_line, - STATE(1719), 1, - sym_text_interpolation, - STATE(1776), 1, - sym_heredoc_body, - ACTIONS(3425), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [61184] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3402), 1, + sym_name, + ACTIONS(3404), 1, + anon_sym_BSLASH, + STATE(1662), 1, + sym_namespace_name, + STATE(2087), 1, + sym_compound_statement, + [53643] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3470), 1, - anon_sym_COLON, - STATE(1720), 1, - sym_text_interpolation, - STATE(2091), 1, - sym__return_type, - ACTIONS(3644), 3, + ACTIONS(3645), 1, + anon_sym_BSLASH, + STATE(1697), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3623), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61205] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, + [53658] = 5, + ACTIONS(1500), 1, anon_sym_DOLLAR, - ACTIONS(3593), 1, - anon_sym_AMP, - ACTIONS(3646), 1, - anon_sym_RPAREN, - STATE(1721), 1, - sym_text_interpolation, - STATE(2169), 2, - sym_variable_name, - sym_variable_reference, - [61228] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1722), 1, - sym_text_interpolation, - ACTIONS(3395), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [61245] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, ACTIONS(3648), 1, - anon_sym_LBRACE, + sym_name, ACTIONS(3650), 1, - anon_sym_DASH_GT, - ACTIONS(3652), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3654), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_text_interpolation, - [61270] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3638), 1, anon_sym_LBRACE, - ACTIONS(3640), 1, - anon_sym_DOLLAR, - ACTIONS(3656), 1, - sym_name, - STATE(1724), 1, - sym_text_interpolation, - STATE(1561), 2, + STATE(783), 2, sym_dynamic_variable_name, sym_variable_name, - [61293] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1725), 1, - sym_text_interpolation, - ACTIONS(3138), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [61310] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53675] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3658), 1, - sym_name, - STATE(1726), 1, - sym_text_interpolation, - STATE(2245), 1, - sym__reserved_identifier, - ACTIONS(3048), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [61331] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1090), 1, + ACTIONS(3408), 1, + anon_sym_COLON_COLON, + ACTIONS(3549), 1, + anon_sym_LBRACE, + ACTIONS(3555), 1, + anon_sym_LBRACK, + ACTIONS(3652), 1, + anon_sym_DASH_GT, + ACTIONS(3654), 1, + anon_sym_QMARK_DASH_GT, + [53694] = 4, + ACTIONS(1108), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1727), 1, - sym_text_interpolation, - ACTIONS(1088), 2, + ACTIONS(1106), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3660), 2, + ACTIONS(3656), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61352] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + [53709] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3496), 1, - sym_php_tag, - ACTIONS(3501), 1, - ts_builtin_sym_end, - ACTIONS(3662), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1728), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [61373] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3517), 1, + sym_name, + STATE(1776), 1, + sym_namespace_name, + STATE(2136), 1, + sym_namespace_use_group_clause, + ACTIONS(3519), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [53726] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3665), 1, - anon_sym_PIPE, - STATE(1729), 2, - sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3371), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61392] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3444), 1, + anon_sym_LBRACE, + ACTIONS(3658), 1, + anon_sym_COLON, + STATE(522), 1, + sym_enum_declaration_list, + STATE(2243), 1, + sym_class_interface_clause, + [53745] = 6, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(1648), 1, anon_sym_BSLASH, - STATE(1730), 1, - sym_text_interpolation, - STATE(1736), 1, + ACTIONS(3313), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(1984), 1, + aux_sym_base_clause_repeat1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3668), 3, + [53764] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3285), 1, + anon_sym_PIPE, + STATE(1708), 1, + aux_sym_union_type_repeat1, + ACTIONS(3563), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61413] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53779] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3673), 1, - anon_sym_COMMA, - STATE(1731), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(3377), 3, + ACTIONS(3343), 5, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - [61432] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + anon_sym_PIPE, + [53790] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3560), 1, - anon_sym_BSLASH, - STATE(497), 1, - sym_compound_statement, - STATE(1732), 1, - sym_text_interpolation, - ACTIONS(3676), 2, + ACTIONS(3662), 1, + anon_sym_AMP, + STATE(1706), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3534), 3, sym__automatic_semicolon, anon_sym_SEMI, - [61455] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3678), 1, - anon_sym_BSLASH, - STATE(1733), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3449), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61474] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1660), 1, - anon_sym_BSLASH, - ACTIONS(3409), 1, - anon_sym_COMMA, - ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(1734), 1, - sym_text_interpolation, - STATE(2029), 1, - aux_sym_base_clause_repeat1, - STATE(2254), 1, - aux_sym_namespace_name_repeat1, - [61499] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53805] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3683), 1, - aux_sym_catch_clause_token1, - ACTIONS(3685), 1, - aux_sym_finally_clause_token1, - STATE(420), 1, - aux_sym_try_statement_repeat1, - STATE(1735), 1, - sym_text_interpolation, - STATE(439), 2, - sym_catch_clause, - sym_finally_clause, - [61522] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3289), 1, + anon_sym_AMP, + STATE(1676), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3400), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [53820] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3687), 1, - anon_sym_BSLASH, - STATE(1655), 1, - aux_sym_namespace_name_repeat1, - STATE(1736), 1, - sym_text_interpolation, - ACTIONS(3435), 3, + ACTIONS(3665), 1, + anon_sym_PIPE, + STATE(1708), 1, + aux_sym_union_type_repeat1, + ACTIONS(3345), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61543] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(989), 1, - aux_sym_while_statement_token1, - ACTIONS(991), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3690), 1, - aux_sym_else_if_clause_token1, - STATE(2081), 1, - sym_else_if_clause, - STATE(1737), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat1, - [61566] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53835] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3568), 1, + ACTIONS(3621), 1, + anon_sym_COLON, + STATE(2038), 1, + sym__return_type, + ACTIONS(3668), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3574), 1, - anon_sym_LBRACK, - ACTIONS(3693), 1, - anon_sym_DASH_GT, - ACTIONS(3695), 1, - anon_sym_QMARK_DASH_GT, - STATE(1738), 1, - sym_text_interpolation, - [61591] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1108), 1, + [53850] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3299), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1885), 1, + sym_namespace_aliasing_clause, + ACTIONS(3297), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [53865] = 3, + ACTIONS(977), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1739), 1, - sym_text_interpolation, - ACTIONS(1106), 2, + ACTIONS(975), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3697), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61612] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53878] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1740), 1, - sym_text_interpolation, - ACTIONS(1558), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [61629] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1032), 1, + ACTIONS(3670), 1, + sym_heredoc_end, + STATE(1326), 1, + sym__new_line, + STATE(1793), 1, + sym_heredoc_body, + ACTIONS(3479), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [53895] = 4, + ACTIONS(1048), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1741), 1, - sym_text_interpolation, - ACTIONS(1030), 2, + ACTIONS(1046), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3699), 2, + ACTIONS(3672), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61650] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3701), 1, - sym_name, - ACTIONS(3703), 1, - anon_sym_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR, - STATE(1742), 1, - sym_text_interpolation, - STATE(1429), 2, - sym_dynamic_variable_name, - sym_variable_name, - [61673] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3707), 1, - sym_name, - STATE(1743), 1, - sym_text_interpolation, - STATE(2141), 1, - sym_visibility_modifier, - ACTIONS(3709), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [61694] = 6, + [53910] = 5, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(3713), 1, + ACTIONS(3674), 1, sym_heredoc_end, - ACTIONS(3715), 1, - sym_nowdoc_string, - ACTIONS(3711), 2, + STATE(1728), 1, + sym_nowdoc_body, + STATE(2002), 1, + sym__new_line, + ACTIONS(3575), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - STATE(1744), 2, - sym_text_interpolation, - aux_sym_nowdoc_body_repeat1, - [61715] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1745), 1, - sym_text_interpolation, - ACTIONS(3600), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61732] = 8, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3606), 1, + [53927] = 5, + ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(3718), 1, - anon_sym_COLON, - STATE(535), 1, - sym_enum_declaration_list, - STATE(1746), 1, - sym_text_interpolation, - STATE(2289), 1, - sym_class_interface_clause, - [61757] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3545), 1, anon_sym_BSLASH, - STATE(1653), 1, - aux_sym_namespace_name_repeat1, - STATE(1747), 1, - sym_text_interpolation, - ACTIONS(3668), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61778] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3548), 1, - sym_name, - STATE(1748), 1, - sym_text_interpolation, - STATE(1761), 1, - sym_namespace_name, - STATE(2177), 1, - sym_namespace_use_group_clause, - ACTIONS(3550), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [61801] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3556), 1, - anon_sym_DOLLAR, - ACTIONS(3720), 1, - sym_name, - STATE(1749), 1, - sym_text_interpolation, - STATE(1609), 2, - sym_dynamic_variable_name, - sym_variable_name, - [61824] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3703), 1, - anon_sym_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR, - ACTIONS(3722), 1, - sym_name, - STATE(1750), 1, - sym_text_interpolation, - STATE(1429), 2, - sym_dynamic_variable_name, - sym_variable_name, - [61847] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(461), 1, + sym_compound_statement, + ACTIONS(3676), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53944] = 4, + ACTIONS(1028), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3299), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1751), 1, - sym_text_interpolation, - STATE(1924), 1, - sym_namespace_aliasing_clause, - ACTIONS(3297), 3, + ACTIONS(1026), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3678), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [61868] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53959] = 4, + ACTIONS(1040), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_COMMA, - STATE(1752), 1, - sym_text_interpolation, - STATE(1893), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3724), 2, + ACTIONS(1038), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3680), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61888] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53974] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1753), 1, - sym_text_interpolation, - STATE(1946), 1, + STATE(1591), 1, sym_formal_parameters, - STATE(2335), 1, + STATE(2253), 1, sym_reference_modifier, - [61910] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1754), 1, - sym_text_interpolation, - STATE(2518), 1, - sym_declare_directive, - ACTIONS(3728), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [61928] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [53990] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1755), 1, - sym_text_interpolation, - STATE(1809), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3730), 2, + STATE(1843), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3682), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61948] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54004] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1756), 1, - sym_text_interpolation, - ACTIONS(3734), 4, + ACTIONS(3688), 1, + anon_sym_EQ, + ACTIONS(3686), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [61964] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COMMA, + [54016] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1060), 1, + STATE(1081), 1, sym_compound_statement, - STATE(1757), 1, - sym_text_interpolation, - STATE(2263), 1, + STATE(2222), 1, sym__return_type, - [61986] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54032] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(3593), 1, + ACTIONS(3345), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [54042] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3534), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_AMP, - STATE(1758), 1, - sym_text_interpolation, - STATE(2169), 2, - sym_variable_name, - sym_variable_reference, - [62006] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LBRACE, + [54052] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1759), 1, - sym_text_interpolation, - ACTIONS(3736), 4, - aux_sym_namespace_use_declaration_token1, + ACTIONS(3690), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_EQ_GT, - [62022] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3740), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1760), 1, - sym_text_interpolation, - STATE(2179), 1, - sym_namespace_aliasing_clause, - ACTIONS(3738), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [62042] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3740), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1761), 1, - sym_text_interpolation, - STATE(2252), 1, - sym_namespace_aliasing_clause, - ACTIONS(3742), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [62062] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54062] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1762), 1, - sym_text_interpolation, - ACTIONS(3449), 4, + ACTIONS(3623), 4, anon_sym_COMMA, anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [62078] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54072] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1763), 1, - sym_text_interpolation, - ACTIONS(3734), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [62094] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3694), 1, + anon_sym_COMMA, + STATE(1824), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54086] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1764), 1, - sym_text_interpolation, - STATE(2495), 1, + STATE(2404), 1, sym_declare_directive, - ACTIONS(3728), 3, + ACTIONS(3696), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [62112] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1105), 1, - sym_compound_statement, - STATE(1765), 1, - sym_text_interpolation, - STATE(2256), 1, - sym__return_type, - [62134] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3030), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3744), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3746), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1766), 1, - sym_text_interpolation, - STATE(2535), 1, - sym_static_modifier, - [62156] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54098] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1581), 1, - sym_formal_parameters, - STATE(1767), 1, - sym_text_interpolation, - STATE(2305), 1, - sym_reference_modifier, - [62178] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3700), 1, + sym_heredoc_end, + STATE(2575), 1, + sym__new_line, + ACTIONS(3698), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [54112] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - STATE(1752), 1, - aux_sym__const_declaration_repeat1, - STATE(1768), 1, - sym_text_interpolation, - ACTIONS(3748), 2, + STATE(1829), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3702), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62198] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_declaration_list, - STATE(1769), 1, - sym_text_interpolation, - STATE(2287), 1, - sym_base_clause, - [62220] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54126] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1770), 1, - sym_text_interpolation, - STATE(1875), 1, + STATE(1765), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3752), 2, + ACTIONS(3706), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62240] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54140] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3313), 1, + anon_sym_COMMA, + STATE(1820), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3315), 2, anon_sym_LBRACE, - STATE(445), 1, - sym_declaration_list, - STATE(1771), 1, - sym_text_interpolation, - STATE(2261), 1, - sym_class_interface_clause, - [62262] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_interface_clause_token1, + [54154] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3606), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(511), 1, - sym_enum_declaration_list, - STATE(1772), 1, - sym_text_interpolation, - STATE(2330), 1, + STATE(440), 1, + sym_declaration_list, + STATE(2234), 1, sym_class_interface_clause, - [62284] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54170] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1773), 1, - sym_text_interpolation, - STATE(1854), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3754), 2, + STATE(1765), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54184] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3684), 1, + anon_sym_COMMA, + STATE(1740), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3708), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62304] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54198] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(452), 1, sym_declaration_list, - STATE(1774), 1, - sym_text_interpolation, - STATE(2209), 1, + STATE(2149), 1, sym_class_interface_clause, - [62326] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54214] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1053), 1, - sym_declaration_list, - STATE(1775), 1, - sym_text_interpolation, - STATE(2395), 1, + ACTIONS(3444), 1, + anon_sym_LBRACE, + STATE(474), 1, + sym_enum_declaration_list, + STATE(2288), 1, sym_class_interface_clause, - [62348] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + [54230] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3760), 1, - sym_heredoc_end, - STATE(1776), 1, - sym_text_interpolation, - STATE(2456), 1, - sym__new_line, - ACTIONS(3758), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [62368] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3710), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [54240] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1679), 4, anon_sym_AMP, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1631), 1, - sym_formal_parameters, - STATE(1777), 1, - sym_text_interpolation, - STATE(2272), 1, - sym_reference_modifier, - [62390] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [54250] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1778), 1, - sym_text_interpolation, - STATE(1839), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3762), 2, + STATE(1788), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3712), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62410] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54264] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3768), 1, - anon_sym_EQ, - STATE(1779), 1, - sym_text_interpolation, - ACTIONS(3766), 3, + ACTIONS(3684), 1, + anon_sym_COMMA, + STATE(1765), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3716), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [62428] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54278] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1780), 1, - sym_text_interpolation, - STATE(1836), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3770), 2, + STATE(1855), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3718), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62448] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1600), 1, - sym_formal_parameters, - STATE(1781), 1, - sym_text_interpolation, - STATE(2262), 1, - sym_reference_modifier, - [62470] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54292] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(1782), 1, - sym_text_interpolation, - STATE(2593), 1, - sym_declare_directive, - ACTIONS(3728), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [62488] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + ACTIONS(3720), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_declaration_list, + STATE(2241), 1, + sym_base_clause, + [54308] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LPAREN, - STATE(1783), 1, - sym_text_interpolation, - STATE(2326), 1, - sym_arguments, - ACTIONS(3367), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [62508] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1784), 1, - sym_text_interpolation, - ACTIONS(3774), 4, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - [62524] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3724), 1, + sym_heredoc_end, + STATE(2415), 1, + sym__new_line, + ACTIONS(3722), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [54322] = 5, + ACTIONS(1506), 1, sym_comment, - STATE(1785), 1, - sym_text_interpolation, - ACTIONS(3776), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3305), 1, anon_sym_LBRACE, + ACTIONS(3307), 1, anon_sym_COLON, - [62540] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1048), 1, + sym_compound_statement, + STATE(2146), 1, + sym__return_type, + [54338] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3020), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3030), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3778), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1786), 1, - sym_text_interpolation, - STATE(2535), 1, - sym_static_modifier, - [62562] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3728), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3726), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54352] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1787), 1, - sym_text_interpolation, - ACTIONS(3780), 4, + ACTIONS(3730), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [62578] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54362] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1663), 1, - sym_declaration_list, - STATE(1788), 1, - sym_text_interpolation, - STATE(2294), 1, - sym_class_interface_clause, - [62600] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(967), 1, + STATE(1050), 1, sym_compound_statement, - STATE(1789), 1, - sym_text_interpolation, - STATE(2295), 1, + STATE(2145), 1, sym__return_type, - [62622] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54378] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3782), 1, - anon_sym_SEMI, - ACTIONS(3784), 1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3444), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - sym__automatic_semicolon, - STATE(1368), 1, - sym_compound_statement, - STATE(1790), 1, - sym_text_interpolation, - [62644] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3258), 1, + STATE(512), 1, + sym_enum_declaration_list, + STATE(2143), 1, + sym_class_interface_clause, + [54394] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(449), 1, sym_declaration_list, - STATE(1791), 1, - sym_text_interpolation, - STATE(2182), 1, + STATE(2142), 1, sym_class_interface_clause, - [62666] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54410] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - STATE(1792), 1, - sym_text_interpolation, - STATE(1821), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3788), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62686] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + ACTIONS(3734), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2137), 1, + sym_namespace_aliasing_clause, + ACTIONS(3732), 2, anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3790), 1, - anon_sym_EQ, - ACTIONS(3792), 1, - anon_sym_RPAREN, - STATE(1793), 1, - sym_text_interpolation, - STATE(1900), 1, - aux_sym__list_destructing_repeat1, - [62708] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RBRACE, + [54424] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_LBRACE, - ACTIONS(3794), 1, - anon_sym_SEMI, - ACTIONS(3796), 1, - sym__automatic_semicolon, - STATE(1377), 1, - sym_compound_statement, - STATE(1794), 1, - sym_text_interpolation, - [62730] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1616), 1, + sym_formal_parameters, + STATE(2226), 1, + sym_reference_modifier, + [54440] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3800), 1, - anon_sym_PIPE, - ACTIONS(3798), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - STATE(1795), 2, - sym_text_interpolation, - aux_sym_type_list_repeat1, - [62748] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1796), 1, - sym_text_interpolation, - ACTIONS(3371), 4, + ACTIONS(3684), 1, + anon_sym_COMMA, + STATE(1733), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3736), 2, sym__automatic_semicolon, anon_sym_SEMI, + [54454] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3311), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [62764] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(446), 1, + sym_declaration_list, + STATE(2150), 1, + sym_class_interface_clause, + [54470] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1797), 1, - sym_text_interpolation, - ACTIONS(3600), 4, + ACTIONS(3623), 4, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, + anon_sym_BSLASH, anon_sym_LBRACE, - [62780] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54480] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1798), 1, - sym_text_interpolation, - ACTIONS(3736), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3738), 4, + aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, - [62796] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [54490] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3606), 1, - anon_sym_LBRACE, - STATE(498), 1, - sym_enum_declaration_list, - STATE(1799), 1, - sym_text_interpolation, - STATE(2183), 1, - sym_class_interface_clause, - [62818] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_formal_parameters, + STATE(2216), 1, + sym_reference_modifier, + [54506] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1587), 1, + STATE(1602), 1, sym_formal_parameters, - STATE(1800), 1, - sym_text_interpolation, - STATE(2372), 1, + STATE(2259), 1, sym_reference_modifier, - [62840] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54522] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1076), 1, - sym_compound_statement, - STATE(1801), 1, - sym_text_interpolation, - STATE(2184), 1, - sym__return_type, - [62862] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1595), 1, + sym_formal_parameters, + STATE(2263), 1, + sym_reference_modifier, + [54538] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3740), 1, + anon_sym_SEMI, + ACTIONS(3742), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1073), 1, + ACTIONS(3744), 1, + sym__automatic_semicolon, + STATE(1344), 1, sym_compound_statement, - STATE(1802), 1, - sym_text_interpolation, - STATE(2187), 1, - sym__return_type, - [62884] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54554] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2986), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3746), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3748), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2493), 1, + sym_static_modifier, + [54570] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(456), 1, + STATE(1045), 1, sym_declaration_list, - STATE(1803), 1, - sym_text_interpolation, - STATE(2189), 1, + STATE(2164), 1, sym_class_interface_clause, - [62906] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3803), 1, - sym_integer, - STATE(1804), 1, - sym_text_interpolation, - STATE(2199), 1, - sym_string, - ACTIONS(298), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [62926] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54586] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - STATE(1805), 1, - sym_text_interpolation, - STATE(1812), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3805), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62946] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - STATE(1806), 1, - sym_text_interpolation, - STATE(1809), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3807), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [62966] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1691), 1, + sym_declaration_list, + STATE(2339), 1, + sym_class_interface_clause, + [54602] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(1122), 1, sym_declaration_list, - STATE(1807), 1, - sym_text_interpolation, - STATE(2384), 1, + STATE(2257), 1, sym_class_interface_clause, - [62988] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54618] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(919), 1, + STATE(1121), 1, sym_declaration_list, - STATE(1808), 1, - sym_text_interpolation, - STATE(2385), 1, + STATE(2258), 1, sym_class_interface_clause, - [63010] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54634] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3811), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3809), 2, + STATE(1765), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3750), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1809), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [63028] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54648] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, - anon_sym_AMP, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1573), 1, - sym_formal_parameters, - STATE(1810), 1, - sym_text_interpolation, - STATE(2299), 1, - sym_reference_modifier, - [63050] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3755), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54658] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1755), 1, - aux_sym_property_declaration_repeat2, - STATE(1811), 1, - sym_text_interpolation, - ACTIONS(3814), 2, + STATE(1730), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3757), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63070] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54672] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - STATE(1809), 1, - aux_sym_property_declaration_repeat2, - STATE(1812), 1, - sym_text_interpolation, - ACTIONS(3816), 2, + ACTIONS(3759), 4, sym__automatic_semicolon, anon_sym_SEMI, - [63090] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LBRACE, + anon_sym_COLON, + [54682] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3784), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3818), 1, - anon_sym_SEMI, - ACTIONS(3820), 1, - sym__automatic_semicolon, - STATE(1367), 1, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1079), 1, sym_compound_statement, - STATE(1813), 1, - sym_text_interpolation, - [63112] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2214), 1, + sym__return_type, + [54698] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3738), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [54708] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3361), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1814), 1, - sym_text_interpolation, - STATE(1849), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3822), 2, anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [63132] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54718] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3422), 1, anon_sym_AMP, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1815), 1, - sym_text_interpolation, - STATE(1945), 1, - sym_formal_parameters, - STATE(2333), 1, - sym_reference_modifier, - [63154] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1981), 2, + sym_variable_name, + sym_variable_reference, + [54732] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1056), 1, + sym_compound_statement, + STATE(2296), 1, + sym__return_type, + [54748] = 3, + ACTIONS(1506), 1, + sym_comment, + STATE(2452), 1, + sym_declare_directive, + ACTIONS(3696), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54760] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1816), 1, - sym_text_interpolation, - STATE(2008), 1, + STATE(1907), 1, sym_formal_parameters, - STATE(2364), 1, + STATE(2290), 1, sym_reference_modifier, - [63176] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54776] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3734), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(2212), 1, + sym_namespace_aliasing_clause, + ACTIONS(3761), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54790] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3765), 1, anon_sym_PIPE, - STATE(1817), 1, - sym_text_interpolation, - STATE(1856), 1, + STATE(1800), 1, aux_sym_type_list_repeat1, - ACTIONS(3824), 2, + ACTIONS(3763), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [63196] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54804] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3714), 1, + anon_sym_COMMA, + STATE(1850), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3767), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54818] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1639), 1, + sym_declaration_list, + STATE(2254), 1, + sym_class_interface_clause, + [54834] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3742), 1, + anon_sym_LBRACE, + ACTIONS(3769), 1, + anon_sym_SEMI, + ACTIONS(3771), 1, + sym__automatic_semicolon, + STATE(1353), 1, + sym_compound_statement, + [54850] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1702), 1, + STATE(949), 1, sym_declaration_list, - STATE(1818), 1, - sym_text_interpolation, - STATE(2312), 1, + STATE(2341), 1, sym_class_interface_clause, - [63218] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54866] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3728), 1, + anon_sym_COMMA, + STATE(1832), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3773), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54880] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_COMMA, + STATE(1833), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3775), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54894] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3690), 4, + aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, - ACTIONS(3331), 1, anon_sym_COLON, - STATE(1101), 1, - sym_compound_statement, - STATE(1819), 1, - sym_text_interpolation, - STATE(2361), 1, - sym__return_type, - [63240] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [54904] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3830), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - ACTIONS(3828), 2, + STATE(1836), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3777), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1820), 2, - sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [63258] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54918] = 5, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(919), 1, + sym_compound_statement, + STATE(2255), 1, + sym__return_type, + [54934] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + STATE(904), 1, + sym_declaration_list, + STATE(2342), 1, + sym_class_interface_clause, + [54950] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1809), 1, + STATE(1847), 1, aux_sym_property_declaration_repeat2, - STATE(1821), 1, - sym_text_interpolation, - ACTIONS(3833), 2, + ACTIONS(3779), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63278] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [54964] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3742), 1, + anon_sym_LBRACE, + ACTIONS(3781), 1, + anon_sym_SEMI, + ACTIONS(3783), 1, + sym__automatic_semicolon, + STATE(1347), 1, + sym_compound_statement, + [54980] = 3, + ACTIONS(1506), 1, + sym_comment, + STATE(2519), 1, + sym_declare_directive, + ACTIONS(3696), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [54992] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1806), 1, + STATE(1845), 1, aux_sym_property_declaration_repeat2, - STATE(1822), 1, - sym_text_interpolation, - ACTIONS(3835), 2, + ACTIONS(3785), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63298] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55006] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3240), 1, + aux_sym_base_clause_token1, + STATE(2072), 1, + sym_declaration_list, + STATE(2124), 1, + sym_base_clause, + [55022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 1, + sym_heredoc_end, + STATE(2577), 1, + sym__new_line, + ACTIONS(3787), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [55036] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3522), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1823), 1, - sym_text_interpolation, - STATE(2071), 1, - sym_enum_declaration_list, - STATE(2391), 1, + STATE(1666), 1, + sym_declaration_list, + STATE(2270), 1, sym_class_interface_clause, - [63320] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55052] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1553), 1, + sym_formal_parameters, + STATE(2195), 1, + sym_reference_modifier, + [55068] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3522), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(1824), 1, - sym_text_interpolation, - STATE(2022), 1, + STATE(2004), 1, sym_enum_declaration_list, - STATE(2316), 1, + STATE(2282), 1, sym_class_interface_clause, - [63342] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55084] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1825), 1, - sym_text_interpolation, - ACTIONS(3377), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3791), 1, anon_sym_COMMA, + STATE(1797), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3361), 2, anon_sym_LBRACE, - [63358] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(948), 1, - sym_compound_statement, - STATE(1826), 1, - sym_text_interpolation, - STATE(2321), 1, - sym__return_type, - [63380] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_interface_clause_token1, + [55098] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3794), 1, + sym_integer, + STATE(2123), 1, + sym_string, + ACTIONS(109), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + [55112] = 5, + ACTIONS(833), 1, anon_sym_COMMA, - STATE(1827), 1, - sym_text_interpolation, - STATE(1834), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3837), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63400] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3772), 1, - anon_sym_COMMA, - STATE(1828), 1, - sym_text_interpolation, - STATE(1878), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3839), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63420] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3796), 1, + anon_sym_EQ, + ACTIONS(3798), 1, + anon_sym_RPAREN, + STATE(1946), 1, + aux_sym__list_destructing_repeat1, + [55128] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3764), 1, - anon_sym_COMMA, - STATE(1829), 1, - sym_text_interpolation, - STATE(1879), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3841), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63440] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + ACTIONS(3765), 1, + anon_sym_PIPE, + STATE(1840), 1, + aux_sym_type_list_repeat1, + ACTIONS(3800), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55142] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3710), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [55152] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1869), 1, + sym_formal_parameters, + STATE(2175), 1, + sym_reference_modifier, + [55168] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(944), 1, + STATE(926), 1, sym_compound_statement, - STATE(1830), 1, - sym_text_interpolation, - STATE(2325), 1, + STATE(2285), 1, sym__return_type, - [63462] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55184] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_COMMA, - STATE(1831), 1, - sym_text_interpolation, - STATE(1882), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63482] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1711), 1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1069), 1, sym_declaration_list, - STATE(1832), 1, - sym_text_interpolation, - STATE(2332), 1, + STATE(2353), 1, sym_class_interface_clause, - [63504] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [55200] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LPAREN, + STATE(2281), 1, + sym_arguments, + ACTIONS(3381), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55214] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(933), 1, + STATE(901), 1, sym_compound_statement, - STATE(1833), 1, - sym_text_interpolation, - STATE(2328), 1, + STATE(2287), 1, sym__return_type, - [63526] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3847), 1, - anon_sym_COMMA, - ACTIONS(3845), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1834), 2, - sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [63544] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3726), 1, - anon_sym_COMMA, - STATE(1835), 1, - sym_text_interpolation, - STATE(1889), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3850), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63564] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3772), 1, - anon_sym_COMMA, - STATE(1820), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1836), 1, - sym_text_interpolation, - ACTIONS(3852), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63584] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55230] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(1837), 1, - sym_text_interpolation, - STATE(2565), 1, + STATE(2476), 1, sym_declare_directive, - ACTIONS(3728), 3, + ACTIONS(3696), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [63602] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55242] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3256), 1, - aux_sym_base_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(1838), 1, - sym_text_interpolation, - STATE(2111), 1, - sym_declaration_list, - STATE(2278), 1, - sym_base_clause, - [63624] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2035), 1, + sym_enum_declaration_list, + STATE(2349), 1, + sym_class_interface_clause, + [55258] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2976), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2986), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3802), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2493), 1, + sym_static_modifier, + [55274] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1123), 1, + sym_compound_statement, + STATE(2154), 1, + sym__return_type, + [55290] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3804), 1, + anon_sym_AMP, + STATE(1811), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3534), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55304] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1839), 1, - sym_text_interpolation, - STATE(1870), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3854), 2, + STATE(1847), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3807), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63644] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55318] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3811), 1, anon_sym_COMMA, - STATE(1827), 1, + STATE(1813), 1, aux_sym_namespace_use_declaration_repeat1, - STATE(1840), 1, - sym_text_interpolation, - ACTIONS(3856), 2, + ACTIONS(3809), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63664] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55332] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(3422), 1, anon_sym_AMP, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1638), 1, - sym_formal_parameters, - STATE(1841), 1, - sym_text_interpolation, - STATE(2202), 1, - sym_reference_modifier, - [63686] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2129), 2, + sym_variable_name, + sym_variable_reference, + [55346] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1842), 1, - sym_text_interpolation, - STATE(1906), 1, + STATE(1908), 1, sym_formal_parameters, - STATE(2257), 1, + STATE(2294), 1, sym_reference_modifier, - [63708] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55362] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - STATE(1834), 1, + STATE(1813), 1, aux_sym_namespace_use_declaration_repeat1, - STATE(1843), 1, - sym_text_interpolation, - ACTIONS(3858), 2, + ACTIONS(3814), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63728] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3860), 1, - sym_heredoc_end, - STATE(1844), 1, - sym_text_interpolation, - STATE(2621), 1, - sym__new_line, - ACTIONS(3758), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [63748] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55376] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(459), 1, + STATE(1671), 1, sym_declaration_list, - STATE(1845), 1, - sym_text_interpolation, - STATE(2190), 1, + STATE(2293), 1, sym_class_interface_clause, - [63770] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [55392] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(940), 1, + STATE(911), 1, sym_compound_statement, - STATE(1846), 1, - sym_text_interpolation, - STATE(2404), 1, + STATE(2351), 1, sym__return_type, - [63792] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3864), 1, - sym__eof, - STATE(1847), 1, - sym_text_interpolation, - ACTIONS(3862), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [63810] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55408] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1848), 1, - sym_text_interpolation, - ACTIONS(3866), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [63826] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3818), 1, + anon_sym_COMMA, + STATE(1819), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55422] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(3313), 1, anon_sym_COMMA, - ACTIONS(3377), 2, + STATE(1797), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3821), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - STATE(1849), 2, - sym_text_interpolation, - aux_sym_base_clause_repeat1, - [63844] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55436] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3825), 1, anon_sym_COMMA, - STATE(1850), 1, - sym_text_interpolation, - STATE(1893), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3871), 2, + STATE(1821), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3823), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63864] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55450] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3873), 1, - sym_integer, - STATE(1851), 1, - sym_text_interpolation, - STATE(2163), 1, - sym_string, - ACTIONS(298), 2, - anon_sym_SQUOTE, - aux_sym_string_token1, - [63884] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(3728), 1, + anon_sym_COMMA, + STATE(1821), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55464] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3875), 1, - sym_heredoc_end, - STATE(1852), 1, - sym_text_interpolation, - STATE(2469), 1, - sym__new_line, - ACTIONS(3758), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [63904] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3830), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55478] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3694), 1, anon_sym_COMMA, - STATE(1853), 1, - sym_text_interpolation, - STATE(1883), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3877), 2, + STATE(1819), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3832), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63924] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55492] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - STATE(1834), 1, + STATE(1816), 1, aux_sym_namespace_use_declaration_repeat1, - STATE(1854), 1, - sym_text_interpolation, - ACTIONS(3856), 2, + ACTIONS(3834), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63944] = 6, + [55506] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_COLON, + STATE(1109), 1, + sym_compound_statement, + STATE(2319), 1, + sym__return_type, + [55522] = 4, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(3838), 1, sym_heredoc_end, - STATE(1855), 1, - sym_text_interpolation, - STATE(2468), 1, + STATE(2426), 1, sym__new_line, - ACTIONS(3758), 2, + ACTIONS(3836), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - [63964] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55536] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_PIPE, - STATE(1795), 1, - aux_sym_type_list_repeat1, - STATE(1856), 1, - sym_text_interpolation, - ACTIONS(3881), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [63984] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3842), 1, + sym_heredoc_end, + STATE(2423), 1, + sym__new_line, + ACTIONS(3840), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [55550] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3834), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55564] = 5, + ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1119), 1, + STATE(918), 1, sym_compound_statement, - STATE(1857), 1, - sym_text_interpolation, - STATE(2186), 1, + STATE(2356), 1, sym__return_type, - [64006] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55580] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1858), 1, - sym_text_interpolation, - ACTIONS(3776), 4, + ACTIONS(3759), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [64022] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55590] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3883), 1, - anon_sym_AMP, - STATE(1859), 1, - sym_text_interpolation, - STATE(1865), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [64042] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3728), 1, + anon_sym_COMMA, + STATE(1821), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(3844), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55604] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1860), 1, - sym_text_interpolation, - ACTIONS(3886), 4, + ACTIONS(3694), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [64058] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1819), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(3846), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55618] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_declaration_list, - STATE(1861), 1, - sym_text_interpolation, - STATE(2340), 1, - sym_class_interface_clause, - [64080] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1823), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3848), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55632] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1132), 1, + STATE(961), 1, sym_declaration_list, - STATE(1862), 1, - sym_text_interpolation, - STATE(2297), 1, + STATE(2299), 1, sym_class_interface_clause, - [64102] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55648] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(3848), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55662] = 5, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1617), 1, + STATE(1962), 1, sym_formal_parameters, - STATE(1863), 1, - sym_text_interpolation, - STATE(2422), 1, + STATE(2322), 1, sym_reference_modifier, - [64124] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1133), 1, - sym_declaration_list, - STATE(1864), 1, - sym_text_interpolation, - STATE(2298), 1, - sym_class_interface_clause, - [64146] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3888), 1, - anon_sym_AMP, - ACTIONS(3600), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - STATE(1865), 2, - sym_text_interpolation, - aux_sym_intersection_type_repeat1, - [64164] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_LBRACE, - ACTIONS(3331), 1, - anon_sym_COLON, - STATE(1107), 1, - sym_compound_statement, - STATE(1866), 1, - sym_text_interpolation, - STATE(2338), 1, - sym__return_type, - [64186] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [55678] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(938), 1, + STATE(945), 1, sym_compound_statement, - STATE(1867), 1, - sym_text_interpolation, - STATE(2353), 1, + STATE(2311), 1, sym__return_type, - [64208] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(3593), 1, - anon_sym_AMP, - STATE(1868), 1, - sym_text_interpolation, - STATE(2026), 2, - sym_variable_name, - sym_variable_reference, - [64228] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3891), 1, - sym_heredoc_end, - STATE(1869), 1, - sym_text_interpolation, - STATE(2620), 1, - sym__new_line, - ACTIONS(3758), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [64248] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3895), 1, - anon_sym_COMMA, - ACTIONS(3893), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1870), 2, - sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [64266] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55694] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1741), 1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1683), 1, sym_declaration_list, - STATE(1871), 1, - sym_text_interpolation, - STATE(2357), 1, + STATE(2315), 1, sym_class_interface_clause, - [64288] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55710] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3852), 1, + anon_sym_PIPE, + STATE(1840), 1, + aux_sym_type_list_repeat1, + ACTIONS(3850), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [55724] = 5, + ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(3331), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(1050), 1, + STATE(942), 1, sym_compound_statement, - STATE(1872), 1, - sym_text_interpolation, - STATE(2424), 1, + STATE(2318), 1, sym__return_type, - [64310] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [55740] = 5, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(909), 1, + STATE(964), 1, sym_compound_statement, - STATE(1873), 1, - sym_text_interpolation, - STATE(2360), 1, + STATE(2233), 1, sym__return_type, - [64332] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1874), 1, - sym_text_interpolation, - ACTIONS(3449), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [64348] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55756] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1875), 1, - sym_text_interpolation, - STATE(1893), 1, + STATE(1765), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3748), 2, + ACTIONS(3855), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64368] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55770] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1059), 1, - sym_declaration_list, - STATE(1876), 1, - sym_text_interpolation, - STATE(2206), 1, - sym_class_interface_clause, - [64390] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1877), 1, - sym_text_interpolation, - ACTIONS(3866), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [64406] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3857), 1, + sym_integer, + STATE(2160), 1, + sym_string, + ACTIONS(109), 2, + anon_sym_SQUOTE, + aux_sym_string_token1, + [55784] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1820), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1878), 1, - sym_text_interpolation, - ACTIONS(3898), 2, + STATE(1847), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3859), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64426] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55798] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3764), 1, - anon_sym_COMMA, - STATE(1870), 1, - aux_sym_global_declaration_repeat1, - STATE(1879), 1, - sym_text_interpolation, - ACTIONS(3900), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64446] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1716), 1, + sym_declaration_list, + STATE(2235), 1, + sym_class_interface_clause, + [55814] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - STATE(1843), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1880), 1, - sym_text_interpolation, - ACTIONS(3902), 2, + STATE(1847), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3861), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64466] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55828] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1881), 1, - sym_text_interpolation, - STATE(1887), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3904), 2, + STATE(1812), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3866), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64486] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55842] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3242), 1, + aux_sym_class_interface_clause_token1, + STATE(947), 1, + sym_declaration_list, + STATE(2297), 1, + sym_class_interface_clause, + [55858] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3714), 1, anon_sym_COMMA, - STATE(1834), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1882), 1, - sym_text_interpolation, - ACTIONS(3902), 2, + STATE(1847), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(3868), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64506] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55872] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1883), 1, - sym_text_interpolation, - STATE(1893), 1, + STATE(1765), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3906), 2, + ACTIONS(3870), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64526] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1884), 1, - sym_text_interpolation, - ACTIONS(3908), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - ACTIONS(3910), 2, - sym_heredoc_end, - sym_nowdoc_string, - [64544] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3912), 1, - sym_heredoc_end, - STATE(1885), 1, - sym_text_interpolation, - STATE(2438), 1, - sym__new_line, - ACTIONS(3758), 2, - aux_sym__new_line_token1, - aux_sym__new_line_token2, - [64564] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55886] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1703), 1, anon_sym_AMP, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1629), 1, + STATE(1572), 1, sym_formal_parameters, - STATE(1886), 1, - sym_text_interpolation, - STATE(2309), 1, + STATE(2330), 1, sym_reference_modifier, - [64586] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55902] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_COMMA, - STATE(1887), 1, - sym_text_interpolation, - STATE(1893), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3914), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64606] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(3872), 1, + anon_sym_AMP, + STATE(1811), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [55916] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, anon_sym_COLON, - STATE(958), 1, + STATE(1119), 1, sym_compound_statement, - STATE(1888), 1, - sym_text_interpolation, - STATE(2318), 1, + STATE(2374), 1, sym__return_type, - [64628] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55932] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - STATE(1889), 1, - sym_text_interpolation, - STATE(1893), 1, + STATE(1765), 1, aux_sym__const_declaration_repeat1, - ACTIONS(3904), 2, + ACTIONS(3757), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64648] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55946] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1890), 1, - sym_text_interpolation, - ACTIONS(1709), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [64664] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3877), 1, + sym_heredoc_end, + STATE(2405), 1, + sym__new_line, + ACTIONS(3875), 2, + aux_sym__new_line_token1, + aux_sym__new_line_token2, + [55960] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3726), 1, - anon_sym_COMMA, - STATE(1850), 1, - aux_sym__const_declaration_repeat1, - STATE(1891), 1, - sym_text_interpolation, - ACTIONS(3906), 2, - sym__automatic_semicolon, + ACTIONS(3742), 1, + anon_sym_LBRACE, + ACTIONS(3879), 1, anon_sym_SEMI, - [64684] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3881), 1, + sym__automatic_semicolon, + STATE(1352), 1, + sym_compound_statement, + [55976] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - STATE(1671), 1, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(439), 1, sym_declaration_list, - STATE(1892), 1, - sym_text_interpolation, - STATE(2324), 1, + STATE(2371), 1, sym_class_interface_clause, - [64706] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [55992] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3918), 1, + ACTIONS(3684), 1, anon_sym_COMMA, - ACTIONS(3916), 2, + STATE(1851), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(3855), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1893), 2, - sym_text_interpolation, - aux_sym__const_declaration_repeat1, - [64724] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - STATE(1645), 1, - sym_declaration_list, - STATE(1894), 1, - sym_text_interpolation, - STATE(2382), 1, - sym_class_interface_clause, - [64746] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56006] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3242), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3266), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(963), 1, + STATE(437), 1, sym_declaration_list, - STATE(1895), 1, - sym_text_interpolation, - STATE(2399), 1, + STATE(2155), 1, sym_class_interface_clause, - [64768] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3784), 1, - anon_sym_LBRACE, - ACTIONS(3921), 1, - anon_sym_SEMI, - ACTIONS(3923), 1, - sym__automatic_semicolon, - STATE(1376), 1, - sym_compound_statement, - STATE(1896), 1, - sym_text_interpolation, - [64790] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3409), 1, - anon_sym_COMMA, - STATE(1814), 1, - aux_sym_base_clause_repeat1, - STATE(1897), 1, - sym_text_interpolation, - ACTIONS(3411), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [64810] = 7, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56022] = 5, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3258), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, - STATE(1898), 1, - sym_text_interpolation, - STATE(2425), 1, - sym_class_interface_clause, - [64832] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1703), 1, + anon_sym_AMP, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1586), 1, + sym_formal_parameters, + STATE(2370), 1, + sym_reference_modifier, + [56038] = 3, + ACTIONS(1128), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3864), 1, - ts_builtin_sym_end, - STATE(1899), 1, - sym_text_interpolation, - ACTIONS(3862), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [64850] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, - anon_sym_COMMA, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3925), 1, - anon_sym_RPAREN, - STATE(1900), 1, - sym_text_interpolation, - STATE(1992), 1, - aux_sym__list_destructing_repeat1, - [64869] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1126), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56049] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1901), 1, - sym_text_interpolation, - ACTIONS(3798), 3, + ACTIONS(3850), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - [64884] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, + [56058] = 3, + ACTIONS(117), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1902), 1, - sym_text_interpolation, - STATE(1778), 2, + STATE(1726), 2, sym_dynamic_variable_name, sym_variable_name, - [64901] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56069] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3048), 1, + anon_sym_RBRACK, + ACTIONS(3883), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_attribute_group_repeat1, + [56082] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3927), 1, + ACTIONS(3885), 1, anon_sym_SQUOTE, - ACTIONS(3929), 1, + ACTIONS(3887), 1, anon_sym_DQUOTE, - ACTIONS(3931), 1, + ACTIONS(3889), 1, sym_heredoc_start, - STATE(1903), 1, - sym_text_interpolation, - [64920] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56095] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(2984), 1, aux_sym_readonly_modifier_token1, - ACTIONS(3933), 1, + ACTIONS(3891), 1, aux_sym_class_declaration_token1, - STATE(1904), 1, - sym_text_interpolation, - STATE(2541), 1, + STATE(2499), 1, sym_readonly_modifier, - [64939] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56108] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(3404), 1, anon_sym_BSLASH, - ACTIONS(3935), 1, + ACTIONS(3893), 1, sym_name, - STATE(1905), 1, - sym_text_interpolation, - STATE(2542), 1, + STATE(2550), 1, sym_namespace_name, - [64958] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56121] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(3937), 1, + ACTIONS(3895), 1, anon_sym_EQ_GT, - STATE(1906), 1, - sym_text_interpolation, - STATE(2501), 1, + STATE(2458), 1, sym__return_type, - [64977] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56134] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3939), 1, - anon_sym_COMMA, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(1907), 1, - sym_text_interpolation, - STATE(1943), 1, - aux_sym_array_creation_expression_repeat1, - [64996] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3897), 1, + anon_sym_LBRACE, + ACTIONS(3899), 1, + anon_sym_COLON, + STATE(485), 1, + sym_switch_block, + [56147] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3901), 1, anon_sym_COMMA, - ACTIONS(3946), 1, + ACTIONS(3903), 1, anon_sym_RPAREN, - STATE(1908), 2, - sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [65013] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(789), 1, - anon_sym_RBRACK, - ACTIONS(1516), 1, + STATE(1921), 1, + aux_sym_arguments_repeat1, + [56160] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3905), 1, anon_sym_COMMA, - STATE(1909), 1, - sym_text_interpolation, - STATE(1997), 1, + ACTIONS(3908), 1, + anon_sym_RPAREN, + STATE(1872), 1, aux_sym_array_creation_expression_repeat1, - [65032] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3950), 1, - anon_sym_LBRACE, - ACTIONS(3952), 1, - anon_sym_COLON, - STATE(564), 1, - sym_switch_block, - STATE(1910), 1, - sym_text_interpolation, - [65051] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_RBRACK, - ACTIONS(3954), 1, - anon_sym_COMMA, - STATE(1911), 1, - sym_text_interpolation, - STATE(1998), 1, - aux_sym_attribute_group_repeat1, - [65070] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56173] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3796), 1, anon_sym_EQ, - STATE(1912), 1, - sym_text_interpolation, - ACTIONS(3956), 2, + ACTIONS(3910), 2, anon_sym_COMMA, anon_sym_RBRACK, - [65087] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56184] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(3912), 1, anon_sym_COMMA, - ACTIONS(3960), 1, + ACTIONS(3914), 1, anon_sym_RBRACK, - STATE(1913), 1, - sym_text_interpolation, - STATE(1939), 1, + STATE(1901), 1, aux_sym__array_destructing_repeat1, - [65106] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56197] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3962), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3964), 1, + ACTIONS(3918), 1, anon_sym_RBRACK, - STATE(1914), 1, - sym_text_interpolation, - STATE(1940), 1, + STATE(1902), 1, aux_sym_array_creation_expression_repeat1, - [65125] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3028), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(3966), 1, - aux_sym_class_declaration_token1, - STATE(1915), 1, - sym_text_interpolation, - STATE(2569), 1, - sym_readonly_modifier, - [65144] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3958), 1, - anon_sym_COMMA, - ACTIONS(3960), 1, - anon_sym_RBRACK, - STATE(1916), 1, - sym_text_interpolation, - STATE(1941), 1, - aux_sym__array_destructing_repeat1, - [65163] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56210] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3968), 1, + ACTIONS(3920), 1, anon_sym_COMMA, - ACTIONS(3970), 1, + ACTIONS(3922), 1, anon_sym_RPAREN, - STATE(1917), 1, - sym_text_interpolation, - STATE(1967), 1, - aux_sym_arguments_repeat1, - [65182] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1897), 1, + aux_sym_array_creation_expression_repeat1, + [56223] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3972), 1, + ACTIONS(3912), 1, anon_sym_COMMA, - ACTIONS(3974), 1, - anon_sym_RPAREN, - STATE(1918), 1, - sym_text_interpolation, - STATE(1934), 1, - aux_sym_formal_parameters_repeat1, - [65201] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3914), 1, + anon_sym_RBRACK, + STATE(1903), 1, + aux_sym__array_destructing_repeat1, + [56236] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(3926), 1, anon_sym_RBRACK, - STATE(1919), 1, - sym_text_interpolation, - STATE(1942), 1, + STATE(1904), 1, aux_sym_attribute_group_repeat1, - [65220] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56249] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(2984), 1, aux_sym_readonly_modifier_token1, - ACTIONS(3980), 1, + ACTIONS(3928), 1, aux_sym_class_declaration_token1, - STATE(1920), 1, - sym_text_interpolation, - STATE(2559), 1, + STATE(2523), 1, sym_readonly_modifier, - [65239] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56262] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(2984), 1, aux_sym_readonly_modifier_token1, - ACTIONS(3982), 1, + ACTIONS(3930), 1, aux_sym_class_declaration_token1, - STATE(1921), 1, - sym_text_interpolation, - STATE(2463), 1, + STATE(2513), 1, sym_readonly_modifier, - [65258] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56275] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_COMMA, + ACTIONS(3934), 1, + anon_sym_RPAREN, + STATE(1888), 1, + aux_sym_formal_parameters_repeat1, + [56288] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1681), 1, + ACTIONS(1667), 1, anon_sym_DOLLAR, - STATE(1779), 1, + STATE(1720), 1, sym_variable_name, - STATE(1922), 1, - sym_text_interpolation, - STATE(1947), 1, + STATE(1909), 1, sym_static_variable_declaration, - [65277] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, + [56301] = 3, + ACTIONS(117), 1, anon_sym_DOLLAR, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1923), 1, - sym_text_interpolation, - STATE(1948), 2, + STATE(1910), 2, sym_dynamic_variable_name, sym_variable_name, - [65294] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1924), 1, - sym_text_interpolation, - ACTIONS(3984), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [65309] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56312] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(3988), 1, - anon_sym_RBRACK, - STATE(1911), 1, - aux_sym_attribute_group_repeat1, - STATE(1925), 1, - sym_text_interpolation, - [65328] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2984), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(3936), 1, + aux_sym_class_declaration_token1, + STATE(2421), 1, + sym_readonly_modifier, + [56325] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3990), 1, + ACTIONS(3938), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3992), 1, - anon_sym_RBRACK, - STATE(1909), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1926), 1, - sym_text_interpolation, - [65347] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3994), 1, - anon_sym_LBRACE, - ACTIONS(3996), 1, - anon_sym_COLON, - STATE(1927), 1, - sym_text_interpolation, - STATE(2101), 1, - sym_switch_block, - [65366] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56334] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3940), 1, sym_name, - ACTIONS(4000), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(1928), 1, - sym_text_interpolation, - STATE(2380), 1, + STATE(2336), 1, sym_namespace_use_group, - [65385] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56347] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3944), 1, anon_sym_DOT_DOT_DOT, - STATE(1929), 1, - sym_text_interpolation, - STATE(1954), 1, + STATE(1915), 1, sym_variable_name, - [65404] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56360] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1803), 1, + anon_sym_RPAREN, + ACTIONS(3946), 1, + anon_sym_COMMA, + STATE(1972), 1, + aux_sym_formal_parameters_repeat1, + [56373] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(3948), 1, anon_sym_COMMA, - ACTIONS(4006), 1, + ACTIONS(3950), 1, anon_sym_RPAREN, - STATE(1930), 1, - sym_text_interpolation, - STATE(1956), 1, + STATE(1916), 1, aux_sym_formal_parameters_repeat1, - [65423] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56386] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(3954), 1, anon_sym_EQ, - STATE(1931), 1, - sym_text_interpolation, - ACTIONS(4008), 2, + ACTIONS(3952), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65440] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56397] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(3644), 1, + ACTIONS(3619), 1, anon_sym_LBRACE, - STATE(1932), 1, - sym_text_interpolation, - STATE(2436), 1, + STATE(2398), 1, sym__return_type, - [65459] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56410] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3956), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACK, + STATE(1865), 1, + aux_sym_attribute_group_repeat1, + [56423] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, + anon_sym_RBRACK, + STATE(2027), 1, + aux_sym_array_creation_expression_repeat1, + [56436] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3966), 1, + anon_sym_COLON, + STATE(2063), 1, + sym_switch_block, + [56449] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4012), 1, + ACTIONS(3968), 1, anon_sym_EQ_GT, - STATE(1933), 1, - sym_text_interpolation, - STATE(2431), 1, + STATE(2407), 1, sym__return_type, - [65478] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56462] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_RPAREN, - ACTIONS(4014), 1, + ACTIONS(3970), 1, anon_sym_COMMA, - STATE(1934), 1, - sym_text_interpolation, - STATE(2018), 1, - aux_sym_formal_parameters_repeat1, - [65497] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3972), 1, + anon_sym_RPAREN, + STATE(1930), 1, + aux_sym_array_creation_expression_repeat1, + [56475] = 4, + ACTIONS(769), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(3974), 1, anon_sym_COMMA, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1935), 1, - sym_text_interpolation, - STATE(1978), 1, + STATE(1872), 1, aux_sym_array_creation_expression_repeat1, - [65516] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56488] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1936), 1, - sym_text_interpolation, - ACTIONS(4020), 3, + ACTIONS(3976), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [65531] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + [56497] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1628), 1, anon_sym_RPAREN, - STATE(1937), 1, - sym_text_interpolation, - STATE(1988), 1, + STATE(1942), 1, aux_sym__list_destructing_repeat1, - [65550] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + [56510] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(1628), 1, anon_sym_RPAREN, - STATE(1938), 1, - sym_text_interpolation, - STATE(1992), 1, + STATE(1947), 1, aux_sym__list_destructing_repeat1, - [65569] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56523] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(3912), 1, anon_sym_COMMA, - ACTIONS(4022), 1, + ACTIONS(3978), 1, anon_sym_RBRACK, - STATE(1939), 1, - sym_text_interpolation, - STATE(1941), 1, + STATE(1903), 1, aux_sym__array_destructing_repeat1, - [65588] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(809), 1, + [56536] = 4, + ACTIONS(775), 1, anon_sym_RBRACK, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(3980), 1, anon_sym_COMMA, - STATE(1940), 1, - sym_text_interpolation, - STATE(1997), 1, + STATE(1951), 1, aux_sym_array_creation_expression_repeat1, - [65607] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56549] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4026), 1, + ACTIONS(3982), 1, anon_sym_COMMA, - ACTIONS(4029), 1, + ACTIONS(3985), 1, anon_sym_RBRACK, - STATE(1941), 2, - sym_text_interpolation, + STATE(1903), 1, aux_sym__array_destructing_repeat1, - [65624] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56562] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3044), 1, anon_sym_RBRACK, - ACTIONS(4031), 1, + ACTIONS(3987), 1, anon_sym_COMMA, - STATE(1942), 1, - sym_text_interpolation, - STATE(1998), 1, + STATE(1952), 1, aux_sym_attribute_group_repeat1, - [65643] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(813), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, + [56575] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4033), 1, + ACTIONS(3989), 1, anon_sym_COMMA, - STATE(1908), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1943), 1, - sym_text_interpolation, - [65662] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3991), 1, + anon_sym_RBRACE, + STATE(1949), 1, + aux_sym_match_block_repeat1, + [56588] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(3993), 1, anon_sym_COMMA, - ACTIONS(4037), 1, + ACTIONS(3995), 1, anon_sym_RPAREN, - STATE(1944), 1, - sym_text_interpolation, - STATE(2003), 1, + STATE(1957), 1, aux_sym_arguments_repeat1, - [65681] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56601] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4039), 1, + ACTIONS(3997), 1, anon_sym_EQ_GT, - STATE(1945), 1, - sym_text_interpolation, - STATE(2458), 1, + STATE(2418), 1, sym__return_type, - [65700] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56614] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4041), 1, + ACTIONS(3999), 1, anon_sym_EQ_GT, - STATE(1946), 1, - sym_text_interpolation, - STATE(2460), 1, + STATE(2419), 1, sym__return_type, - [65719] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56627] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1947), 1, - sym_text_interpolation, - ACTIONS(3828), 3, + ACTIONS(3823), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65734] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56636] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1948), 1, - sym_text_interpolation, - ACTIONS(3893), 3, + ACTIONS(3816), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65749] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56645] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3940), 1, sym_name, - ACTIONS(4000), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(1949), 1, - sym_text_interpolation, - STATE(2359), 1, + STATE(2317), 1, sym_namespace_use_group, - [65768] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56658] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(4043), 1, + ACTIONS(4001), 1, sym_name, - STATE(1950), 1, - sym_text_interpolation, - STATE(2359), 1, + STATE(2317), 1, sym_namespace_use_group, - [65787] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4045), 1, - anon_sym_COMMA, - ACTIONS(4047), 1, - anon_sym_RBRACE, - STATE(1951), 1, - sym_text_interpolation, - STATE(1995), 1, - aux_sym_match_block_repeat1, - [65806] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56671] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1952), 1, - sym_text_interpolation, - ACTIONS(4049), 3, + ACTIONS(4003), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65821] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56680] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1953), 1, - sym_text_interpolation, - ACTIONS(3845), 3, + ACTIONS(3809), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [65836] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_EQ, - STATE(1954), 1, - sym_text_interpolation, - ACTIONS(4051), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [65853] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56689] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4057), 1, + ACTIONS(4007), 1, anon_sym_EQ, - STATE(1955), 1, - sym_text_interpolation, - ACTIONS(4055), 2, + ACTIONS(4005), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65870] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56700] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1823), 1, anon_sym_RPAREN, - ACTIONS(4059), 1, + ACTIONS(4009), 1, anon_sym_COMMA, - STATE(1956), 1, - sym_text_interpolation, - STATE(2018), 1, + STATE(1972), 1, aux_sym_formal_parameters_repeat1, - [65889] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56713] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(4061), 1, + ACTIONS(4011), 1, anon_sym_DOT_DOT_DOT, - STATE(1957), 1, - sym_text_interpolation, - STATE(2019), 1, + STATE(1973), 1, sym_variable_name, - [65908] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56726] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4065), 1, + ACTIONS(4015), 1, anon_sym_EQ, - STATE(1958), 1, - sym_text_interpolation, - ACTIONS(4063), 2, + ACTIONS(4013), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65925] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56737] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(4067), 1, + ACTIONS(4017), 1, anon_sym_DOT_DOT_DOT, - STATE(1959), 1, - sym_text_interpolation, - STATE(2048), 1, + STATE(1974), 1, sym_variable_name, - [65944] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1334), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1960), 1, - sym_text_interpolation, - ACTIONS(1332), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65961] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1142), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1961), 1, - sym_text_interpolation, - ACTIONS(1140), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [65978] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56750] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4071), 1, + ACTIONS(4021), 1, anon_sym_EQ, - STATE(1962), 1, - sym_text_interpolation, - ACTIONS(4069), 2, + ACTIONS(4019), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65995] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3331), 1, - anon_sym_COLON, - ACTIONS(3468), 1, - anon_sym_LBRACE, - STATE(1963), 1, - sym_text_interpolation, - STATE(2462), 1, - sym__return_type, - [66014] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1322), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1964), 1, - sym_text_interpolation, - ACTIONS(1320), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66031] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1250), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1965), 1, - sym_text_interpolation, - ACTIONS(1248), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66048] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1278), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1966), 1, - sym_text_interpolation, - ACTIONS(1276), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66065] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(761), 1, + [56761] = 4, + ACTIONS(793), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(4023), 1, anon_sym_COMMA, - STATE(1967), 1, - sym_text_interpolation, - STATE(2049), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - [66084] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1294), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [56774] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1968), 1, - sym_text_interpolation, - ACTIONS(1292), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66101] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(1969), 1, - sym_text_interpolation, - ACTIONS(3916), 3, + ACTIONS(3307), 1, + anon_sym_COLON, + ACTIONS(3668), 1, + anon_sym_LBRACE, + STATE(2424), 1, + sym__return_type, + [56787] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3750), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [66116] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1306), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, - sym_comment, - STATE(1970), 1, - sym_text_interpolation, - ACTIONS(1304), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66133] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1306), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [56796] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(1971), 1, - sym_text_interpolation, - ACTIONS(1304), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66150] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1346), 1, + ACTIONS(3313), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(1984), 1, + aux_sym_base_clause_repeat1, + [56809] = 3, + ACTIONS(1408), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1972), 1, - sym_text_interpolation, - ACTIONS(1344), 2, + ACTIONS(1406), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66167] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1370), 1, + [56820] = 3, + ACTIONS(1348), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1973), 1, - sym_text_interpolation, - ACTIONS(1368), 2, + ACTIONS(1346), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66184] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1374), 1, + [56831] = 3, + ACTIONS(1484), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1974), 1, - sym_text_interpolation, - ACTIONS(1372), 2, + ACTIONS(1482), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66201] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1202), 1, + [56842] = 3, + ACTIONS(1396), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1975), 1, - sym_text_interpolation, - ACTIONS(1200), 2, + ACTIONS(1394), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66218] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3409), 1, - anon_sym_COMMA, - ACTIONS(3681), 1, - anon_sym_LBRACE, - STATE(1976), 1, - sym_text_interpolation, - STATE(2029), 1, - aux_sym_base_clause_repeat1, - [66237] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1202), 1, + [56853] = 3, + ACTIONS(1136), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1977), 1, - sym_text_interpolation, - ACTIONS(1200), 2, + ACTIONS(1134), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66254] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(783), 1, + [56864] = 4, + ACTIONS(789), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4025), 1, anon_sym_COMMA, - STATE(1908), 1, + STATE(1872), 1, aux_sym_array_creation_expression_repeat1, - STATE(1978), 1, - sym_text_interpolation, - [66273] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1466), 1, + [56877] = 3, + ACTIONS(1156), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1979), 1, - sym_text_interpolation, - ACTIONS(1464), 2, + ACTIONS(1154), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66290] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56888] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - ACTIONS(4077), 1, + ACTIONS(4027), 1, anon_sym_RPAREN, - STATE(1980), 1, - sym_text_interpolation, - STATE(2030), 1, + STATE(1986), 1, aux_sym_unset_statement_repeat1, - [66309] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1490), 1, + [56901] = 3, + ACTIONS(1180), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1981), 1, - sym_text_interpolation, - ACTIONS(1488), 2, + ACTIONS(1178), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66326] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56912] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4081), 1, + ACTIONS(4031), 1, aux_sym_else_clause_token1, - STATE(1982), 1, - sym_text_interpolation, - ACTIONS(4079), 2, + ACTIONS(4029), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [66343] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1478), 1, + [56923] = 3, + ACTIONS(1180), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1983), 1, - sym_text_interpolation, - ACTIONS(1476), 2, + ACTIONS(1178), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66360] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56934] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4033), 1, anon_sym_COMMA, - ACTIONS(4085), 1, + ACTIONS(4035), 1, anon_sym_RBRACE, - STATE(1984), 1, - sym_text_interpolation, - STATE(2035), 1, + STATE(1991), 1, aux_sym_match_block_repeat1, - [66379] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56947] = 3, + ACTIONS(1280), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1278), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [56958] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(4039), 1, anon_sym_EQ, - STATE(1985), 1, - sym_text_interpolation, - ACTIONS(4087), 2, + ACTIONS(4037), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66396] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1470), 1, + [56969] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_EQ, + ACTIONS(4041), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56980] = 3, + ACTIONS(1448), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1986), 1, - sym_text_interpolation, - ACTIONS(1468), 2, + ACTIONS(1446), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66413] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [56991] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1987), 1, - sym_text_interpolation, - ACTIONS(4089), 3, + ACTIONS(4043), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [66428] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + [57000] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4091), 1, + ACTIONS(4045), 1, anon_sym_RPAREN, - STATE(1988), 1, - sym_text_interpolation, - STATE(1992), 1, + STATE(1947), 1, aux_sym__list_destructing_repeat1, - [66447] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1462), 1, + [57013] = 3, + ACTIONS(1336), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1989), 1, - sym_text_interpolation, - ACTIONS(1460), 2, + ACTIONS(1334), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66464] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57024] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1990), 1, - sym_text_interpolation, - ACTIONS(4093), 3, + ACTIONS(4047), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [66479] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1426), 1, + [57033] = 3, + ACTIONS(1140), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1991), 1, - sym_text_interpolation, - ACTIONS(1424), 2, + ACTIONS(1138), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66496] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57044] = 4, + ACTIONS(833), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1651), 1, + ACTIONS(4049), 1, anon_sym_RPAREN, - ACTIONS(4095), 1, - anon_sym_COMMA, - STATE(1992), 2, - sym_text_interpolation, + STATE(1947), 1, aux_sym__list_destructing_repeat1, - [66513] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57057] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_EQ, - STATE(1993), 1, - sym_text_interpolation, - ACTIONS(4098), 2, + ACTIONS(1641), 1, + anon_sym_RPAREN, + ACTIONS(4051), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [66530] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1422), 1, + STATE(1947), 1, + aux_sym__list_destructing_repeat1, + [57070] = 3, + ACTIONS(1140), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1994), 1, - sym_text_interpolation, - ACTIONS(1420), 2, + ACTIONS(1138), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66547] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(837), 1, + [57081] = 4, + ACTIONS(826), 1, anon_sym_RBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(1995), 1, - sym_text_interpolation, - STATE(2136), 1, + STATE(2101), 1, aux_sym_match_block_repeat1, - [66566] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57094] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1996), 1, - sym_text_interpolation, - ACTIONS(3946), 3, + ACTIONS(3908), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [66581] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57103] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3908), 1, anon_sym_RBRACK, - ACTIONS(4102), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - STATE(1997), 2, - sym_text_interpolation, + STATE(1951), 1, aux_sym_array_creation_expression_repeat1, - [66598] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57116] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(4059), 1, anon_sym_COMMA, - ACTIONS(4108), 1, + ACTIONS(4062), 1, anon_sym_RBRACK, - STATE(1998), 2, - sym_text_interpolation, + STATE(1952), 1, aux_sym_attribute_group_repeat1, - [66615] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1406), 1, + [57129] = 3, + ACTIONS(1228), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1999), 1, - sym_text_interpolation, - ACTIONS(1404), 2, + ACTIONS(1226), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66632] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1406), 1, + [57140] = 3, + ACTIONS(1240), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2000), 1, - sym_text_interpolation, - ACTIONS(1404), 2, + ACTIONS(1238), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66649] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1394), 1, + [57151] = 3, + ACTIONS(1352), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2001), 1, - sym_text_interpolation, - ACTIONS(1392), 2, + ACTIONS(1350), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66666] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1386), 1, + [57162] = 3, + ACTIONS(1424), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2002), 1, - sym_text_interpolation, - ACTIONS(1384), 2, + ACTIONS(1422), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66683] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(797), 1, + [57173] = 4, + ACTIONS(777), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4110), 1, + ACTIONS(4064), 1, anon_sym_COMMA, STATE(2003), 1, - sym_text_interpolation, - STATE(2049), 1, aux_sym_arguments_repeat1, - [66702] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1386), 1, + [57186] = 3, + ACTIONS(1432), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2004), 1, - sym_text_interpolation, - ACTIONS(1384), 2, + ACTIONS(1430), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66719] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57197] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4112), 1, + ACTIONS(4066), 1, anon_sym_EQ_GT, - STATE(2005), 1, - sym_text_interpolation, - STATE(2523), 1, + STATE(2477), 1, sym__return_type, - [66738] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57210] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4114), 1, + ACTIONS(4068), 1, anon_sym_EQ_GT, - STATE(2006), 1, - sym_text_interpolation, - STATE(2534), 1, + STATE(2490), 1, sym__return_type, - [66757] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1366), 1, + [57223] = 3, + ACTIONS(1460), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2007), 1, - sym_text_interpolation, - ACTIONS(1364), 2, + ACTIONS(1458), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66774] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57234] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4116), 1, + ACTIONS(4070), 1, anon_sym_EQ_GT, - STATE(2008), 1, - sym_text_interpolation, - STATE(2540), 1, + STATE(2498), 1, sym__return_type, - [66793] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1366), 1, + [57247] = 3, + ACTIONS(1452), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2009), 1, - sym_text_interpolation, - ACTIONS(1364), 2, + ACTIONS(1450), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66810] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57258] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(4043), 1, + ACTIONS(4001), 1, sym_name, - STATE(2010), 1, - sym_text_interpolation, - STATE(2255), 1, + STATE(2213), 1, sym_namespace_use_group, - [66829] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1358), 1, + [57271] = 3, + ACTIONS(1428), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2011), 1, - sym_text_interpolation, - ACTIONS(1356), 2, + ACTIONS(1426), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66846] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57282] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4118), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - ACTIONS(4120), 1, + ACTIONS(4074), 1, anon_sym_RBRACE, - STATE(2012), 1, - sym_text_interpolation, - STATE(2082), 1, + STATE(2044), 1, aux_sym_namespace_use_group_repeat1, - [66865] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1354), 1, + [57295] = 3, + ACTIONS(1428), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2013), 1, - sym_text_interpolation, - ACTIONS(1352), 2, + ACTIONS(1426), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66882] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57306] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4078), 1, anon_sym_EQ, - STATE(2014), 1, - sym_text_interpolation, - ACTIONS(4122), 2, + ACTIONS(4076), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66899] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1350), 1, + [57317] = 3, + ACTIONS(1420), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2015), 1, - sym_text_interpolation, - ACTIONS(1348), 2, + ACTIONS(1418), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66916] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57328] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(4082), 1, anon_sym_EQ, - STATE(2016), 1, - sym_text_interpolation, - ACTIONS(4126), 2, + ACTIONS(4080), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66933] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1318), 1, + [57339] = 3, + ACTIONS(1300), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2017), 1, - sym_text_interpolation, - ACTIONS(1316), 2, + ACTIONS(1298), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66950] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57350] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4130), 1, + ACTIONS(4084), 1, anon_sym_COMMA, - ACTIONS(4133), 1, + ACTIONS(4087), 1, anon_sym_RPAREN, - STATE(2018), 2, - sym_text_interpolation, + STATE(1972), 1, aux_sym_formal_parameters_repeat1, - [66967] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57363] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4137), 1, + ACTIONS(4091), 1, anon_sym_EQ, - STATE(2019), 1, - sym_text_interpolation, - ACTIONS(4135), 2, + ACTIONS(4089), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66984] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57374] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4095), 1, anon_sym_EQ, - STATE(2020), 1, - sym_text_interpolation, - ACTIONS(4139), 2, + ACTIONS(4093), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67001] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57385] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - ACTIONS(4143), 1, - anon_sym_DOT_DOT_DOT, - STATE(2021), 1, - sym_text_interpolation, - STATE(2096), 1, - sym_variable_name, - [67020] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1262), 1, + ACTIONS(4099), 1, + anon_sym_EQ, + ACTIONS(4097), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57396] = 3, + ACTIONS(1408), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2022), 1, - sym_text_interpolation, - ACTIONS(1260), 2, + ACTIONS(1406), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67037] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1194), 1, + [57407] = 3, + ACTIONS(1400), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2023), 1, - sym_text_interpolation, - ACTIONS(1192), 2, + ACTIONS(1398), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67054] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57418] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(2024), 1, - sym_text_interpolation, - ACTIONS(4145), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67071] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1138), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + ACTIONS(4101), 1, + anon_sym_DOT_DOT_DOT, + STATE(2066), 1, + sym_variable_name, + [57431] = 3, + ACTIONS(1400), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2025), 1, - sym_text_interpolation, - ACTIONS(1136), 2, + ACTIONS(1398), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67088] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57442] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(4105), 1, + anon_sym_EQ, + ACTIONS(4103), 2, anon_sym_COMMA, - ACTIONS(4151), 1, anon_sym_RPAREN, - STATE(2026), 1, - sym_text_interpolation, - STATE(2100), 1, + [57453] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4107), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_RPAREN, + STATE(2079), 1, aux_sym_anonymous_function_use_clause_repeat1, - [67107] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57466] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - STATE(1715), 1, - sym_variable_name, - STATE(1822), 1, - sym_property_element, - STATE(2027), 1, - sym_text_interpolation, - [67126] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3796), 1, + anon_sym_EQ, + ACTIONS(4111), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57477] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4155), 1, + ACTIONS(4115), 1, anon_sym_EQ, - STATE(2028), 1, - sym_text_interpolation, - ACTIONS(4153), 2, + ACTIONS(4113), 2, sym__automatic_semicolon, anon_sym_SEMI, - [67143] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57488] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3313), 1, anon_sym_COMMA, - ACTIONS(4157), 1, + ACTIONS(4117), 1, anon_sym_LBRACE, - STATE(1849), 1, + STATE(1797), 1, aux_sym_base_clause_repeat1, - STATE(2029), 1, - sym_text_interpolation, - [67162] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3180), 1, - anon_sym_RPAREN, - ACTIONS(4159), 1, - anon_sym_COMMA, - STATE(2030), 2, - sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [67179] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1154), 1, + [57501] = 3, + ACTIONS(1392), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2031), 1, - sym_text_interpolation, - ACTIONS(1152), 2, + ACTIONS(1390), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67196] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57512] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(3188), 1, + anon_sym_RPAREN, + ACTIONS(4119), 1, + anon_sym_COMMA, + STATE(1986), 1, + aux_sym_unset_statement_repeat1, + [57525] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(4162), 1, + ACTIONS(4122), 1, anon_sym_RPAREN, - STATE(2032), 1, - sym_text_interpolation, - STATE(2597), 1, + STATE(2549), 1, sym_variable_name, - [67215] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57538] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - ACTIONS(4164), 1, + ACTIONS(4124), 1, anon_sym_RPAREN, - STATE(2033), 1, - sym_text_interpolation, - STATE(2478), 1, + STATE(2439), 1, sym_variable_name, - [67234] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57551] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - ACTIONS(4043), 1, + ACTIONS(4001), 1, sym_name, - STATE(2034), 1, - sym_text_interpolation, - STATE(2351), 1, + STATE(2309), 1, sym_namespace_use_group, - [67253] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(833), 1, - anon_sym_RBRACE, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_COMMA, - STATE(2035), 1, - sym_text_interpolation, - STATE(2136), 1, - aux_sym_match_block_repeat1, - [67272] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1170), 1, + [57564] = 3, + ACTIONS(1360), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2036), 1, - sym_text_interpolation, - ACTIONS(1168), 2, + ACTIONS(1358), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67289] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57575] = 4, + ACTIONS(831), 1, + anon_sym_RBRACE, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4126), 1, + anon_sym_COMMA, + STATE(2101), 1, + aux_sym_match_block_repeat1, + [57588] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2391), 1, anon_sym_COMMA, - ACTIONS(4168), 1, + ACTIONS(4128), 1, anon_sym_EQ_GT, - STATE(2037), 1, - sym_text_interpolation, - STATE(2137), 1, + STATE(2102), 1, aux_sym_match_condition_list_repeat1, - [67308] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3104), 1, + [57601] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(4170), 1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4130), 1, anon_sym_RPAREN, - STATE(2030), 1, - aux_sym_unset_statement_repeat1, - STATE(2038), 1, - sym_text_interpolation, - [67327] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + STATE(2108), 1, + aux_sym__list_destructing_repeat1, + [57614] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(3094), 1, anon_sym_RPAREN, - STATE(2039), 1, - sym_text_interpolation, - STATE(2147), 1, + STATE(2104), 1, aux_sym__list_destructing_repeat1, - [67346] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_LBRACE, - ACTIONS(4043), 1, - sym_name, - STATE(2040), 1, - sym_text_interpolation, - STATE(2398), 1, - sym_namespace_use_group, - [67365] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1170), 1, + [57627] = 3, + ACTIONS(1332), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2041), 1, - sym_text_interpolation, - ACTIONS(1168), 2, + ACTIONS(1330), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67382] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57638] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3998), 1, - sym_name, - ACTIONS(4000), 1, - anon_sym_LBRACE, - STATE(2042), 1, - sym_text_interpolation, - STATE(2398), 1, - sym_namespace_use_group, - [67401] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(4132), 1, + anon_sym_RPAREN, + STATE(1986), 1, + aux_sym_unset_statement_repeat1, + [57651] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(4134), 3, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - STATE(2043), 1, - sym_text_interpolation, - STATE(2143), 1, - aux_sym__list_destructing_repeat1, - [67420] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57660] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2044), 1, - sym_text_interpolation, - ACTIONS(4174), 3, + ACTIONS(4136), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [67435] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1190), 1, + [57669] = 3, + ACTIONS(1312), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2045), 1, - sym_text_interpolation, - ACTIONS(1188), 2, + ACTIONS(1310), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67452] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57680] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(2046), 1, - sym_text_interpolation, - ACTIONS(4176), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [67467] = 6, + ACTIONS(3942), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + sym_name, + STATE(2262), 1, + sym_namespace_use_group, + [57693] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3940), 1, + sym_name, + ACTIONS(3942), 1, + anon_sym_LBRACE, + STATE(2262), 1, + sym_namespace_use_group, + [57706] = 4, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(3458), 1, - sym_nowdoc_string, - ACTIONS(4178), 1, + ACTIONS(4138), 1, anon_sym_, - STATE(1656), 1, + ACTIONS(4140), 1, + sym_nowdoc_string, + STATE(1650), 1, aux_sym_nowdoc_body_repeat1, - STATE(2047), 1, - sym_text_interpolation, - [67486] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4182), 1, - anon_sym_EQ, - STATE(2048), 1, - sym_text_interpolation, - ACTIONS(4180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67503] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [57719] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4184), 1, + ACTIONS(4142), 1, anon_sym_COMMA, - ACTIONS(4187), 1, + ACTIONS(4145), 1, anon_sym_RPAREN, - STATE(2049), 2, - sym_text_interpolation, + STATE(2003), 1, aux_sym_arguments_repeat1, - [67520] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1214), 1, + [57732] = 3, + ACTIONS(1304), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2050), 1, - sym_text_interpolation, - ACTIONS(1212), 2, + ACTIONS(1302), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67537] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1222), 1, + [57743] = 3, + ACTIONS(1412), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2051), 1, - sym_text_interpolation, - ACTIONS(1220), 2, + ACTIONS(1410), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67554] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1222), 1, + [57754] = 3, + ACTIONS(1284), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2052), 1, - sym_text_interpolation, - ACTIONS(1220), 2, + ACTIONS(1282), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67571] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1266), 1, + [57765] = 3, + ACTIONS(1224), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2053), 1, - sym_text_interpolation, - ACTIONS(1264), 2, + ACTIONS(1222), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67588] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1282), 1, + [57776] = 3, + ACTIONS(1200), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2054), 1, - sym_text_interpolation, - ACTIONS(1280), 2, + ACTIONS(1198), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67605] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1290), 1, + [57787] = 3, + ACTIONS(1200), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2055), 1, - sym_text_interpolation, - ACTIONS(1288), 2, + ACTIONS(1198), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67622] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1482), 1, + [57798] = 3, + ACTIONS(1188), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2056), 1, - sym_text_interpolation, - ACTIONS(1480), 2, + ACTIONS(1186), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67639] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1398), 1, + [57809] = 3, + ACTIONS(1184), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2057), 1, - sym_text_interpolation, - ACTIONS(1396), 2, + ACTIONS(1182), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67656] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1378), 1, + [57820] = 3, + ACTIONS(1148), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2058), 1, - sym_text_interpolation, - ACTIONS(1376), 2, + ACTIONS(1146), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67673] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1286), 1, + [57831] = 3, + ACTIONS(1148), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2059), 1, - sym_text_interpolation, - ACTIONS(1284), 2, + ACTIONS(1146), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67690] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1302), 1, + [57842] = 3, + ACTIONS(1476), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2060), 1, - sym_text_interpolation, - ACTIONS(1300), 2, + ACTIONS(1474), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67707] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1174), 1, + [57853] = 3, + ACTIONS(1308), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2061), 1, - sym_text_interpolation, - ACTIONS(1172), 2, + ACTIONS(1306), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67724] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1178), 1, + [57864] = 3, + ACTIONS(1328), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2062), 1, - sym_text_interpolation, - ACTIONS(1176), 2, + ACTIONS(1326), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67741] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1182), 1, + [57875] = 3, + ACTIONS(1276), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2063), 1, - sym_text_interpolation, - ACTIONS(1180), 2, + ACTIONS(1274), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67758] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1186), 1, + [57886] = 3, + ACTIONS(1252), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2064), 1, - sym_text_interpolation, - ACTIONS(1184), 2, + ACTIONS(1250), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67775] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1198), 1, + [57897] = 3, + ACTIONS(1220), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2065), 1, - sym_text_interpolation, - ACTIONS(1196), 2, + ACTIONS(1218), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67792] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1206), 1, + [57908] = 3, + ACTIONS(1192), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2066), 1, - sym_text_interpolation, - ACTIONS(1204), 2, + ACTIONS(1190), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67809] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1218), 1, + [57919] = 3, + ACTIONS(1160), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2067), 1, - sym_text_interpolation, - ACTIONS(1216), 2, + ACTIONS(1158), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67826] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1218), 1, + [57930] = 3, + ACTIONS(1164), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2068), 1, - sym_text_interpolation, - ACTIONS(1216), 2, + ACTIONS(1162), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67843] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1242), 1, + [57941] = 3, + ACTIONS(1404), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2069), 1, - sym_text_interpolation, - ACTIONS(1240), 2, + ACTIONS(1402), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67860] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1254), 1, + [57952] = 3, + ACTIONS(1464), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2070), 1, - sym_text_interpolation, - ACTIONS(1252), 2, + ACTIONS(1462), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67877] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1314), 1, + [57963] = 3, + ACTIONS(1456), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2071), 1, - sym_text_interpolation, - ACTIONS(1312), 2, + ACTIONS(1454), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67894] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1342), 1, + [57974] = 3, + ACTIONS(1320), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2072), 1, - sym_text_interpolation, - ACTIONS(1340), 2, + ACTIONS(1318), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [57985] = 4, + ACTIONS(781), 1, + anon_sym_RBRACK, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_COMMA, + STATE(1951), 1, + aux_sym_array_creation_expression_repeat1, + [57998] = 3, + ACTIONS(1316), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1314), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58009] = 3, + ACTIONS(1132), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1130), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67911] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58020] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1628), 1, + sym_variable_name, + STATE(1791), 1, + sym_property_element, + [58033] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3940), 1, sym_name, - ACTIONS(4000), 1, + ACTIONS(3942), 1, anon_sym_LBRACE, - STATE(2073), 1, - sym_text_interpolation, - STATE(2281), 1, + STATE(2224), 1, sym_namespace_use_group, - [67930] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58046] = 3, + ACTIONS(1132), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - STATE(2074), 1, - sym_text_interpolation, - ACTIONS(4189), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [67945] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1418), 1, + ACTIONS(1130), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58057] = 3, + ACTIONS(1144), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2075), 1, - sym_text_interpolation, - ACTIONS(1416), 2, + ACTIONS(1142), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67962] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58068] = 3, + ACTIONS(1124), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(1122), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58079] = 3, + ACTIONS(1168), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1166), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58090] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3307), 1, anon_sym_COLON, - ACTIONS(4191), 1, + ACTIONS(4149), 1, anon_sym_EQ_GT, - STATE(2076), 1, - sym_text_interpolation, - STATE(2625), 1, + STATE(2585), 1, sym__return_type, - [67981] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58103] = 3, + ACTIONS(1176), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4193), 1, - anon_sym_SQUOTE, - ACTIONS(4195), 1, - anon_sym_DQUOTE, - ACTIONS(4197), 1, - sym_heredoc_start, - STATE(2077), 1, - sym_text_interpolation, - [68000] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1238), 1, + ACTIONS(1174), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58114] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4151), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [58123] = 3, + ACTIONS(1388), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2078), 1, - sym_text_interpolation, - ACTIONS(1236), 2, + ACTIONS(1386), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68017] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1234), 1, + [58134] = 3, + ACTIONS(1436), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2079), 1, - sym_text_interpolation, - ACTIONS(1232), 2, + ACTIONS(1434), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68034] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1298), 1, + [58145] = 3, + ACTIONS(1196), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2080), 1, - sym_text_interpolation, - ACTIONS(1296), 2, + ACTIONS(1194), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [58156] = 3, + ACTIONS(1288), 1, + aux_sym_else_clause_token1, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1286), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68051] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1134), 1, + [58167] = 3, + ACTIONS(1296), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2081), 1, - sym_text_interpolation, - ACTIONS(1132), 2, + ACTIONS(1294), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68068] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58178] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4118), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - ACTIONS(4199), 1, + ACTIONS(4153), 1, anon_sym_RBRACE, - STATE(2082), 1, - sym_text_interpolation, - STATE(2151), 1, + STATE(2114), 1, aux_sym_namespace_use_group_repeat1, - [68087] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58191] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4203), 1, + ACTIONS(4157), 1, anon_sym_EQ, - STATE(2083), 1, - sym_text_interpolation, - ACTIONS(4201), 2, + ACTIONS(4155), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68104] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(306), 1, - anon_sym_DOLLAR, - ACTIONS(1516), 1, - sym_comment, - STATE(2084), 1, - sym_text_interpolation, - STATE(1829), 2, - sym_dynamic_variable_name, - sym_variable_name, - [68121] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1402), 1, + [58202] = 3, + ACTIONS(1368), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2085), 1, - sym_text_interpolation, - ACTIONS(1400), 2, + ACTIONS(1366), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68138] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1414), 1, + [58213] = 3, + ACTIONS(1380), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2086), 1, - sym_text_interpolation, - ACTIONS(1412), 2, + ACTIONS(1378), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68155] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1450), 1, + [58224] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4159), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_DQUOTE, + ACTIONS(4163), 1, + sym_heredoc_start, + [58237] = 3, + ACTIONS(1472), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2087), 1, - sym_text_interpolation, - ACTIONS(1448), 2, + ACTIONS(1470), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68172] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1458), 1, + [58248] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4167), 1, + anon_sym_EQ, + ACTIONS(4165), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58259] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(4171), 1, + anon_sym_RPAREN, + STATE(2060), 1, + aux_sym_arguments_repeat1, + [58272] = 3, + ACTIONS(1468), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2088), 1, - sym_text_interpolation, - ACTIONS(1456), 2, + ACTIONS(1466), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68189] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1486), 1, + [58283] = 3, + ACTIONS(1416), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2089), 1, - sym_text_interpolation, - ACTIONS(1484), 2, + ACTIONS(1414), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68206] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2090), 1, - sym_text_interpolation, - ACTIONS(4205), 3, + [58294] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4173), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [68221] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58303] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2091), 1, - sym_text_interpolation, - ACTIONS(4207), 3, + ACTIONS(4175), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [68236] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58312] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4179), 1, anon_sym_EQ, - STATE(2092), 1, - sym_text_interpolation, - ACTIONS(4209), 2, + ACTIONS(4177), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68253] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1338), 1, + [58323] = 3, + ACTIONS(1264), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2093), 1, - sym_text_interpolation, - ACTIONS(1336), 2, + ACTIONS(1262), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68270] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58334] = 3, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4215), 1, - anon_sym_EQ, - STATE(2094), 1, - sym_text_interpolation, - ACTIONS(4213), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68287] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1326), 1, + STATE(1783), 2, + sym_dynamic_variable_name, + sym_variable_name, + [58345] = 3, + ACTIONS(1248), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2095), 1, - sym_text_interpolation, - ACTIONS(1324), 2, + ACTIONS(1246), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68304] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4219), 1, - anon_sym_EQ, - STATE(2096), 1, - sym_text_interpolation, - ACTIONS(4217), 2, - anon_sym_COMMA, + [58356] = 4, + ACTIONS(757), 1, anon_sym_RPAREN, - [68321] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4181), 1, anon_sym_COMMA, - ACTIONS(4223), 1, - anon_sym_RPAREN, - STATE(2097), 1, - sym_text_interpolation, - STATE(2106), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - [68340] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1310), 1, + [58369] = 3, + ACTIONS(1232), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2098), 1, - sym_text_interpolation, - ACTIONS(1308), 2, + ACTIONS(1230), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68357] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1150), 1, + [58380] = 3, + ACTIONS(1216), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2099), 1, - sym_text_interpolation, - ACTIONS(1148), 2, + ACTIONS(1214), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68374] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_RPAREN, - ACTIONS(4225), 1, - anon_sym_COMMA, - STATE(2100), 1, - sym_text_interpolation, - STATE(2155), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [68393] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1494), 1, + [58391] = 3, + ACTIONS(1208), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2101), 1, - sym_text_interpolation, - ACTIONS(1492), 2, + ACTIONS(1206), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68410] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1446), 1, + [58402] = 3, + ACTIONS(1244), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2102), 1, - sym_text_interpolation, - ACTIONS(1444), 2, + ACTIONS(1242), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68427] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1442), 1, + [58413] = 3, + ACTIONS(1256), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2103), 1, - sym_text_interpolation, - ACTIONS(1440), 2, + ACTIONS(1254), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68444] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58424] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - STATE(1715), 1, - sym_variable_name, - STATE(1811), 1, - sym_property_element, - STATE(2104), 1, - sym_text_interpolation, - [68463] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1438), 1, + ACTIONS(4185), 1, + anon_sym_EQ, + ACTIONS(4183), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58435] = 3, + ACTIONS(1260), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2105), 1, - sym_text_interpolation, - ACTIONS(1436), 2, + ACTIONS(1258), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68480] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(803), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4227), 1, - anon_sym_COMMA, - STATE(2049), 1, - aux_sym_arguments_repeat1, - STATE(2106), 1, - sym_text_interpolation, - [68499] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1434), 1, + [58446] = 3, + ACTIONS(1268), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2107), 1, - sym_text_interpolation, - ACTIONS(1432), 2, + ACTIONS(1266), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68516] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1430), 1, + [58457] = 3, + ACTIONS(1272), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2108), 1, - sym_text_interpolation, - ACTIONS(1428), 2, + ACTIONS(1270), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68533] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1454), 1, + [58468] = 3, + ACTIONS(1292), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2109), 1, - sym_text_interpolation, - ACTIONS(1452), 2, + ACTIONS(1290), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68550] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1390), 1, + [58479] = 3, + ACTIONS(1344), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2110), 1, - sym_text_interpolation, - ACTIONS(1388), 2, + ACTIONS(1342), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68567] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1130), 1, + [58490] = 3, + ACTIONS(1364), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2111), 1, - sym_text_interpolation, - ACTIONS(1128), 2, + ACTIONS(1362), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68584] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1681), 1, - anon_sym_DOLLAR, - STATE(1715), 1, - sym_variable_name, - STATE(2112), 1, - sym_text_interpolation, - STATE(2156), 1, - sym_property_element, - [68603] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1382), 1, + [58501] = 3, + ACTIONS(1372), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2113), 1, - sym_text_interpolation, - ACTIONS(1380), 2, + ACTIONS(1370), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68620] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1362), 1, + [58512] = 3, + ACTIONS(1376), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2114), 1, - sym_text_interpolation, - ACTIONS(1360), 2, + ACTIONS(1374), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68637] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58523] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2115), 1, - sym_text_interpolation, - ACTIONS(3490), 3, + ACTIONS(3438), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [68652] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1274), 1, + [58532] = 3, + ACTIONS(1444), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2116), 1, - sym_text_interpolation, - ACTIONS(1272), 2, + ACTIONS(1442), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68669] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1258), 1, + [58543] = 3, + ACTIONS(1480), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2117), 1, - sym_text_interpolation, - ACTIONS(1256), 2, + ACTIONS(1478), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68686] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1246), 1, + [58554] = 3, + ACTIONS(1440), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2118), 1, - sym_text_interpolation, - ACTIONS(1244), 2, + ACTIONS(1438), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68703] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1230), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [58565] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(2119), 1, - sym_text_interpolation, - ACTIONS(1228), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68720] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1226), 1, + ACTIONS(3609), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, + anon_sym_COMMA, + STATE(2116), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [58578] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1628), 1, + sym_variable_name, + STATE(1848), 1, + sym_property_element, + [58591] = 3, + ACTIONS(1212), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2120), 1, - sym_text_interpolation, - ACTIONS(1224), 2, + ACTIONS(1210), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68737] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1166), 1, + [58602] = 3, + ACTIONS(1152), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2121), 1, - sym_text_interpolation, - ACTIONS(1164), 2, + ACTIONS(1150), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68754] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1158), 1, + [58613] = 3, + ACTIONS(1356), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2122), 1, - sym_text_interpolation, - ACTIONS(1156), 2, + ACTIONS(1354), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68771] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2123), 1, - sym_text_interpolation, - ACTIONS(4229), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [68786] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1330), 1, + [58624] = 3, + ACTIONS(1236), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2124), 1, - sym_text_interpolation, - ACTIONS(1328), 2, + ACTIONS(1234), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68803] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2125), 1, - sym_text_interpolation, - ACTIONS(3377), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [68818] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1270), 1, + [58635] = 3, + ACTIONS(1324), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2126), 1, - sym_text_interpolation, - ACTIONS(1268), 2, + ACTIONS(1322), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68835] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1162), 1, + [58646] = 3, + ACTIONS(1204), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2127), 1, - sym_text_interpolation, - ACTIONS(1160), 2, + ACTIONS(1202), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68852] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4233), 1, - anon_sym_EQ, - STATE(2128), 1, - sym_text_interpolation, - ACTIONS(4231), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68869] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1210), 1, + [58657] = 3, + ACTIONS(1384), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2129), 1, - sym_text_interpolation, - ACTIONS(1208), 2, + ACTIONS(1382), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68886] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(807), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, + [58668] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_COMMA, - STATE(2049), 1, - aux_sym_arguments_repeat1, - STATE(2130), 1, - sym_text_interpolation, - [68905] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1410), 1, + ACTIONS(1667), 1, + anon_sym_DOLLAR, + STATE(1628), 1, + sym_variable_name, + STATE(2117), 1, + sym_property_element, + [58681] = 3, + ACTIONS(1340), 1, aux_sym_else_clause_token1, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2131), 1, - sym_text_interpolation, - ACTIONS(1408), 2, + ACTIONS(1338), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68922] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2132), 1, - sym_text_interpolation, - ACTIONS(2725), 3, + [58692] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2711), 3, sym__automatic_semicolon, anon_sym_SEMI, sym_name, - [68937] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1146), 1, - aux_sym_else_clause_token1, - ACTIONS(1516), 1, + [58701] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2133), 1, - sym_text_interpolation, - ACTIONS(1144), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68954] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4189), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [58710] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4237), 1, + ACTIONS(4191), 1, anon_sym_COMMA, - ACTIONS(4239), 1, + ACTIONS(4193), 1, anon_sym_RPAREN, - STATE(2130), 1, + STATE(2098), 1, aux_sym_arguments_repeat1, - STATE(2134), 1, - sym_text_interpolation, - [68973] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4243), 1, + [58723] = 3, + ACTIONS(1172), 1, aux_sym_else_clause_token1, - STATE(2135), 1, - sym_text_interpolation, - ACTIONS(4241), 2, - aux_sym_if_statement_token2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1170), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68990] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58734] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4245), 1, + ACTIONS(3361), 3, anon_sym_COMMA, - ACTIONS(4248), 1, - anon_sym_RBRACE, - STATE(2136), 2, - sym_text_interpolation, - aux_sym_match_block_repeat1, - [69007] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [58743] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2481), 1, - anon_sym_EQ_GT, - ACTIONS(4250), 1, - anon_sym_COMMA, - STATE(2137), 2, - sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [69024] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4197), 1, + anon_sym_EQ, + ACTIONS(4195), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [58754] = 4, + ACTIONS(791), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4199), 1, anon_sym_COMMA, - ACTIONS(4255), 1, - anon_sym_RPAREN, - STATE(2138), 1, - sym_text_interpolation, - STATE(2144), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - [69043] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(779), 1, + [58767] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4203), 1, + aux_sym_else_clause_token1, + ACTIONS(4201), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [58778] = 4, + ACTIONS(755), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4205), 1, anon_sym_COMMA, - STATE(2049), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - STATE(2139), 1, - sym_text_interpolation, - [69062] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58791] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4207), 1, anon_sym_COMMA, - ACTIONS(4261), 1, + ACTIONS(4209), 1, anon_sym_RPAREN, - STATE(2139), 1, + STATE(2096), 1, aux_sym_arguments_repeat1, - STATE(2140), 1, - sym_text_interpolation, - [69081] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58804] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4263), 1, + ACTIONS(4211), 1, sym_name, - STATE(2141), 1, - sym_text_interpolation, - ACTIONS(4265), 2, + ACTIONS(4213), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69098] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58815] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(2142), 1, - sym_text_interpolation, - ACTIONS(4267), 3, + ACTIONS(4215), 1, + anon_sym_COMMA, + ACTIONS(4218), 1, + anon_sym_RBRACE, + STATE(2101), 1, + aux_sym_match_block_repeat1, + [58828] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2523), 1, + anon_sym_EQ_GT, + ACTIONS(4220), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_match_condition_list_repeat1, + [58841] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4223), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69113] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + [58850] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4269), 1, + ACTIONS(4225), 1, anon_sym_RPAREN, - STATE(1992), 1, + STATE(1947), 1, aux_sym__list_destructing_repeat1, - STATE(2143), 1, - sym_text_interpolation, - [69132] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(771), 1, + [58863] = 4, + ACTIONS(787), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4227), 1, anon_sym_COMMA, - STATE(2049), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - STATE(2144), 1, - sym_text_interpolation, - [69151] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58876] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2145), 1, - sym_text_interpolation, - ACTIONS(4273), 3, + ACTIONS(4229), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69166] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58885] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(2146), 1, - sym_text_interpolation, - ACTIONS(4275), 3, + ACTIONS(4231), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(4233), 1, anon_sym_RPAREN, - [69181] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(827), 1, + STATE(2105), 1, + aux_sym_arguments_repeat1, + [58898] = 4, + ACTIONS(833), 1, anon_sym_COMMA, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4277), 1, + ACTIONS(4235), 1, anon_sym_RPAREN, - STATE(1992), 1, + STATE(1947), 1, aux_sym__list_destructing_repeat1, - STATE(2147), 1, - sym_text_interpolation, - [69200] = 5, + [58911] = 3, ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3513), 1, sym_heredoc_end, - STATE(2148), 1, - sym_text_interpolation, - ACTIONS(3454), 2, + ACTIONS(3511), 2, aux_sym__new_line_token1, aux_sym__new_line_token2, - [69217] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [58922] = 4, ACTIONS(767), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4279), 1, + ACTIONS(4237), 1, anon_sym_COMMA, - STATE(2049), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - STATE(2149), 1, - sym_text_interpolation, - [69236] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58935] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4281), 1, + ACTIONS(4239), 3, anon_sym_COMMA, - ACTIONS(4283), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(2149), 1, - aux_sym_arguments_repeat1, - STATE(2150), 1, - sym_text_interpolation, - [69255] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58944] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4285), 1, - anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_RBRACE, - STATE(2151), 2, - sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [69272] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2152), 1, - sym_text_interpolation, - ACTIONS(4290), 3, + ACTIONS(4241), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69287] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [58953] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_EQ, - STATE(2153), 1, - sym_text_interpolation, - ACTIONS(4292), 2, + ACTIONS(4243), 1, anon_sym_COMMA, + ACTIONS(4245), 1, anon_sym_RPAREN, - [69304] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(757), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, + STATE(2110), 1, + aux_sym_arguments_repeat1, + [58966] = 4, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4247), 1, anon_sym_COMMA, - STATE(2049), 1, - aux_sym_arguments_repeat1, - STATE(2154), 1, - sym_text_interpolation, - [69323] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4250), 1, + anon_sym_RBRACE, + STATE(2114), 1, + aux_sym_namespace_use_group_repeat1, + [58979] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4254), 1, + anon_sym_EQ, + ACTIONS(4252), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58990] = 4, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4256), 1, anon_sym_COMMA, - ACTIONS(4301), 1, + ACTIONS(4259), 1, anon_sym_RPAREN, - STATE(2155), 2, - sym_text_interpolation, + STATE(2116), 1, aux_sym_anonymous_function_use_clause_repeat1, - [69340] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59003] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2156), 1, - sym_text_interpolation, - ACTIONS(3809), 3, + ACTIONS(3861), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [69355] = 6, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59012] = 4, + ACTIONS(799), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4303), 1, + ACTIONS(4261), 1, anon_sym_COMMA, - ACTIONS(4305), 1, - anon_sym_RPAREN, - STATE(2154), 1, + STATE(2003), 1, aux_sym_arguments_repeat1, - STATE(2157), 1, - sym_text_interpolation, - [69374] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59025] = 4, + ACTIONS(1506), 1, sym_comment, - STATE(2158), 1, - sym_text_interpolation, - ACTIONS(2515), 2, + ACTIONS(4263), 1, anon_sym_COMMA, + ACTIONS(4265), 1, anon_sym_RPAREN, - [69388] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2118), 1, + aux_sym_arguments_repeat1, + [59038] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2159), 1, - sym_text_interpolation, - ACTIONS(4307), 2, + ACTIONS(4267), 1, + anon_sym_LPAREN, + STATE(2278), 1, + sym_parenthesized_expression, + [59048] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4269), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69402] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59056] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4309), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_compound_statement, - STATE(2160), 1, - sym_text_interpolation, - [69418] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(527), 1, - ts_builtin_sym_end, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4311), 1, - sym_php_tag, - STATE(2161), 1, - sym_text_interpolation, - [69434] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2162), 1, - sym_text_interpolation, - ACTIONS(4313), 2, + ACTIONS(4271), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69448] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59064] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2163), 1, - sym_text_interpolation, - ACTIONS(4315), 2, + ACTIONS(4273), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69462] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2164), 1, - sym_text_interpolation, - ACTIONS(4317), 2, - sym__eof, - sym_php_tag, - [69476] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59072] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(1671), 1, + STATE(2052), 1, sym_declaration_list, - STATE(2165), 1, - sym_text_interpolation, - [69492] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59082] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4275), 1, sym_name, - STATE(2166), 1, - sym_text_interpolation, - STATE(2542), 1, + STATE(2550), 1, sym_namespace_name, - [69508] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2167), 1, - sym_text_interpolation, - ACTIONS(4322), 2, + [59092] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4278), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69522] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59100] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2603), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_EQ, - STATE(2168), 1, - sym_text_interpolation, - [69538] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2169), 1, - sym_text_interpolation, - ACTIONS(4301), 2, + ACTIONS(467), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59108] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LPAREN, + STATE(667), 1, + sym_arguments, + [59118] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4259), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69552] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4319), 1, - sym_name, - STATE(2170), 1, - sym_text_interpolation, - STATE(2570), 1, - sym_namespace_name, - [69568] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59126] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2171), 1, - sym_text_interpolation, - ACTIONS(4326), 2, + ACTIONS(4280), 2, anon_sym_LBRACE, anon_sym_COLON, - [69582] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59134] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2172), 1, - sym_text_interpolation, - ACTIONS(4328), 2, + ACTIONS(4282), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69596] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [59142] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1735), 1, + STATE(1669), 1, sym_compound_statement, - STATE(2173), 1, - sym_text_interpolation, - [69612] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1663), 1, + [59152] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4275), 1, + sym_name, + STATE(2524), 1, + sym_namespace_name, + [59162] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4284), 1, anon_sym_LPAREN, - STATE(677), 1, - sym_arguments, - STATE(2174), 1, - sym_text_interpolation, - [69628] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(64), 1, + sym_parenthesized_expression, + [59172] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2175), 1, - sym_text_interpolation, - ACTIONS(4248), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69642] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2176), 1, - sym_text_interpolation, - ACTIONS(4330), 2, + ACTIONS(4286), 2, sym__automatic_semicolon, anon_sym_SEMI, - [69656] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59180] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4250), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59188] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2177), 1, - sym_text_interpolation, ACTIONS(4288), 2, anon_sym_COMMA, anon_sym_RBRACE, - [69670] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59196] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4275), 1, sym_name, - STATE(2178), 1, - sym_text_interpolation, - STATE(2564), 1, + STATE(2518), 1, sym_namespace_name, - [69686] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2179), 1, - sym_text_interpolation, - ACTIONS(4332), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69700] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59206] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - STATE(34), 1, + STATE(66), 1, sym_parenthesized_expression, - STATE(2180), 1, - sym_text_interpolation, - [69716] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59216] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2549), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_EQ, + [59226] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(459), 1, + STATE(437), 1, sym_declaration_list, - STATE(2181), 1, - sym_text_interpolation, - [69732] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59236] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(457), 1, + STATE(438), 1, sym_declaration_list, - STATE(2182), 1, - sym_text_interpolation, - [69748] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59246] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3444), 1, anon_sym_LBRACE, - STATE(556), 1, + STATE(548), 1, sym_enum_declaration_list, - STATE(2183), 1, - sym_text_interpolation, - [69764] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59256] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(4292), 1, + anon_sym_LPAREN, + STATE(2188), 1, + sym_parenthesized_expression, + [59266] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LBRACE, STATE(1116), 1, sym_compound_statement, - STATE(2184), 1, - sym_text_interpolation, - [69780] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, - STATE(2185), 1, - sym_text_interpolation, - [69796] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59276] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(1120), 1, sym_compound_statement, - STATE(2186), 1, - sym_text_interpolation, - [69812] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59286] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_compound_statement, + [59296] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_LPAREN, + STATE(755), 1, + sym_arguments, + [59306] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_declaration_list, + [59316] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_declaration_list, + [59326] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN, + STATE(1870), 1, + sym_parenthesized_expression, + [59336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4294), 1, + anon_sym_SQUOTE, + ACTIONS(4296), 1, + sym_string_value, + [59346] = 3, + ACTIONS(29), 1, anon_sym_LBRACE, - STATE(1117), 1, + ACTIONS(1506), 1, + sym_comment, + STATE(470), 1, sym_compound_statement, - STATE(2187), 1, - sym_text_interpolation, - [69828] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59356] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1122), 1, + STATE(1074), 1, sym_compound_statement, - STATE(2188), 1, - sym_text_interpolation, - [69844] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59366] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(442), 1, + STATE(453), 1, sym_declaration_list, - STATE(2189), 1, - sym_text_interpolation, - [69860] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59376] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_declaration_list, - STATE(2190), 1, - sym_text_interpolation, - [69876] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2191), 1, - sym_text_interpolation, - ACTIONS(2529), 2, - anon_sym_COMMA, + ACTIONS(3796), 2, + anon_sym_EQ, anon_sym_RPAREN, - [69890] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4336), 1, - anon_sym_LPAREN, - STATE(2192), 1, - sym_text_interpolation, - STATE(2240), 1, - sym_parenthesized_expression, - [69906] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4336), 1, - anon_sym_LPAREN, - STATE(1910), 1, - sym_parenthesized_expression, - STATE(2193), 1, - sym_text_interpolation, - [69922] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59384] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(765), 1, - sym_arguments, - STATE(2194), 1, - sym_text_interpolation, - [69938] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4298), 1, + sym_name, + STATE(2487), 1, + sym_namespace_name, + [59394] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2195), 1, - sym_text_interpolation, - ACTIONS(4338), 2, + ACTIONS(4301), 2, anon_sym_LBRACE, anon_sym_COLON, - [69952] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_LPAREN, - STATE(885), 1, - sym_arguments, - STATE(2196), 1, - sym_text_interpolation, - [69968] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + [59402] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_SQUOTE, - ACTIONS(4342), 1, - sym_string_value, - STATE(2197), 1, - sym_text_interpolation, - [69984] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3266), 1, - anon_sym_LBRACE, - STATE(963), 1, - sym_declaration_list, - STATE(2198), 1, - sym_text_interpolation, - [70000] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2463), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59410] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2199), 1, - sym_text_interpolation, - ACTIONS(4344), 2, + ACTIONS(4303), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70014] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59418] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2200), 1, - sym_text_interpolation, - ACTIONS(4346), 2, + ACTIONS(455), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70028] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59426] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2201), 1, - sym_text_interpolation, - ACTIONS(3252), 2, + ACTIONS(3152), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70042] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1621), 1, - sym_formal_parameters, - STATE(2202), 1, - sym_text_interpolation, - [70058] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2203), 1, - sym_text_interpolation, - ACTIONS(4265), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70072] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59434] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2204), 1, - sym_text_interpolation, - ACTIONS(4348), 2, + ACTIONS(4305), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70086] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2205), 1, - sym_text_interpolation, - ACTIONS(4350), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70100] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59442] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, STATE(1127), 1, sym_declaration_list, - STATE(2206), 1, - sym_text_interpolation, - [70116] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2207), 1, - sym_text_interpolation, - ACTIONS(4352), 2, + [59452] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1716), 1, + sym_declaration_list, + [59462] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4307), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70130] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [59470] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(469), 1, - sym_compound_statement, - STATE(2208), 1, - sym_text_interpolation, - [70146] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1879), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_arguments, + [59480] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_declaration_list, - STATE(2209), 1, - sym_text_interpolation, - [70162] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4218), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59488] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4309), 1, anon_sym_SEMI, - ACTIONS(4356), 1, + ACTIONS(4311), 1, sym__automatic_semicolon, - STATE(2210), 1, - sym_text_interpolation, - [70178] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2211), 1, - sym_text_interpolation, - ACTIONS(3790), 2, - anon_sym_EQ, - anon_sym_RPAREN, - [70192] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59498] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2212), 1, - sym_text_interpolation, - ACTIONS(4358), 2, + ACTIONS(4275), 1, + sym_name, + STATE(2483), 1, + sym_namespace_name, + [59508] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4213), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70206] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59516] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4360), 1, - sym_name, - STATE(2213), 1, - sym_text_interpolation, - STATE(2530), 1, - sym_namespace_name, - [70222] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1891), 1, + sym_formal_parameters, + [59526] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4319), 1, - sym_name, - STATE(2214), 1, - sym_text_interpolation, - STATE(2526), 1, - sym_namespace_name, - [70238] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59534] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(3720), 1, + anon_sym_LBRACE, + STATE(529), 1, + sym_declaration_list, + [59544] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1895), 1, + sym_formal_parameters, + [59554] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4315), 1, anon_sym_LBRACE, STATE(431), 1, sym_compound_statement, - STATE(2215), 1, - sym_text_interpolation, - [70254] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59564] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(4317), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59572] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59580] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_LPAREN, - STATE(1932), 1, - sym_formal_parameters, - STATE(2216), 1, - sym_text_interpolation, - [70270] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2217), 1, - sym_text_interpolation, - ACTIONS(4363), 2, + ACTIONS(4323), 1, + anon_sym_RPAREN, + [59590] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4325), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70284] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59598] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2218), 1, - sym_text_interpolation, - ACTIONS(4365), 2, + ACTIONS(4327), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70298] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59606] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2219), 1, - sym_text_interpolation, - ACTIONS(4367), 2, + ACTIONS(4329), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70312] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59614] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1660), 1, + ACTIONS(1648), 1, anon_sym_BSLASH, - STATE(2220), 1, - sym_text_interpolation, - STATE(2254), 1, + STATE(2208), 1, aux_sym_namespace_name_repeat1, - [70328] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59624] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2221), 1, - sym_text_interpolation, - ACTIONS(2429), 2, + ACTIONS(4331), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - [70342] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(532), 1, - sym_declaration_list, - STATE(2222), 1, - sym_text_interpolation, - [70358] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59632] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2223), 1, - sym_text_interpolation, - ACTIONS(539), 2, + ACTIONS(4333), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70372] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - STATE(803), 1, - sym_arguments, - STATE(2224), 1, - sym_text_interpolation, - [70388] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [59640] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(1680), 1, - sym_compound_statement, - STATE(2225), 1, - sym_text_interpolation, - [70404] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4369), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - anon_sym_RPAREN, - STATE(2226), 1, - sym_text_interpolation, - [70420] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2227), 1, - sym_text_interpolation, - ACTIONS(4373), 2, + ACTIONS(4335), 2, anon_sym_LBRACE, anon_sym_COLON, - [70434] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59648] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2228), 1, - sym_text_interpolation, - ACTIONS(4375), 2, + ACTIONS(4337), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70448] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59656] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2229), 1, - sym_text_interpolation, - ACTIONS(4377), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70462] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4339), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_match_block, + [59666] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(2172), 1, + STATE(2131), 1, sym_variable_name, - STATE(2230), 1, - sym_text_interpolation, - [70478] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_EQ, - STATE(2231), 1, - sym_text_interpolation, - [70494] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59676] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2232), 1, - sym_text_interpolation, - ACTIONS(4379), 2, + ACTIONS(4341), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70508] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2233), 1, - sym_text_interpolation, - ACTIONS(2429), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70522] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2234), 1, - sym_text_interpolation, - ACTIONS(4381), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70536] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59684] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2153), 1, - sym_variable_name, - STATE(2235), 1, - sym_text_interpolation, - [70552] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(784), 1, + sym_arguments, + [59694] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2236), 1, - sym_text_interpolation, - ACTIONS(4383), 2, - anon_sym_COMMA, + ACTIONS(2525), 1, anon_sym_RPAREN, - [70566] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4290), 1, + anon_sym_EQ, + [59704] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2237), 1, - sym_text_interpolation, - ACTIONS(4049), 2, + ACTIONS(4003), 2, anon_sym_COMMA, anon_sym_RBRACE, - [70580] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59712] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2238), 1, - sym_text_interpolation, - ACTIONS(4385), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70594] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3522), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(2086), 1, - sym_enum_declaration_list, - STATE(2239), 1, - sym_text_interpolation, - [70610] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(947), 1, + sym_declaration_list, + [59722] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4387), 1, - anon_sym_LBRACE, - STATE(1130), 1, - sym_match_block, - STATE(2240), 1, - sym_text_interpolation, - [70626] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4334), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(20), 1, - sym_parenthesized_expression, - STATE(2241), 1, - sym_text_interpolation, - [70642] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + STATE(1593), 1, + sym_formal_parameters, + [59732] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4343), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [59740] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(957), 1, + STATE(1711), 1, sym_compound_statement, - STATE(2242), 1, - sym_text_interpolation, - [70658] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59750] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2243), 1, - sym_text_interpolation, - ACTIONS(4389), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [70672] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2244), 1, - sym_text_interpolation, - ACTIONS(2453), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70686] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(2115), 1, + sym_variable_name, + [59760] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_formal_parameters, - STATE(2245), 1, - sym_text_interpolation, - [70702] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(952), 1, + sym_compound_statement, + [59770] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2246), 1, - sym_text_interpolation, - ACTIONS(4394), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70716] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + ACTIONS(4346), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59778] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1683), 1, + STATE(1656), 1, sym_compound_statement, - STATE(2247), 1, - sym_text_interpolation, - [70732] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59788] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2745), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4396), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2248), 1, - sym_text_interpolation, - [70748] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4334), 1, + ACTIONS(4348), 1, + anon_sym_LPAREN, + STATE(1709), 1, + sym_formal_parameters, + [59798] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4284), 1, anon_sym_LPAREN, - STATE(27), 1, + STATE(41), 1, sym_parenthesized_expression, - STATE(2249), 1, - sym_text_interpolation, - [70764] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4336), 1, + [59808] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4292), 1, anon_sym_LPAREN, - STATE(2250), 1, - sym_text_interpolation, - STATE(2268), 1, + STATE(2247), 1, sym_parenthesized_expression, - [70780] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59818] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4292), 1, anon_sym_LPAREN, - STATE(1927), 1, + STATE(1894), 1, sym_parenthesized_expression, - STATE(2251), 1, - sym_text_interpolation, - [70796] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59828] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2252), 1, - sym_text_interpolation, - ACTIONS(3738), 2, + ACTIONS(4350), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [70810] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [59836] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, - STATE(2253), 1, - sym_text_interpolation, - [70826] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2731), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4352), 1, + aux_sym_namespace_use_declaration_token2, + [59846] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4398), 1, + ACTIONS(4354), 1, anon_sym_BSLASH, - STATE(1733), 1, + STATE(1688), 1, aux_sym_namespace_name_repeat1, - STATE(2254), 1, - sym_text_interpolation, - [70842] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59856] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2255), 1, - sym_text_interpolation, - ACTIONS(4401), 2, + ACTIONS(4284), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, + [59866] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2731), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4357), 1, + aux_sym_namespace_use_declaration_token2, + [59876] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4359), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70856] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59884] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3732), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59892] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [59900] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1089), 1, + STATE(1062), 1, sym_compound_statement, - STATE(2256), 1, - sym_text_interpolation, - [70872] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59910] = 3, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + STATE(490), 1, + sym_compound_statement, + [59920] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1933), 1, + STATE(1578), 1, sym_formal_parameters, - STATE(2257), 1, - sym_text_interpolation, - [70888] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [59930] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2059), 1, - sym_compound_statement, - STATE(2258), 1, - sym_text_interpolation, - [70904] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2401), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [59938] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, STATE(449), 1, sym_declaration_list, - STATE(2259), 1, - sym_text_interpolation, - [70920] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(214), 1, + [59948] = 3, + ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(504), 1, + STATE(920), 1, sym_compound_statement, - STATE(2260), 1, - sym_text_interpolation, - [70936] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_declaration_list, - STATE(2261), 1, - sym_text_interpolation, - [70952] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1577), 1, - sym_formal_parameters, - STATE(2262), 1, - sym_text_interpolation, - [70968] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59958] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_compound_statement, - STATE(2263), 1, - sym_text_interpolation, - [70984] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4275), 1, + sym_name, + STATE(2416), 1, + sym_namespace_name, + [59968] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1074), 1, + STATE(1046), 1, sym_compound_statement, - STATE(2264), 1, - sym_text_interpolation, - [71000] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59978] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1071), 1, + STATE(1051), 1, sym_compound_statement, - STATE(2265), 1, - sym_text_interpolation, - [71016] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2745), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4403), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2266), 1, - sym_text_interpolation, - [71032] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [59988] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_LPAREN, - STATE(618), 1, - sym_arguments, - STATE(2267), 1, - sym_text_interpolation, - [71048] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4405), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(920), 1, - sym_match_block, - STATE(2268), 1, - sym_text_interpolation, - [71064] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2269), 1, - sym_text_interpolation, - STATE(2381), 1, - sym_variable_name, - [71080] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2005), 1, + sym_enum_declaration_list, + [59998] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2270), 1, - sym_text_interpolation, - ACTIONS(4407), 2, + ACTIONS(3830), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71094] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60006] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(456), 1, - sym_declaration_list, - STATE(2271), 1, - sym_text_interpolation, - [71110] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1049), 1, + sym_compound_statement, + [60016] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1594), 1, + STATE(1610), 1, sym_formal_parameters, - STATE(2272), 1, - sym_text_interpolation, - [71126] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + [60026] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(965), 1, - sym_compound_statement, - STATE(2273), 1, - sym_text_interpolation, - [71142] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60034] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2274), 1, - sym_text_interpolation, - ACTIONS(4187), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71156] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(2337), 1, + sym_variable_name, + [60044] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2275), 1, - sym_text_interpolation, - ACTIONS(4409), 2, + ACTIONS(4365), 2, anon_sym_string, anon_sym_int, - [71170] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60052] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(1618), 1, anon_sym_LPAREN, - STATE(19), 1, - sym_parenthesized_expression, - STATE(2276), 1, - sym_text_interpolation, - [71186] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2277), 1, - sym_text_interpolation, - ACTIONS(4411), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71200] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(631), 1, + sym_arguments, + [60062] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(914), 1, + sym_compound_statement, + [60072] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(2088), 1, + STATE(452), 1, sym_declaration_list, - STATE(2278), 1, - sym_text_interpolation, - [71216] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2279), 1, - sym_text_interpolation, - ACTIONS(4413), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71230] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60082] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - STATE(2280), 1, - sym_text_interpolation, - ACTIONS(4415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71244] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(910), 1, + sym_compound_statement, + [60092] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2281), 1, - sym_text_interpolation, - ACTIONS(3858), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71258] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_declaration_list, + [60102] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4417), 1, - anon_sym_LPAREN, - STATE(2282), 1, - sym_text_interpolation, - STATE(2336), 1, - sym_parenthesized_expression, - [71274] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_declaration_list, + [60112] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1963), 1, + STATE(1922), 1, sym_formal_parameters, - STATE(2283), 1, - sym_text_interpolation, - [71290] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60122] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym_parenthesized_expression, + [60132] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2284), 1, - sym_text_interpolation, - ACTIONS(3236), 2, + ACTIONS(4145), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [71304] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [60140] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(1108), 1, sym_compound_statement, - STATE(2285), 1, - sym_text_interpolation, - [71320] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60150] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2286), 1, - sym_text_interpolation, - ACTIONS(4098), 2, + ACTIONS(2527), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [71334] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [60158] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(555), 1, + STATE(558), 1, sym_declaration_list, - STATE(2287), 1, - sym_text_interpolation, - [71350] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60168] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2288), 1, - sym_text_interpolation, - ACTIONS(4419), 2, + ACTIONS(4367), 2, anon_sym_string, anon_sym_int, - [71364] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60176] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3444), 1, anon_sym_LBRACE, - STATE(543), 1, + STATE(541), 1, sym_enum_declaration_list, - STATE(2289), 1, - sym_text_interpolation, - [71380] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60186] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2290), 1, - sym_text_interpolation, - ACTIONS(4421), 2, + ACTIONS(4369), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71394] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60194] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2291), 1, - sym_text_interpolation, - ACTIONS(4423), 2, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_declaration_list, + [60204] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3190), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60212] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4371), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_match_block, + [60222] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4373), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71408] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60230] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2292), 1, - sym_text_interpolation, - ACTIONS(435), 2, + ACTIONS(4375), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71422] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60238] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, - STATE(2293), 1, - sym_text_interpolation, - [71438] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4111), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [60246] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(1970), 1, + sym_variable_name, + [60256] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(531), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60264] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_formal_parameters, + [60274] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1652), 1, + STATE(1634), 1, sym_declaration_list, - STATE(2294), 1, - sym_text_interpolation, - [71454] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60284] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(961), 1, + STATE(958), 1, sym_compound_statement, - STATE(2295), 1, - sym_text_interpolation, - [71470] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60294] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2296), 1, - sym_text_interpolation, - ACTIONS(507), 2, + ACTIONS(525), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71484] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60302] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1059), 1, + STATE(1045), 1, sym_declaration_list, - STATE(2297), 1, - sym_text_interpolation, - [71500] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60312] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1058), 1, + STATE(1043), 1, sym_declaration_list, - STATE(2298), 1, - sym_text_interpolation, - [71516] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60322] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1644), 1, + STATE(1569), 1, sym_formal_parameters, - STATE(2299), 1, - sym_text_interpolation, - [71532] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60332] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4377), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60340] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1659), 1, + STATE(1636), 1, sym_compound_statement, - STATE(2300), 1, - sym_text_interpolation, - [71548] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2301), 1, - sym_text_interpolation, - ACTIONS(4425), 2, + [60350] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4379), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71562] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60358] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2302), 1, - sym_text_interpolation, - ACTIONS(4427), 2, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1570), 1, + sym_formal_parameters, + [60368] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4381), 2, + anon_sym_string, + anon_sym_int, + [60376] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4383), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71576] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60384] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(1639), 1, sym_declaration_list, - STATE(2303), 1, - sym_text_interpolation, - [71592] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - STATE(968), 1, - sym_compound_statement, - STATE(2304), 1, - sym_text_interpolation, - [71608] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1637), 1, - sym_formal_parameters, - STATE(2305), 1, - sym_text_interpolation, - [71624] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60394] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4429), 1, + ACTIONS(4315), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_compound_statement, + [60404] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4385), 1, anon_sym_SEMI, - ACTIONS(4431), 1, + ACTIONS(4387), 1, sym__automatic_semicolon, - STATE(2306), 1, - sym_text_interpolation, - [71640] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2307), 1, - sym_text_interpolation, - ACTIONS(4433), 2, + [60414] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4389), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71654] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60422] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(2113), 1, + STATE(1640), 1, sym_declaration_list, - STATE(2308), 1, - sym_text_interpolation, - [71670] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60432] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(4267), 1, anon_sym_LPAREN, - STATE(1602), 1, - sym_formal_parameters, - STATE(2309), 1, - sym_text_interpolation, - [71686] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2310), 1, - sym_text_interpolation, - ACTIONS(4435), 2, - anon_sym_string, - anon_sym_int, - [71700] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4309), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_compound_statement, - STATE(2311), 1, - sym_text_interpolation, - [71716] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2364), 1, + sym_parenthesized_expression, + [60442] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1665), 1, + STATE(1069), 1, sym_declaration_list, - STATE(2312), 1, - sym_text_interpolation, - [71732] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(439), 1, + [60452] = 3, + ACTIONS(481), 1, anon_sym_COLON, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2135), 1, + STATE(2097), 1, sym_colon_block, - STATE(2313), 1, - sym_text_interpolation, - [71748] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60462] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4391), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60470] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2513), 1, + ACTIONS(2503), 1, anon_sym_RPAREN, - ACTIONS(4324), 1, + ACTIONS(4290), 1, anon_sym_EQ, - STATE(2314), 1, - sym_text_interpolation, - [71764] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60480] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4417), 1, - anon_sym_LPAREN, - STATE(2315), 1, - sym_text_interpolation, - STATE(2415), 1, - sym_parenthesized_expression, - [71780] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_EQ, + [60490] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(1989), 1, - sym_enum_declaration_list, - STATE(2316), 1, - sym_text_interpolation, - [71796] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4319), 1, - sym_name, - STATE(2317), 1, - sym_text_interpolation, - STATE(2449), 1, - sym_namespace_name, - [71812] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(4393), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60498] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(932), 1, - sym_compound_statement, - STATE(2318), 1, - sym_text_interpolation, - [71828] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4395), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60506] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - STATE(1720), 1, - sym_formal_parameters, - STATE(2319), 1, - sym_text_interpolation, - [71844] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2320), 1, - sym_text_interpolation, - ACTIONS(4029), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71858] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - STATE(970), 1, - sym_compound_statement, - STATE(2321), 1, - sym_text_interpolation, - [71874] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(84), 1, + sym_parenthesized_expression, + [60516] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2467), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_EQ, - STATE(2322), 1, - sym_text_interpolation, - [71890] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4397), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60524] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2323), 1, - sym_text_interpolation, - ACTIONS(1649), 2, + ACTIONS(4399), 2, anon_sym_COMMA, anon_sym_RBRACK, - [71904] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60532] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(1727), 1, - sym_declaration_list, - STATE(2324), 1, - sym_text_interpolation, - [71920] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - STATE(969), 1, - sym_compound_statement, - STATE(2325), 1, - sym_text_interpolation, - [71936] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1958), 1, + sym_enum_declaration_list, + [60542] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2326), 1, - sym_text_interpolation, - ACTIONS(4437), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71950] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [60550] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2327), 1, - sym_text_interpolation, - ACTIONS(4439), 2, + ACTIONS(3365), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71964] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60558] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(916), 1, + STATE(954), 1, sym_compound_statement, - STATE(2328), 1, - sym_text_interpolation, - [71980] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60568] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2329), 1, - sym_text_interpolation, - ACTIONS(4441), 2, + ACTIONS(4403), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71994] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60576] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, + sym_comment, + STATE(907), 1, + sym_compound_statement, + [60586] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3444), 1, anon_sym_LBRACE, - STATE(505), 1, + STATE(518), 1, sym_enum_declaration_list, - STATE(2330), 1, - sym_text_interpolation, - [72010] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60596] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2331), 1, - sym_text_interpolation, - ACTIONS(2485), 2, + ACTIONS(2531), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72024] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(1675), 1, - sym_declaration_list, - STATE(2332), 1, - sym_text_interpolation, - [72040] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60604] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(2005), 1, + STATE(1959), 1, sym_formal_parameters, - STATE(2333), 1, - sym_text_interpolation, - [72056] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60614] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2334), 1, - sym_text_interpolation, - ACTIONS(4443), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72070] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + STATE(71), 1, + sym_parenthesized_expression, + [60624] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + STATE(912), 1, + sym_compound_statement, + [60634] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3244), 1, + anon_sym_LBRACE, + STATE(1647), 1, + sym_declaration_list, + [60644] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(2006), 1, + STATE(1960), 1, sym_formal_parameters, - STATE(2335), 1, - sym_text_interpolation, - [72086] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60654] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2336), 1, - sym_text_interpolation, - ACTIONS(4445), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72100] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(2228), 1, + STATE(2187), 1, sym_variable_name, - STATE(2337), 1, - sym_text_interpolation, - [72116] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60664] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1135), 1, + STATE(1070), 1, sym_compound_statement, - STATE(2338), 1, - sym_text_interpolation, - [72132] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60674] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3238), 1, + anon_sym_LBRACE, + STATE(904), 1, + sym_declaration_list, + [60684] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(1112), 1, sym_compound_statement, - STATE(2339), 1, - sym_text_interpolation, - [72148] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60694] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(955), 1, + STATE(913), 1, sym_declaration_list, - STATE(2340), 1, - sym_text_interpolation, - [72164] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60704] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(2190), 1, + sym_variable_name, + [60714] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4447), 1, + ACTIONS(4405), 1, anon_sym_SEMI, - ACTIONS(4449), 1, + ACTIONS(4407), 1, sym__automatic_semicolon, - STATE(2341), 1, - sym_text_interpolation, - [72180] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60724] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(2232), 1, + STATE(2056), 1, sym_variable_name, - STATE(2342), 1, - sym_text_interpolation, - [72196] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60734] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(1693), 1, + STATE(1626), 1, sym_compound_statement, - STATE(2343), 1, - sym_text_interpolation, - [72212] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2094), 1, - sym_variable_name, - STATE(2344), 1, - sym_text_interpolation, - [72228] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2345), 1, - sym_text_interpolation, - ACTIONS(3399), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72242] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60744] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(2236), 1, + STATE(2200), 1, sym_variable_name, - STATE(2346), 1, - sym_text_interpolation, - [72258] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60754] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2347), 1, - sym_text_interpolation, - ACTIONS(4451), 2, + ACTIONS(4409), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72272] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2348), 1, - sym_text_interpolation, - ACTIONS(4453), 2, + [60762] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4411), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72286] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60770] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(2238), 1, + STATE(2206), 1, sym_variable_name, - STATE(2349), 1, - sym_text_interpolation, - [72302] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60780] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2350), 1, - sym_text_interpolation, - ACTIONS(4455), 2, + ACTIONS(4413), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72316] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60788] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2351), 1, - sym_text_interpolation, - ACTIONS(4457), 2, + ACTIONS(4415), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72330] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60796] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2352), 1, - sym_text_interpolation, - ACTIONS(4133), 2, + ACTIONS(4087), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72344] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60804] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(950), 1, + STATE(916), 1, sym_compound_statement, - STATE(2353), 1, - sym_text_interpolation, - [72360] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60814] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1702), 1, + STATE(1666), 1, sym_declaration_list, - STATE(2354), 1, - sym_text_interpolation, - [72376] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60824] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR, - STATE(2083), 1, + STATE(2045), 1, sym_variable_name, - STATE(2355), 1, - sym_text_interpolation, - [72392] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60834] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2356), 1, - sym_text_interpolation, - ACTIONS(4459), 2, + ACTIONS(4417), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72406] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60842] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1703), 1, + STATE(1668), 1, sym_declaration_list, - STATE(2357), 1, - sym_text_interpolation, - [72422] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60852] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(4419), 1, sym_name, - STATE(1760), 1, + STATE(1750), 1, sym_namespace_name, - STATE(2358), 1, - sym_text_interpolation, - [72438] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2359), 1, - sym_text_interpolation, - ACTIONS(4463), 2, + [60862] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4421), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72452] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60870] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(949), 1, + STATE(902), 1, sym_compound_statement, - STATE(2360), 1, - sym_text_interpolation, - [72468] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60880] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1108), 1, + STATE(1034), 1, sym_compound_statement, - STATE(2361), 1, - sym_text_interpolation, - [72484] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60890] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1088), 1, + STATE(1080), 1, sym_compound_statement, - STATE(2362), 1, - sym_text_interpolation, - [72500] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [60900] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(945), 1, + STATE(928), 1, sym_compound_statement, - STATE(2363), 1, - sym_text_interpolation, - [72516] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60910] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(2076), 1, + STATE(2036), 1, sym_formal_parameters, - STATE(2364), 1, - sym_text_interpolation, - [72532] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60920] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - STATE(2365), 1, - sym_text_interpolation, - [72548] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3238), 1, + anon_sym_LBRACE, + STATE(2073), 1, + sym_declaration_list, + [60930] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2366), 1, - sym_text_interpolation, - ACTIONS(4465), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72562] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + ACTIONS(4348), 1, + anon_sym_LPAREN, + STATE(1687), 1, + sym_formal_parameters, + [60940] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(943), 1, + STATE(934), 1, sym_compound_statement, - STATE(2367), 1, - sym_text_interpolation, - [72578] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60950] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(445), 1, + STATE(446), 1, sym_declaration_list, - STATE(2368), 1, - sym_text_interpolation, - [72594] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60960] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3444), 1, anon_sym_LBRACE, - STATE(530), 1, + STATE(491), 1, sym_enum_declaration_list, - STATE(2369), 1, - sym_text_interpolation, - [72610] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60970] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2370), 1, - sym_text_interpolation, - ACTIONS(4467), 2, + ACTIONS(4423), 2, anon_sym_string, anon_sym_int, - [72624] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60978] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1057), 1, + STATE(1092), 1, sym_compound_statement, - STATE(2371), 1, - sym_text_interpolation, - [72640] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60988] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - STATE(1580), 1, + STATE(1556), 1, sym_formal_parameters, - STATE(2372), 1, - sym_text_interpolation, - [72656] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [60998] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(949), 1, sym_declaration_list, - STATE(2373), 1, - sym_text_interpolation, - [72672] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1534), 1, + [61008] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1524), 1, anon_sym_LPAREN, - STATE(587), 1, + STATE(586), 1, sym_arguments, - STATE(2374), 1, - sym_text_interpolation, - [72688] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61018] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3311), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(440), 1, sym_declaration_list, - STATE(2375), 1, - sym_text_interpolation, - [72704] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61028] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1711), 1, + STATE(1671), 1, sym_declaration_list, - STATE(2376), 1, - sym_text_interpolation, - [72720] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61038] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2377), 1, - sym_text_interpolation, - ACTIONS(2531), 2, + ACTIONS(2513), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72734] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(1516), 1, - sym_comment, - STATE(2122), 1, - sym_compound_statement, - STATE(2378), 1, - sym_text_interpolation, - [72750] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2379), 1, - sym_text_interpolation, - ACTIONS(3333), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72764] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61046] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2380), 1, - sym_text_interpolation, - ACTIONS(3837), 2, + ACTIONS(3814), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72778] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61054] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2381), 1, - sym_text_interpolation, - ACTIONS(4469), 2, + ACTIONS(4425), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72792] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61062] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(2314), 1, + sym_variable_name, + [61072] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1712), 1, + STATE(1673), 1, sym_declaration_list, - STATE(2382), 1, - sym_text_interpolation, - [72808] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61082] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2383), 1, - sym_text_interpolation, - ACTIONS(4108), 2, + ACTIONS(4062), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72822] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61090] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(961), 1, sym_declaration_list, - STATE(2384), 1, - sym_text_interpolation, - [72838] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61100] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(963), 1, sym_declaration_list, - STATE(2385), 1, - sym_text_interpolation, - [72854] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61110] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2386), 1, - sym_text_interpolation, - ACTIONS(4471), 2, + ACTIONS(4427), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72868] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2387), 1, - sym_text_interpolation, - ACTIONS(4474), 2, + [61118] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3357), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72882] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61126] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4430), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4478), 1, + [61134] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4432), 1, + anon_sym_SEMI, + ACTIONS(4434), 1, sym__automatic_semicolon, - STATE(2388), 1, - sym_text_interpolation, - [72898] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2389), 1, - sym_text_interpolation, - ACTIONS(4480), 2, + [61144] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4436), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72912] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61152] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2390), 1, - sym_text_interpolation, - ACTIONS(4482), 2, + ACTIONS(4438), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72926] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61160] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3522), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(2055), 1, + STATE(2016), 1, sym_enum_declaration_list, - STATE(2391), 1, - sym_text_interpolation, - [72942] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61170] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2392), 1, - sym_text_interpolation, - ACTIONS(1651), 2, + ACTIONS(1641), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72956] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + [61178] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(947), 1, + STATE(950), 1, sym_compound_statement, - STATE(2393), 1, - sym_text_interpolation, - [72972] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61188] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1132), 1, + STATE(1122), 1, sym_declaration_list, - STATE(2394), 1, - sym_text_interpolation, - [72988] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61198] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(1121), 1, sym_declaration_list, - STATE(2395), 1, - sym_text_interpolation, - [73004] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2356), 1, - sym_variable_name, - STATE(2396), 1, - sym_text_interpolation, - [73020] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61208] = 3, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(1506), 1, sym_comment, - STATE(2397), 1, - sym_text_interpolation, - ACTIONS(4484), 2, - anon_sym_SEMI, - anon_sym_COLON, - [73034] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(2062), 1, + sym_compound_statement, + [61218] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2398), 1, - sym_text_interpolation, - ACTIONS(4486), 2, - sym__automatic_semicolon, + ACTIONS(4440), 2, anon_sym_SEMI, - [73048] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3266), 1, + anon_sym_COLON, + [61226] = 3, + ACTIONS(379), 1, anon_sym_LBRACE, - STATE(919), 1, - sym_declaration_list, - STATE(2399), 1, - sym_text_interpolation, - [73064] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2016), 1, - sym_variable_name, - STATE(2400), 1, - sym_text_interpolation, - [73080] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4488), 1, - anon_sym_SQUOTE, - ACTIONS(4490), 1, - sym_string_value, - STATE(2401), 1, - sym_text_interpolation, - [73096] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, - STATE(2402), 1, - sym_text_interpolation, - [73112] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2350), 1, - sym_variable_name, - STATE(2403), 1, - sym_text_interpolation, - [73128] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + STATE(948), 1, + sym_compound_statement, + [61236] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(913), 1, + STATE(943), 1, sym_compound_statement, - STATE(2404), 1, - sym_text_interpolation, - [73144] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(361), 1, + [61246] = 3, + ACTIONS(357), 1, anon_sym_COLON, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(2405), 1, - sym_text_interpolation, - STATE(2497), 1, + STATE(2450), 1, sym_colon_block, - [73160] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61256] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - STATE(2313), 1, + STATE(23), 1, sym_parenthesized_expression, - STATE(2406), 1, - sym_text_interpolation, - [73176] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61266] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2407), 1, - sym_text_interpolation, - ACTIONS(521), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73190] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4315), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_compound_statement, + [61276] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4292), 1, anon_sym_LPAREN, - STATE(79), 1, + STATE(2273), 1, sym_parenthesized_expression, - STATE(2408), 1, - sym_text_interpolation, - [73206] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61286] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3266), 1, - anon_sym_LBRACE, - STATE(918), 1, - sym_declaration_list, - STATE(2409), 1, - sym_text_interpolation, - [73222] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61294] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4284), 1, anon_sym_LPAREN, - STATE(51), 1, + STATE(80), 1, sym_parenthesized_expression, - STATE(2410), 1, - sym_text_interpolation, - [73238] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(2411), 1, - sym_text_interpolation, - ACTIONS(3112), 2, - sym_nowdoc_string, - anon_sym_, - [73252] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61304] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_DOLLAR, - STATE(2347), 1, - sym_variable_name, - STATE(2412), 1, - sym_text_interpolation, - [73268] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4444), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61312] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2541), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_EQ, - STATE(2413), 1, - sym_text_interpolation, - [73284] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4446), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [61320] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(1645), 1, + STATE(1683), 1, sym_declaration_list, - STATE(2414), 1, - sym_text_interpolation, - [73300] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61330] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2415), 1, - sym_text_interpolation, - ACTIONS(4492), 2, + ACTIONS(4448), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73314] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61338] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2416), 1, - sym_text_interpolation, - ACTIONS(4494), 2, + ACTIONS(2401), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73328] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61346] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - STATE(1106), 1, - sym_compound_statement, - STATE(2417), 1, - sym_text_interpolation, - [73344] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + STATE(2019), 1, + sym_enum_declaration_list, + [61356] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3226), 1, + anon_sym_LPAREN, + STATE(1594), 1, + sym_formal_parameters, + [61366] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3311), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_declaration_list, + [61376] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(911), 1, + STATE(941), 1, sym_compound_statement, - STATE(2418), 1, - sym_text_interpolation, - [73360] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - STATE(2419), 1, - sym_text_interpolation, - ACTIONS(4496), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73374] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61386] = 3, + ACTIONS(1506), 1, sym_comment, - STATE(2420), 1, - sym_text_interpolation, - ACTIONS(2453), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73388] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4284), 1, + anon_sym_LPAREN, + STATE(68), 1, + sym_parenthesized_expression, + [61396] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3254), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1741), 1, - sym_declaration_list, - STATE(2421), 1, - sym_text_interpolation, - [73404] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1628), 1, - sym_formal_parameters, - STATE(2422), 1, - sym_text_interpolation, - [73420] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + STATE(1053), 1, + sym_compound_statement, + [61406] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2423), 1, - sym_text_interpolation, - ACTIONS(4205), 2, + ACTIONS(4173), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [73434] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61414] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(2501), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_EQ, + [61424] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3305), 1, anon_sym_LBRACE, - STATE(1109), 1, + STATE(1063), 1, sym_compound_statement, - STATE(2424), 1, - sym_text_interpolation, - [73450] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61434] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3244), 1, anon_sym_LBRACE, - STATE(455), 1, + STATE(1691), 1, sym_declaration_list, - STATE(2425), 1, - sym_text_interpolation, - [73466] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61444] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 1, - anon_sym_LBRACE, - STATE(2058), 1, - sym_enum_declaration_list, - STATE(2426), 1, - sym_text_interpolation, - [73482] = 5, - ACTIONS(18), 1, - anon_sym_QMARK_GT, + ACTIONS(4450), 1, + anon_sym_SQUOTE, + ACTIONS(4452), 1, + sym_string_value, + [61454] = 3, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(2305), 1, + sym_variable_name, + [61464] = 3, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - STATE(908), 1, + STATE(2082), 1, sym_compound_statement, - STATE(2427), 1, - sym_text_interpolation, - [73498] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61474] = 3, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4498), 1, - sym_name, - STATE(2428), 1, - sym_text_interpolation, - [73511] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR, + STATE(2308), 1, + sym_variable_name, + [61484] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4500), 1, - anon_sym_SEMI, - STATE(2429), 1, - sym_text_interpolation, - [73524] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3985), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [61492] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4454), 1, + anon_sym_EQ_GT, + [61499] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_EQ, + [61506] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4458), 1, + anon_sym_EQ_GT, + [61513] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4460), 1, sym_name, - STATE(2430), 1, - sym_text_interpolation, - [73537] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61520] = 2, + ACTIONS(877), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4504), 1, + [61527] = 2, + ACTIONS(839), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61534] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4462), 1, anon_sym_EQ_GT, - STATE(2431), 1, - sym_text_interpolation, - [73550] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61541] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_STAR_STAR, - STATE(2432), 1, - sym_text_interpolation, - [73563] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(2501), 1, + anon_sym_RPAREN, + [61548] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4506), 1, - anon_sym_EQ, - STATE(2433), 1, - sym_text_interpolation, - [73576] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4035), 1, + anon_sym_RBRACE, + [61555] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4464), 1, + anon_sym_EQ, + [61562] = 2, + ACTIONS(855), 1, anon_sym_RPAREN, - STATE(2434), 1, - sym_text_interpolation, - [73589] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(873), 1, + ACTIONS(1506), 1, + sym_comment, + [61569] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_COLON_COLON, + [61576] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4468), 1, anon_sym_RPAREN, - ACTIONS(1516), 1, + [61583] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2435), 1, - sym_text_interpolation, - [73602] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4470), 1, + anon_sym_RPAREN, + [61590] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(4175), 1, anon_sym_LBRACE, - STATE(2436), 1, - sym_text_interpolation, - [73615] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61597] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2541), 1, + ACTIONS(4472), 1, + aux_sym_if_statement_token2, + [61604] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4474), 1, + sym_name, + [61611] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_STAR_STAR, + [61618] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2315), 1, + anon_sym_STAR_STAR, + [61625] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_EQ_GT, + [61632] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4478), 1, + anon_sym_RPAREN, + [61639] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4480), 1, + sym_heredoc_end, + [61646] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4482), 1, anon_sym_RPAREN, - STATE(2437), 1, - sym_text_interpolation, - [73628] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [61653] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + [61660] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_RBRACK, + [61667] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4488), 1, + aux_sym_if_statement_token2, + [61674] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4490), 1, + sym_integer, + [61681] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_RBRACK, + [61688] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_EQ, + [61695] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4494), 1, + anon_sym_COLON_COLON, + [61702] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3594), 1, + sym_name, + [61709] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4496), 1, + sym_heredoc_end, + [61716] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4498), 1, + anon_sym_BSLASH, + [61723] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4500), 1, + sym_name, + [61730] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4502), 1, + anon_sym_EQ_GT, + [61737] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_EQ_GT, + [61744] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4506), 1, + sym_name, + [61751] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4508), 1, + aux_sym_class_declaration_token1, + [61758] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4510), 1, - sym_heredoc_end, - STATE(2438), 1, - sym_text_interpolation, - [73641] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [61765] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4512), 1, - anon_sym_COLON_COLON, - STATE(2439), 1, - sym_text_interpolation, - [73654] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(875), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, + sym_heredoc_end, + [61772] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2440), 1, - sym_text_interpolation, - [73667] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4151), 1, + anon_sym_LBRACE, + [61779] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4514), 1, - anon_sym_RBRACK, - STATE(2441), 1, - sym_text_interpolation, - [73680] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ, + [61786] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4516), 1, - anon_sym_RPAREN, - STATE(2442), 1, - sym_text_interpolation, - [73693] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_end, + [61793] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4518), 1, - anon_sym_EQ, - STATE(2443), 1, - sym_text_interpolation, - [73706] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [61800] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4520), 1, - anon_sym_EQ_GT, - STATE(2444), 1, - sym_text_interpolation, - [73719] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(867), 1, - anon_sym_SEMI, - ACTIONS(1516), 1, - sym_comment, - STATE(2445), 1, - sym_text_interpolation, - [73732] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [61807] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4522), 1, - aux_sym_if_statement_token2, - STATE(2446), 1, - sym_text_interpolation, - [73745] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2265), 1, - anon_sym_STAR_STAR, - STATE(2447), 1, - sym_text_interpolation, - [73758] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4085), 1, - anon_sym_RBRACE, - STATE(2448), 1, - sym_text_interpolation, - [73771] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_foreach_statement_token2, + [61814] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4524), 1, - anon_sym_BSLASH, - STATE(2449), 1, - sym_text_interpolation, - [73784] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [61821] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3995), 1, + anon_sym_RPAREN, + [61828] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4526), 1, - anon_sym_EQ_GT, - STATE(2450), 1, - sym_text_interpolation, - [73797] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_DQUOTE2, + [61835] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4528), 1, - anon_sym_EQ_GT, - STATE(2451), 1, - sym_text_interpolation, - [73810] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SQUOTE2, + [61842] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4530), 1, - anon_sym_RBRACK, - STATE(2452), 1, - sym_text_interpolation, - [73823] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [61849] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4532), 1, - sym_integer, - STATE(2453), 1, - sym_text_interpolation, - [73836] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [61856] = 2, + ACTIONS(871), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61863] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3991), 1, + anon_sym_RBRACE, + [61870] = 2, + ACTIONS(879), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61877] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4534), 1, - sym_name, - STATE(2454), 1, - sym_text_interpolation, - [73849] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [61884] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4536), 1, - anon_sym_RBRACK, - STATE(2455), 1, - sym_text_interpolation, - [73862] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [61891] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4538), 1, - sym_heredoc_end, - STATE(2456), 1, - sym_text_interpolation, - [73875] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4047), 1, - anon_sym_RBRACE, - STATE(2457), 1, - sym_text_interpolation, - [73888] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [61898] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2503), 1, + anon_sym_RPAREN, + [61905] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4540), 1, - anon_sym_EQ_GT, - STATE(2458), 1, - sym_text_interpolation, - [73901] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_if_statement_token2, + [61912] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2451), 1, + anon_sym_RPAREN, + [61919] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3918), 1, + anon_sym_RBRACK, + [61926] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4542), 1, - sym_name, - STATE(2459), 1, - sym_text_interpolation, - [73914] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [61933] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4544), 1, - anon_sym_EQ_GT, - STATE(2460), 1, - sym_text_interpolation, - [73927] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [61940] = 2, + ACTIONS(841), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [61947] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4546), 1, - sym_name, - STATE(2461), 1, - sym_text_interpolation, - [73940] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4189), 1, - anon_sym_LBRACE, - STATE(2462), 1, - sym_text_interpolation, - [73953] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_while_statement_token2, + [61954] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4548), 1, - aux_sym_class_declaration_token1, - STATE(2463), 1, - sym_text_interpolation, - [73966] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_if_statement_token2, + [61961] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4550), 1, - sym_name, - STATE(2464), 1, - sym_text_interpolation, - [73979] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [61968] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4552), 1, - aux_sym_foreach_statement_token2, - STATE(2465), 1, - sym_text_interpolation, - [73992] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [61975] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4554), 1, - anon_sym_RPAREN, - STATE(2466), 1, - sym_text_interpolation, - [74005] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ, + [61982] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_STAR_STAR, + [61989] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4556), 1, - anon_sym_EQ, - STATE(2467), 1, - sym_text_interpolation, - [74018] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_if_statement_token2, + [61996] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3972), 1, + anon_sym_RPAREN, + [62003] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4558), 1, - sym_heredoc_end, - STATE(2468), 1, - sym_text_interpolation, - [74031] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62010] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4560), 1, - sym_heredoc_end, - STATE(2469), 1, - sym_text_interpolation, - [74044] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [62017] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4562), 1, sym_name, - STATE(2470), 1, - sym_text_interpolation, - [74057] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62024] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4564), 1, - sym_name, - STATE(2471), 1, - sym_text_interpolation, - [74070] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4566), 1, anon_sym_EQ_GT, - STATE(2472), 1, - sym_text_interpolation, - [74083] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62031] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4037), 1, - anon_sym_RPAREN, - STATE(2473), 1, - sym_text_interpolation, - [74096] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4566), 1, + anon_sym_EQ, + [62038] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4568), 1, - anon_sym_DQUOTE2, - STATE(2474), 1, - sym_text_interpolation, - [74109] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62045] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4570), 1, - anon_sym_SQUOTE2, - STATE(2475), 1, - sym_text_interpolation, - [74122] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62052] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4572), 1, sym_name, - STATE(2476), 1, - sym_text_interpolation, - [74135] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(869), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, - sym_comment, - STATE(2477), 1, - sym_text_interpolation, - [74148] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62059] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4574), 1, - anon_sym_RPAREN, - STATE(2478), 1, - sym_text_interpolation, - [74161] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4324), 1, anon_sym_EQ, - STATE(2479), 1, - sym_text_interpolation, - [74174] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62066] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4576), 1, - anon_sym_RPAREN, - STATE(2480), 1, - sym_text_interpolation, - [74187] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RBRACK, + [62073] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4578), 1, - anon_sym_COLON_COLON, - STATE(2481), 1, - sym_text_interpolation, - [74200] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4580), 1, - aux_sym_if_statement_token2, - STATE(2482), 1, - sym_text_interpolation, - [74213] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2467), 1, - anon_sym_RPAREN, - STATE(2483), 1, - sym_text_interpolation, - [74226] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3602), 1, sym_name, - STATE(2484), 1, - sym_text_interpolation, - [74239] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(851), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, + [62080] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2485), 1, - sym_text_interpolation, - [74252] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(859), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, - sym_comment, - STATE(2486), 1, - sym_text_interpolation, - [74265] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4580), 1, + anon_sym_DQUOTE2, + [62087] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4582), 1, - anon_sym_SEMI, - STATE(2487), 1, - sym_text_interpolation, - [74278] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3964), 1, - anon_sym_RBRACK, - STATE(2488), 1, - sym_text_interpolation, - [74291] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SQUOTE2, + [62094] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4584), 1, - anon_sym_RPAREN, - STATE(2489), 1, - sym_text_interpolation, - [74304] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62101] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4586), 1, - anon_sym_SEMI, - STATE(2490), 1, - sym_text_interpolation, - [74317] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2513), 1, anon_sym_RPAREN, - STATE(2491), 1, - sym_text_interpolation, - [74330] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62108] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4588), 1, - aux_sym_while_statement_token2, - STATE(2492), 1, - sym_text_interpolation, - [74343] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62115] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4590), 1, sym_name, - STATE(2493), 1, - sym_text_interpolation, - [74356] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62122] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4592), 1, - anon_sym_LPAREN, - STATE(2494), 1, - sym_text_interpolation, - [74369] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_while_statement_token2, + [62129] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4594), 1, - anon_sym_RPAREN, - STATE(2495), 1, - sym_text_interpolation, - [74382] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SQUOTE, + [62136] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4596), 1, - anon_sym_EQ, - STATE(2496), 1, - sym_text_interpolation, - [74395] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62143] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4598), 1, - aux_sym_if_statement_token2, - STATE(2497), 1, - sym_text_interpolation, - [74408] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4018), 1, + anon_sym_EQ_GT, + [62150] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3950), 1, anon_sym_RPAREN, - STATE(2498), 1, - sym_text_interpolation, - [74421] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62157] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4600), 1, - aux_sym_if_statement_token2, - STATE(2499), 1, - sym_text_interpolation, - [74434] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - STATE(2500), 1, - sym_text_interpolation, - [74447] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62164] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4602), 1, - anon_sym_EQ_GT, - STATE(2501), 1, - sym_text_interpolation, - [74460] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62171] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4604), 1, - aux_sym_if_statement_token2, - STATE(2502), 1, - sym_text_interpolation, - [74473] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62178] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4606), 1, - sym_name, - STATE(2503), 1, - sym_text_interpolation, - [74486] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62185] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4608), 1, - sym_name, - STATE(2504), 1, - sym_text_interpolation, - [74499] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_BSLASH, + [62192] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4610), 1, - anon_sym_DQUOTE2, - STATE(2505), 1, - sym_text_interpolation, - [74512] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_BSLASH, + [62199] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4612), 1, - anon_sym_EQ_GT, - STATE(2506), 1, - sym_text_interpolation, - [74525] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62206] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4001), 1, + sym_name, + [62213] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4614), 1, - anon_sym_EQ, - STATE(2507), 1, - sym_text_interpolation, - [74538] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_BSLASH, + [62220] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4616), 1, - anon_sym_COLON_COLON, - STATE(2508), 1, - sym_text_interpolation, - [74551] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62227] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4618), 1, - anon_sym_RPAREN, - STATE(2509), 1, - sym_text_interpolation, - [74564] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62234] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4620), 1, - anon_sym_SQUOTE2, - STATE(2510), 1, - sym_text_interpolation, - [74577] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [62241] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4622), 1, - anon_sym_EQ, - STATE(2511), 1, - sym_text_interpolation, - [74590] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ts_builtin_sym_end, + [62248] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4624), 1, - anon_sym_RPAREN, - STATE(2512), 1, - sym_text_interpolation, - [74603] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_declaration_token1, + [62255] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4626), 1, - anon_sym_LPAREN, - STATE(2513), 1, - sym_text_interpolation, - [74616] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym__arrow_function_header_token1, + [62262] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3936), 1, + aux_sym_class_declaration_token1, + [62269] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4628), 1, - anon_sym_RBRACK, - STATE(2514), 1, - sym_text_interpolation, - [74629] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62276] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4630), 1, - anon_sym_RPAREN, - STATE(2515), 1, - sym_text_interpolation, - [74642] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62283] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4632), 1, - aux_sym_while_statement_token2, - STATE(2516), 1, - sym_text_interpolation, - [74655] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62290] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4634), 1, - anon_sym_RPAREN, - STATE(2517), 1, - sym_text_interpolation, - [74668] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [62297] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4636), 1, - anon_sym_RPAREN, - STATE(2518), 1, - sym_text_interpolation, - [74681] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_declaration_token1, + [62304] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4638), 1, sym_name, - STATE(2519), 1, - sym_text_interpolation, - [74694] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62311] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(3940), 1, sym_name, - STATE(2520), 1, - sym_text_interpolation, - [74707] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4006), 1, + [62318] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2195), 1, + anon_sym_STAR_STAR, + [62325] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3934), 1, anon_sym_RPAREN, - STATE(2521), 1, - sym_text_interpolation, - [74720] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3992), 1, - anon_sym_RBRACK, - STATE(2522), 1, - sym_text_interpolation, - [74733] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62332] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3930), 1, + aux_sym_class_declaration_token1, + [62339] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4640), 1, + aux_sym_namespace_use_declaration_token3, + [62346] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4642), 1, - anon_sym_EQ_GT, - STATE(2523), 1, - sym_text_interpolation, - [74746] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_BSLASH, + [62353] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4644), 1, sym_name, - STATE(2524), 1, - sym_text_interpolation, - [74759] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62360] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4646), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym_text_interpolation, - [74772] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62367] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4648), 1, - anon_sym_BSLASH, - STATE(2526), 1, - sym_text_interpolation, - [74785] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_start, + [62374] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4650), 1, - anon_sym_BSLASH, - STATE(2527), 1, - sym_text_interpolation, - [74798] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_while_statement_token1, + [62381] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4652), 1, - sym_name, - STATE(2528), 1, - sym_text_interpolation, - [74811] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4043), 1, - sym_name, - STATE(2529), 1, - sym_text_interpolation, - [74824] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_start, + [62388] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4654), 1, - anon_sym_BSLASH, - STATE(2530), 1, - sym_text_interpolation, - [74837] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_start, + [62395] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4656), 1, - anon_sym_SQUOTE, - STATE(2531), 1, - sym_text_interpolation, - [74850] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_declaration_token1, + [62402] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4658), 1, - sym_name, - STATE(2532), 1, - sym_text_interpolation, - [74863] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62409] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4171), 1, + anon_sym_RPAREN, + [62416] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3928), 1, aux_sym_class_declaration_token1, - STATE(2533), 1, - sym_text_interpolation, - [74876] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62423] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_BSLASH, + [62430] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4662), 1, - anon_sym_EQ_GT, - STATE(2534), 1, - sym_text_interpolation, - [74889] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_BSLASH, + [62437] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4664), 1, - aux_sym__arrow_function_header_token1, - STATE(2535), 1, - sym_text_interpolation, - [74902] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3982), 1, - aux_sym_class_declaration_token1, - STATE(2536), 1, - sym_text_interpolation, - [74915] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62444] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4666), 1, - anon_sym_COLON_COLON, - STATE(2537), 1, - sym_text_interpolation, - [74928] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_start, + [62451] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4668), 1, - sym_name, - STATE(2538), 1, - sym_text_interpolation, - [74941] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SQUOTE, + [62458] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4670), 1, sym_name, - STATE(2539), 1, - sym_text_interpolation, - [74954] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62465] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4672), 1, - anon_sym_EQ_GT, - STATE(2540), 1, - sym_text_interpolation, - [74967] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_declaration_token1, + [62472] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4674), 1, - aux_sym_class_declaration_token1, - STATE(2541), 1, - sym_text_interpolation, - [74980] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3560), 1, anon_sym_BSLASH, - STATE(2542), 1, - sym_text_interpolation, - [74993] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62479] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4676), 1, anon_sym_RPAREN, - STATE(2543), 1, - sym_text_interpolation, - [75006] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62486] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4321), 1, anon_sym_LPAREN, - STATE(2544), 1, - sym_text_interpolation, - [75019] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62493] = 2, + ACTIONS(881), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4680), 1, + [62500] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4678), 1, sym_name, - STATE(2545), 1, - sym_text_interpolation, - [75032] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62507] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3922), 1, + anon_sym_RPAREN, + [62514] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4680), 1, + anon_sym_EQ, + [62521] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4682), 1, - sym_heredoc_start, - STATE(2546), 1, - sym_text_interpolation, - [75045] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62528] = 2, + ACTIONS(873), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [62535] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4684), 1, - sym_heredoc_start, - STATE(2547), 1, - sym_text_interpolation, - [75058] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_class_declaration_token1, + [62542] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4686), 1, + anon_sym_SEMI, + [62549] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2525), 1, anon_sym_RPAREN, - STATE(2548), 1, - sym_text_interpolation, - [75071] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62556] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4688), 1, sym_name, - STATE(2549), 1, - sym_text_interpolation, - [75084] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3980), 1, - aux_sym_class_declaration_token1, - STATE(2550), 1, - sym_text_interpolation, - [75097] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62563] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4690), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2551), 1, - sym_text_interpolation, - [75110] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62570] = 2, + ACTIONS(865), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + sym_comment, + [62577] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4692), 1, - anon_sym_BSLASH, - STATE(2552), 1, - sym_text_interpolation, - [75123] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RBRACK, + [62584] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4694), 1, - anon_sym_SQUOTE, - STATE(2553), 1, - sym_text_interpolation, - [75136] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62591] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4696), 1, - anon_sym_EQ, - STATE(2554), 1, - sym_text_interpolation, - [75149] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3974), 1, - anon_sym_RPAREN, - STATE(2555), 1, - sym_text_interpolation, - [75162] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_while_statement_token1, + [62598] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4698), 1, - aux_sym_while_statement_token1, - STATE(2556), 1, - sym_text_interpolation, - [75175] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62605] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4700), 1, - sym_heredoc_start, - STATE(2557), 1, - sym_text_interpolation, - [75188] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62612] = 2, + ACTIONS(361), 1, + ts_builtin_sym_end, + ACTIONS(1506), 1, + sym_comment, + [62619] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4323), 1, + anon_sym_RPAREN, + [62626] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4193), 1, + anon_sym_RPAREN, + [62633] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_RPAREN, + [62640] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4702), 1, - sym_heredoc_start, - STATE(2558), 1, - sym_text_interpolation, - [75201] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62647] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4704), 1, - aux_sym_class_declaration_token1, - STATE(2559), 1, - sym_text_interpolation, - [75214] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62654] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4706), 1, - sym_name, - STATE(2560), 1, - sym_text_interpolation, - [75227] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3545), 1, + anon_sym_BSLASH, + [62661] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3970), 1, + ACTIONS(4706), 1, + anon_sym_EQ, + [62668] = 2, + ACTIONS(857), 1, anon_sym_RPAREN, - STATE(2561), 1, - sym_text_interpolation, - [75240] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(1506), 1, sym_comment, - ACTIONS(3966), 1, - aux_sym_class_declaration_token1, - STATE(2562), 1, - sym_text_interpolation, - [75253] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62675] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4708), 1, anon_sym_BSLASH, - STATE(2563), 1, - sym_text_interpolation, - [75266] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62682] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4710), 1, - anon_sym_BSLASH, - STATE(2564), 1, - sym_text_interpolation, - [75279] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_namespace_use_declaration_token3, + [62689] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4712), 1, + sym_name, + [62696] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4209), 1, anon_sym_RPAREN, - STATE(2565), 1, - sym_text_interpolation, - [75292] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4369), 1, - anon_sym_LPAREN, - STATE(2566), 1, - sym_text_interpolation, - [75305] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62703] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4714), 1, + anon_sym_COLON_COLON, + [62710] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(3526), 1, sym_name, - STATE(2567), 1, - sym_text_interpolation, - [75318] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62717] = 2, + ACTIONS(851), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, + sym_comment, + [62724] = 2, + ACTIONS(419), 1, + ts_builtin_sym_end, + ACTIONS(1506), 1, + sym_comment, + [62731] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4716), 1, - sym_name, - STATE(2568), 1, - sym_text_interpolation, - [75331] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62738] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4718), 1, - aux_sym_class_declaration_token1, - STATE(2569), 1, - sym_text_interpolation, - [75344] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62745] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4720), 1, - anon_sym_BSLASH, - STATE(2570), 1, - sym_text_interpolation, - [75357] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [62752] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4722), 1, - sym_name, - STATE(2571), 1, - sym_text_interpolation, - [75370] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ, + [62759] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4724), 1, - aux_sym_class_declaration_token1, - STATE(2572), 1, - sym_text_interpolation, - [75383] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(853), 1, - anon_sym_SEMI, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [62766] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2573), 1, - sym_text_interpolation, - [75396] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4233), 1, + anon_sym_RPAREN, + [62773] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4726), 1, - sym_name, - STATE(2574), 1, - sym_text_interpolation, - [75409] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_namespace_use_declaration_token3, + [62780] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4728), 1, - sym_name, - STATE(2575), 1, - sym_text_interpolation, - [75422] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym__arrow_function_header_token1, + [62787] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(4730), 1, - aux_sym_while_statement_token1, - STATE(2576), 1, - sym_text_interpolation, - [75435] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(3891), 1, + aux_sym_class_declaration_token1, + [62794] = 2, + ACTIONS(1506), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - STATE(2577), 1, - sym_text_interpolation, - [75448] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(843), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, + ACTIONS(3962), 1, + anon_sym_RBRACK, + [62801] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2578), 1, - sym_text_interpolation, - [75461] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ACTIONS(4730), 1, + anon_sym_BSLASH, + [62808] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4732), 1, sym_name, - STATE(2579), 1, - sym_text_interpolation, - [75474] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3998), 1, - sym_name, - STATE(2580), 1, - sym_text_interpolation, - [75487] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_RPAREN, - STATE(2581), 1, - sym_text_interpolation, - [75500] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4223), 1, - anon_sym_RPAREN, - STATE(2582), 1, - sym_text_interpolation, - [75513] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62815] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4734), 1, - anon_sym_COLON_COLON, - STATE(2583), 1, - sym_text_interpolation, - [75526] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(887), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, - sym_comment, - STATE(2584), 1, - sym_text_interpolation, - [75539] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3112), 1, - sym_heredoc_end, - STATE(2585), 1, - sym_text_interpolation, - [75552] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + ts_builtin_sym_end, + [62822] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4736), 1, - anon_sym_RPAREN, - STATE(2586), 1, - sym_text_interpolation, - [75565] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62829] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4738), 1, - anon_sym_RPAREN, - STATE(2587), 1, - sym_text_interpolation, - [75578] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4371), 1, - anon_sym_RPAREN, - STATE(2588), 1, - sym_text_interpolation, - [75591] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_end, + [62836] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4740), 1, - anon_sym_RBRACK, - STATE(2589), 1, - sym_text_interpolation, - [75604] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62843] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4742), 1, - anon_sym_COLON_COLON, - STATE(2590), 1, - sym_text_interpolation, - [75617] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_heredoc_end, + [62850] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4744), 1, - ts_builtin_sym_end, - STATE(2591), 1, - sym_text_interpolation, - [75630] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [62857] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(2549), 1, + anon_sym_RPAREN, + [62864] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4746), 1, - anon_sym_COLON_COLON, - STATE(2592), 1, - sym_text_interpolation, - [75643] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62871] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4748), 1, - anon_sym_RPAREN, - STATE(2593), 1, - sym_text_interpolation, - [75656] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62878] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4750), 1, - anon_sym_EQ, - STATE(2594), 1, - sym_text_interpolation, - [75669] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4239), 1, + anon_sym_LPAREN, + [62885] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4245), 1, anon_sym_RPAREN, - STATE(2595), 1, - sym_text_interpolation, - [75682] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62892] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4752), 1, - anon_sym_BSLASH, - STATE(2596), 1, - sym_text_interpolation, - [75695] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62899] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4754), 1, - anon_sym_RPAREN, - STATE(2597), 1, - sym_text_interpolation, - [75708] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(2598), 1, - sym_text_interpolation, - [75721] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(845), 1, - anon_sym_RPAREN, - ACTIONS(1516), 1, - sym_comment, - STATE(2599), 1, - sym_text_interpolation, - [75734] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_EQ_GT, + [62906] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4756), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2600), 1, - sym_text_interpolation, - [75747] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3610), 1, - sym_name, - STATE(2601), 1, - sym_text_interpolation, - [75760] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + aux_sym_foreach_statement_token2, + [62913] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4758), 1, - anon_sym_COLON_COLON, - STATE(2602), 1, - sym_text_interpolation, - [75773] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - STATE(2603), 1, - sym_text_interpolation, - [75786] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62920] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4760), 1, - anon_sym_COLON_COLON, - STATE(2604), 1, - sym_text_interpolation, - [75799] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(865), 1, - anon_sym_SEMI, - ACTIONS(1516), 1, - sym_comment, - STATE(2605), 1, - sym_text_interpolation, - [75812] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [62927] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4762), 1, - anon_sym_COLON_COLON, - STATE(2606), 1, - sym_text_interpolation, - [75825] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [62934] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4764), 1, - anon_sym_EQ, - STATE(2607), 1, - sym_text_interpolation, - [75838] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_RPAREN, + [62941] = 2, + ACTIONS(859), 1, + anon_sym_SEMI, + ACTIONS(1506), 1, + sym_comment, + [62948] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4766), 1, - anon_sym_EQ_GT, - STATE(2608), 1, - sym_text_interpolation, - [75851] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62955] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4768), 1, - anon_sym_SEMI, - STATE(2609), 1, - sym_text_interpolation, - [75864] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - STATE(2610), 1, - sym_text_interpolation, - [75877] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62962] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4770), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2611), 1, - sym_text_interpolation, - [75890] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [62969] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4772), 1, - aux_sym__arrow_function_header_token1, - STATE(2612), 1, - sym_text_interpolation, - [75903] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(3933), 1, - aux_sym_class_declaration_token1, - STATE(2613), 1, - sym_text_interpolation, - [75916] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4261), 1, - anon_sym_RPAREN, - STATE(2614), 1, - sym_text_interpolation, - [75929] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62976] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4774), 1, - anon_sym_BSLASH, - STATE(2615), 1, - sym_text_interpolation, - [75942] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [62983] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4776), 1, - sym_name, - STATE(2616), 1, - sym_text_interpolation, - [75955] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [62990] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4778), 1, sym_name, - STATE(2617), 1, - sym_text_interpolation, - [75968] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [62997] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4780), 1, - anon_sym_COLON_COLON, - STATE(2618), 1, - sym_text_interpolation, - [75981] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [63004] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4782), 1, anon_sym_LPAREN, - STATE(2619), 1, - sym_text_interpolation, - [75994] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [63011] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4784), 1, - sym_heredoc_end, - STATE(2620), 1, - sym_text_interpolation, - [76007] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [63018] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4786), 1, - sym_heredoc_end, - STATE(2621), 1, - sym_text_interpolation, - [76020] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4283), 1, - anon_sym_RPAREN, - STATE(2622), 1, - sym_text_interpolation, - [76033] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [63025] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4788), 1, - anon_sym_LPAREN, - STATE(2623), 1, - sym_text_interpolation, - [76046] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_SEMI, + [63032] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4790), 1, - anon_sym_LPAREN, - STATE(2624), 1, - sym_text_interpolation, - [76059] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + sym_name, + [63039] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4792), 1, - anon_sym_EQ_GT, - STATE(2625), 1, - sym_text_interpolation, - [76072] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_LPAREN, + [63046] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(2626), 1, - sym_text_interpolation, - [76085] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + anon_sym_COLON_COLON, + [63053] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4796), 1, anon_sym_LPAREN, - STATE(2627), 1, - sym_text_interpolation, - [76098] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, + [63060] = 2, + ACTIONS(1506), 1, sym_comment, ACTIONS(4798), 1, - sym_name, - STATE(2628), 1, - sym_text_interpolation, - [76111] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4800), 1, - anon_sym_COLON_COLON, - STATE(2629), 1, - sym_text_interpolation, - [76124] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4802), 1, - anon_sym_COLON_COLON, - STATE(2630), 1, - sym_text_interpolation, - [76137] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2631), 1, - sym_text_interpolation, - [76150] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(2603), 1, - anon_sym_RPAREN, - STATE(2632), 1, - sym_text_interpolation, - [76163] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_LPAREN, - STATE(2633), 1, - sym_text_interpolation, - [76176] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4808), 1, - anon_sym_LPAREN, - STATE(2634), 1, - sym_text_interpolation, - [76189] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4810), 1, - anon_sym_SEMI, - STATE(2635), 1, - sym_text_interpolation, - [76202] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4812), 1, - anon_sym_LPAREN, - STATE(2636), 1, - sym_text_interpolation, - [76215] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(881), 1, - anon_sym_SEMI, - ACTIONS(1516), 1, + [63067] = 2, + ACTIONS(1506), 1, sym_comment, - STATE(2637), 1, - sym_text_interpolation, - [76228] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4814), 1, - sym_name, - STATE(2638), 1, - sym_text_interpolation, - [76241] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4816), 1, - sym_name, - STATE(2639), 1, - sym_text_interpolation, - [76254] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4818), 1, - anon_sym_SEMI, - STATE(2640), 1, - sym_text_interpolation, - [76267] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4820), 1, - anon_sym_LPAREN, - STATE(2641), 1, - sym_text_interpolation, - [76280] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4822), 1, - sym_name, - STATE(2642), 1, - sym_text_interpolation, - [76293] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4824), 1, - anon_sym_SEMI, - STATE(2643), 1, - sym_text_interpolation, - [76306] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4826), 1, - sym_name, - STATE(2644), 1, - sym_text_interpolation, - [76319] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4828), 1, - anon_sym_LPAREN, - STATE(2645), 1, - sym_text_interpolation, - [76332] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4830), 1, - anon_sym_LPAREN, - STATE(2646), 1, - sym_text_interpolation, - [76345] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_foreach_statement_token2, - STATE(2647), 1, - sym_text_interpolation, - [76358] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4834), 1, - sym_name, - STATE(2648), 1, - sym_text_interpolation, - [76371] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4836), 1, - anon_sym_SEMI, - STATE(2649), 1, - sym_text_interpolation, - [76384] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4305), 1, + ACTIONS(4265), 1, anon_sym_RPAREN, - STATE(2650), 1, - sym_text_interpolation, - [76397] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4838), 1, - anon_sym_LPAREN, - STATE(2651), 1, - sym_text_interpolation, - [76410] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4840), 1, - anon_sym_LPAREN, - STATE(2652), 1, - sym_text_interpolation, - [76423] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4842), 1, + [63074] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4800), 1, anon_sym_LPAREN, - STATE(2653), 1, - sym_text_interpolation, - [76436] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4844), 1, + [63081] = 2, + ACTIONS(1506), 1, + sym_comment, + ACTIONS(4802), 1, anon_sym_LPAREN, - STATE(2654), 1, - sym_text_interpolation, - [76449] = 4, - ACTIONS(18), 1, - anon_sym_QMARK_GT, - ACTIONS(1516), 1, - sym_comment, - ACTIONS(4846), 1, - anon_sym_RPAREN, - STATE(2655), 1, - sym_text_interpolation, - [76462] = 1, - ACTIONS(4848), 1, - ts_builtin_sym_end, - [76466] = 1, - ACTIONS(4850), 1, - ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(575)] = 0, - [SMALL_STATE(576)] = 79, - [SMALL_STATE(577)] = 158, - [SMALL_STATE(578)] = 237, - [SMALL_STATE(579)] = 316, - [SMALL_STATE(580)] = 395, - [SMALL_STATE(581)] = 482, - [SMALL_STATE(582)] = 556, - [SMALL_STATE(583)] = 630, - [SMALL_STATE(584)] = 704, - [SMALL_STATE(585)] = 778, - [SMALL_STATE(586)] = 852, - [SMALL_STATE(587)] = 926, - [SMALL_STATE(588)] = 1000, - [SMALL_STATE(589)] = 1074, - [SMALL_STATE(590)] = 1148, - [SMALL_STATE(591)] = 1222, - [SMALL_STATE(592)] = 1296, - [SMALL_STATE(593)] = 1370, - [SMALL_STATE(594)] = 1444, - [SMALL_STATE(595)] = 1529, - [SMALL_STATE(596)] = 1610, - [SMALL_STATE(597)] = 1695, - [SMALL_STATE(598)] = 1779, - [SMALL_STATE(599)] = 1863, - [SMALL_STATE(600)] = 1938, - [SMALL_STATE(601)] = 2021, - [SMALL_STATE(602)] = 2104, - [SMALL_STATE(603)] = 2187, - [SMALL_STATE(604)] = 2266, - [SMALL_STATE(605)] = 2349, - [SMALL_STATE(606)] = 2424, - [SMALL_STATE(607)] = 2499, - [SMALL_STATE(608)] = 2574, - [SMALL_STATE(609)] = 2663, - [SMALL_STATE(610)] = 2742, - [SMALL_STATE(611)] = 2817, - [SMALL_STATE(612)] = 2887, - [SMALL_STATE(613)] = 2957, - [SMALL_STATE(614)] = 3039, - [SMALL_STATE(615)] = 3109, - [SMALL_STATE(616)] = 3179, - [SMALL_STATE(617)] = 3261, - [SMALL_STATE(618)] = 3331, - [SMALL_STATE(619)] = 3401, - [SMALL_STATE(620)] = 3471, - [SMALL_STATE(621)] = 3541, - [SMALL_STATE(622)] = 3625, - [SMALL_STATE(623)] = 3695, - [SMALL_STATE(624)] = 3765, - [SMALL_STATE(625)] = 3835, - [SMALL_STATE(626)] = 3905, - [SMALL_STATE(627)] = 3983, - [SMALL_STATE(628)] = 4053, - [SMALL_STATE(629)] = 4137, - [SMALL_STATE(630)] = 4207, - [SMALL_STATE(631)] = 4277, - [SMALL_STATE(632)] = 4361, - [SMALL_STATE(633)] = 4431, - [SMALL_STATE(634)] = 4509, - [SMALL_STATE(635)] = 4579, - [SMALL_STATE(636)] = 4656, - [SMALL_STATE(637)] = 4739, - [SMALL_STATE(638)] = 4822, - [SMALL_STATE(639)] = 4899, - [SMALL_STATE(640)] = 4976, - [SMALL_STATE(641)] = 5053, - [SMALL_STATE(642)] = 5131, - [SMALL_STATE(643)] = 5207, - [SMALL_STATE(644)] = 5285, - [SMALL_STATE(645)] = 5363, - [SMALL_STATE(646)] = 5439, - [SMALL_STATE(647)] = 5516, - [SMALL_STATE(648)] = 5587, - [SMALL_STATE(649)] = 5654, - [SMALL_STATE(650)] = 5763, - [SMALL_STATE(651)] = 5834, - [SMALL_STATE(652)] = 5903, - [SMALL_STATE(653)] = 5974, - [SMALL_STATE(654)] = 6045, - [SMALL_STATE(655)] = 6106, - [SMALL_STATE(656)] = 6171, - [SMALL_STATE(657)] = 6236, - [SMALL_STATE(658)] = 6301, - [SMALL_STATE(659)] = 6366, - [SMALL_STATE(660)] = 6475, - [SMALL_STATE(661)] = 6540, - [SMALL_STATE(662)] = 6600, - [SMALL_STATE(663)] = 6660, - [SMALL_STATE(664)] = 6720, - [SMALL_STATE(665)] = 6780, - [SMALL_STATE(666)] = 6840, - [SMALL_STATE(667)] = 6950, - [SMALL_STATE(668)] = 7010, - [SMALL_STATE(669)] = 7070, - [SMALL_STATE(670)] = 7130, - [SMALL_STATE(671)] = 7190, - [SMALL_STATE(672)] = 7250, - [SMALL_STATE(673)] = 7314, - [SMALL_STATE(674)] = 7374, - [SMALL_STATE(675)] = 7434, - [SMALL_STATE(676)] = 7494, - [SMALL_STATE(677)] = 7554, - [SMALL_STATE(678)] = 7614, - [SMALL_STATE(679)] = 7724, - [SMALL_STATE(680)] = 7784, - [SMALL_STATE(681)] = 7844, - [SMALL_STATE(682)] = 7904, - [SMALL_STATE(683)] = 7965, - [SMALL_STATE(684)] = 8028, - [SMALL_STATE(685)] = 8131, - [SMALL_STATE(686)] = 8196, - [SMALL_STATE(687)] = 8259, - [SMALL_STATE(688)] = 8324, - [SMALL_STATE(689)] = 8427, - [SMALL_STATE(690)] = 8492, - [SMALL_STATE(691)] = 8555, - [SMALL_STATE(692)] = 8618, - [SMALL_STATE(693)] = 8683, - [SMALL_STATE(694)] = 8748, - [SMALL_STATE(695)] = 8855, - [SMALL_STATE(696)] = 8920, - [SMALL_STATE(697)] = 8981, - [SMALL_STATE(698)] = 9088, - [SMALL_STATE(699)] = 9151, - [SMALL_STATE(700)] = 9214, - [SMALL_STATE(701)] = 9279, - [SMALL_STATE(702)] = 9344, - [SMALL_STATE(703)] = 9409, - [SMALL_STATE(704)] = 9474, - [SMALL_STATE(705)] = 9539, - [SMALL_STATE(706)] = 9646, - [SMALL_STATE(707)] = 9711, - [SMALL_STATE(708)] = 9774, - [SMALL_STATE(709)] = 9837, - [SMALL_STATE(710)] = 9900, - [SMALL_STATE(711)] = 9963, - [SMALL_STATE(712)] = 10026, - [SMALL_STATE(713)] = 10127, - [SMALL_STATE(714)] = 10188, - [SMALL_STATE(715)] = 10249, - [SMALL_STATE(716)] = 10310, - [SMALL_STATE(717)] = 10417, - [SMALL_STATE(718)] = 10478, - [SMALL_STATE(719)] = 10541, - [SMALL_STATE(720)] = 10604, - [SMALL_STATE(721)] = 10662, - [SMALL_STATE(722)] = 10720, - [SMALL_STATE(723)] = 10778, - [SMALL_STATE(724)] = 10836, - [SMALL_STATE(725)] = 10894, - [SMALL_STATE(726)] = 10952, - [SMALL_STATE(727)] = 11010, - [SMALL_STATE(728)] = 11068, - [SMALL_STATE(729)] = 11126, - [SMALL_STATE(730)] = 11184, - [SMALL_STATE(731)] = 11242, - [SMALL_STATE(732)] = 11300, - [SMALL_STATE(733)] = 11358, - [SMALL_STATE(734)] = 11416, - [SMALL_STATE(735)] = 11474, - [SMALL_STATE(736)] = 11532, - [SMALL_STATE(737)] = 11590, - [SMALL_STATE(738)] = 11648, - [SMALL_STATE(739)] = 11706, - [SMALL_STATE(740)] = 11764, - [SMALL_STATE(741)] = 11822, - [SMALL_STATE(742)] = 11880, - [SMALL_STATE(743)] = 11938, - [SMALL_STATE(744)] = 11998, - [SMALL_STATE(745)] = 12056, - [SMALL_STATE(746)] = 12160, - [SMALL_STATE(747)] = 12218, - [SMALL_STATE(748)] = 12276, - [SMALL_STATE(749)] = 12334, - [SMALL_STATE(750)] = 12392, - [SMALL_STATE(751)] = 12450, - [SMALL_STATE(752)] = 12508, - [SMALL_STATE(753)] = 12566, - [SMALL_STATE(754)] = 12670, - [SMALL_STATE(755)] = 12774, - [SMALL_STATE(756)] = 12832, - [SMALL_STATE(757)] = 12890, - [SMALL_STATE(758)] = 12950, - [SMALL_STATE(759)] = 13008, - [SMALL_STATE(760)] = 13066, - [SMALL_STATE(761)] = 13124, - [SMALL_STATE(762)] = 13228, - [SMALL_STATE(763)] = 13332, - [SMALL_STATE(764)] = 13390, - [SMALL_STATE(765)] = 13448, - [SMALL_STATE(766)] = 13506, - [SMALL_STATE(767)] = 13563, - [SMALL_STATE(768)] = 13630, - [SMALL_STATE(769)] = 13695, - [SMALL_STATE(770)] = 13796, - [SMALL_STATE(771)] = 13855, - [SMALL_STATE(772)] = 13914, - [SMALL_STATE(773)] = 13975, - [SMALL_STATE(774)] = 14036, - [SMALL_STATE(775)] = 14097, - [SMALL_STATE(776)] = 14158, - [SMALL_STATE(777)] = 14217, - [SMALL_STATE(778)] = 14274, - [SMALL_STATE(779)] = 14341, - [SMALL_STATE(780)] = 14402, - [SMALL_STATE(781)] = 14461, - [SMALL_STATE(782)] = 14528, - [SMALL_STATE(783)] = 14587, - [SMALL_STATE(784)] = 14654, - [SMALL_STATE(785)] = 14717, - [SMALL_STATE(786)] = 14778, - [SMALL_STATE(787)] = 14834, - [SMALL_STATE(788)] = 14902, - [SMALL_STATE(789)] = 14958, - [SMALL_STATE(790)] = 15014, - [SMALL_STATE(791)] = 15070, - [SMALL_STATE(792)] = 15126, - [SMALL_STATE(793)] = 15194, - [SMALL_STATE(794)] = 15250, - [SMALL_STATE(795)] = 15306, - [SMALL_STATE(796)] = 15362, - [SMALL_STATE(797)] = 15418, - [SMALL_STATE(798)] = 15474, - [SMALL_STATE(799)] = 15530, - [SMALL_STATE(800)] = 15586, - [SMALL_STATE(801)] = 15642, - [SMALL_STATE(802)] = 15710, - [SMALL_STATE(803)] = 15766, - [SMALL_STATE(804)] = 15822, - [SMALL_STATE(805)] = 15878, - [SMALL_STATE(806)] = 15934, - [SMALL_STATE(807)] = 15990, - [SMALL_STATE(808)] = 16051, - [SMALL_STATE(809)] = 16146, - [SMALL_STATE(810)] = 16203, - [SMALL_STATE(811)] = 16264, - [SMALL_STATE(812)] = 16359, - [SMALL_STATE(813)] = 16416, - [SMALL_STATE(814)] = 16477, - [SMALL_STATE(815)] = 16536, - [SMALL_STATE(816)] = 16593, - [SMALL_STATE(817)] = 16688, - [SMALL_STATE(818)] = 16783, - [SMALL_STATE(819)] = 16842, - [SMALL_STATE(820)] = 16937, - [SMALL_STATE(821)] = 16998, - [SMALL_STATE(822)] = 17059, - [SMALL_STATE(823)] = 17118, - [SMALL_STATE(824)] = 17173, - [SMALL_STATE(825)] = 17228, - [SMALL_STATE(826)] = 17287, - [SMALL_STATE(827)] = 17348, - [SMALL_STATE(828)] = 17409, - [SMALL_STATE(829)] = 17468, - [SMALL_STATE(830)] = 17527, - [SMALL_STATE(831)] = 17588, - [SMALL_STATE(832)] = 17647, - [SMALL_STATE(833)] = 17706, - [SMALL_STATE(834)] = 17761, - [SMALL_STATE(835)] = 17820, - [SMALL_STATE(836)] = 17879, - [SMALL_STATE(837)] = 17934, - [SMALL_STATE(838)] = 17995, - [SMALL_STATE(839)] = 18090, - [SMALL_STATE(840)] = 18185, - [SMALL_STATE(841)] = 18242, - [SMALL_STATE(842)] = 18301, - [SMALL_STATE(843)] = 18362, - [SMALL_STATE(844)] = 18457, - [SMALL_STATE(845)] = 18552, - [SMALL_STATE(846)] = 18647, - [SMALL_STATE(847)] = 18708, - [SMALL_STATE(848)] = 18767, - [SMALL_STATE(849)] = 18862, - [SMALL_STATE(850)] = 18957, - [SMALL_STATE(851)] = 19014, - [SMALL_STATE(852)] = 19109, - [SMALL_STATE(853)] = 19204, - [SMALL_STATE(854)] = 19265, - [SMALL_STATE(855)] = 19360, - [SMALL_STATE(856)] = 19417, - [SMALL_STATE(857)] = 19474, - [SMALL_STATE(858)] = 19533, - [SMALL_STATE(859)] = 19587, - [SMALL_STATE(860)] = 19641, - [SMALL_STATE(861)] = 19695, - [SMALL_STATE(862)] = 19749, - [SMALL_STATE(863)] = 19803, - [SMALL_STATE(864)] = 19857, - [SMALL_STATE(865)] = 19911, - [SMALL_STATE(866)] = 19967, - [SMALL_STATE(867)] = 20021, - [SMALL_STATE(868)] = 20075, - [SMALL_STATE(869)] = 20129, - [SMALL_STATE(870)] = 20183, - [SMALL_STATE(871)] = 20241, - [SMALL_STATE(872)] = 20295, - [SMALL_STATE(873)] = 20349, - [SMALL_STATE(874)] = 20403, - [SMALL_STATE(875)] = 20457, - [SMALL_STATE(876)] = 20511, - [SMALL_STATE(877)] = 20567, - [SMALL_STATE(878)] = 20621, - [SMALL_STATE(879)] = 20675, - [SMALL_STATE(880)] = 20729, - [SMALL_STATE(881)] = 20783, - [SMALL_STATE(882)] = 20837, - [SMALL_STATE(883)] = 20891, - [SMALL_STATE(884)] = 20945, - [SMALL_STATE(885)] = 21001, - [SMALL_STATE(886)] = 21055, - [SMALL_STATE(887)] = 21109, - [SMALL_STATE(888)] = 21163, - [SMALL_STATE(889)] = 21217, - [SMALL_STATE(890)] = 21271, - [SMALL_STATE(891)] = 21325, - [SMALL_STATE(892)] = 21379, - [SMALL_STATE(893)] = 21433, - [SMALL_STATE(894)] = 21487, - [SMALL_STATE(895)] = 21541, - [SMALL_STATE(896)] = 21595, - [SMALL_STATE(897)] = 21649, - [SMALL_STATE(898)] = 21703, - [SMALL_STATE(899)] = 21757, - [SMALL_STATE(900)] = 21811, - [SMALL_STATE(901)] = 21865, - [SMALL_STATE(902)] = 21920, - [SMALL_STATE(903)] = 21975, - [SMALL_STATE(904)] = 22030, - [SMALL_STATE(905)] = 22085, - [SMALL_STATE(906)] = 22140, - [SMALL_STATE(907)] = 22192, - [SMALL_STATE(908)] = 22244, - [SMALL_STATE(909)] = 22296, - [SMALL_STATE(910)] = 22348, - [SMALL_STATE(911)] = 22400, - [SMALL_STATE(912)] = 22452, - [SMALL_STATE(913)] = 22504, - [SMALL_STATE(914)] = 22556, - [SMALL_STATE(915)] = 22608, - [SMALL_STATE(916)] = 22660, - [SMALL_STATE(917)] = 22712, - [SMALL_STATE(918)] = 22764, - [SMALL_STATE(919)] = 22816, - [SMALL_STATE(920)] = 22868, - [SMALL_STATE(921)] = 22920, - [SMALL_STATE(922)] = 22972, - [SMALL_STATE(923)] = 23024, - [SMALL_STATE(924)] = 23076, - [SMALL_STATE(925)] = 23130, - [SMALL_STATE(926)] = 23182, - [SMALL_STATE(927)] = 23234, - [SMALL_STATE(928)] = 23286, - [SMALL_STATE(929)] = 23338, - [SMALL_STATE(930)] = 23390, - [SMALL_STATE(931)] = 23442, - [SMALL_STATE(932)] = 23494, - [SMALL_STATE(933)] = 23546, - [SMALL_STATE(934)] = 23598, - [SMALL_STATE(935)] = 23650, - [SMALL_STATE(936)] = 23702, - [SMALL_STATE(937)] = 23754, - [SMALL_STATE(938)] = 23806, - [SMALL_STATE(939)] = 23858, - [SMALL_STATE(940)] = 23910, - [SMALL_STATE(941)] = 23962, - [SMALL_STATE(942)] = 24014, - [SMALL_STATE(943)] = 24066, - [SMALL_STATE(944)] = 24118, - [SMALL_STATE(945)] = 24170, - [SMALL_STATE(946)] = 24222, - [SMALL_STATE(947)] = 24274, - [SMALL_STATE(948)] = 24326, - [SMALL_STATE(949)] = 24378, - [SMALL_STATE(950)] = 24430, - [SMALL_STATE(951)] = 24482, - [SMALL_STATE(952)] = 24534, - [SMALL_STATE(953)] = 24586, - [SMALL_STATE(954)] = 24638, - [SMALL_STATE(955)] = 24690, - [SMALL_STATE(956)] = 24742, - [SMALL_STATE(957)] = 24794, - [SMALL_STATE(958)] = 24846, - [SMALL_STATE(959)] = 24898, - [SMALL_STATE(960)] = 24950, - [SMALL_STATE(961)] = 25002, - [SMALL_STATE(962)] = 25054, - [SMALL_STATE(963)] = 25106, - [SMALL_STATE(964)] = 25158, - [SMALL_STATE(965)] = 25210, - [SMALL_STATE(966)] = 25262, - [SMALL_STATE(967)] = 25314, - [SMALL_STATE(968)] = 25366, - [SMALL_STATE(969)] = 25418, - [SMALL_STATE(970)] = 25470, - [SMALL_STATE(971)] = 25522, - [SMALL_STATE(972)] = 25573, - [SMALL_STATE(973)] = 25624, - [SMALL_STATE(974)] = 25692, - [SMALL_STATE(975)] = 25748, - [SMALL_STATE(976)] = 25828, - [SMALL_STATE(977)] = 25914, - [SMALL_STATE(978)] = 26000, - [SMALL_STATE(979)] = 26086, - [SMALL_STATE(980)] = 26138, - [SMALL_STATE(981)] = 26218, - [SMALL_STATE(982)] = 26298, - [SMALL_STATE(983)] = 26384, - [SMALL_STATE(984)] = 26470, - [SMALL_STATE(985)] = 26522, - [SMALL_STATE(986)] = 26602, - [SMALL_STATE(987)] = 26688, - [SMALL_STATE(988)] = 26768, - [SMALL_STATE(989)] = 26854, - [SMALL_STATE(990)] = 26912, - [SMALL_STATE(991)] = 26998, - [SMALL_STATE(992)] = 27058, - [SMALL_STATE(993)] = 27122, - [SMALL_STATE(994)] = 27206, - [SMALL_STATE(995)] = 27292, - [SMALL_STATE(996)] = 27362, - [SMALL_STATE(997)] = 27436, - [SMALL_STATE(998)] = 27512, - [SMALL_STATE(999)] = 27594, - [SMALL_STATE(1000)] = 27678, - [SMALL_STATE(1001)] = 27758, - [SMALL_STATE(1002)] = 27810, - [SMALL_STATE(1003)] = 27890, - [SMALL_STATE(1004)] = 27944, - [SMALL_STATE(1005)] = 28016, - [SMALL_STATE(1006)] = 28104, - [SMALL_STATE(1007)] = 28190, - [SMALL_STATE(1008)] = 28275, - [SMALL_STATE(1009)] = 28332, - [SMALL_STATE(1010)] = 28417, - [SMALL_STATE(1011)] = 28496, - [SMALL_STATE(1012)] = 28575, - [SMALL_STATE(1013)] = 28654, - [SMALL_STATE(1014)] = 28733, - [SMALL_STATE(1015)] = 28812, - [SMALL_STATE(1016)] = 28897, - [SMALL_STATE(1017)] = 28950, - [SMALL_STATE(1018)] = 29005, - [SMALL_STATE(1019)] = 29090, - [SMALL_STATE(1020)] = 29149, - [SMALL_STATE(1021)] = 29212, - [SMALL_STATE(1022)] = 29281, - [SMALL_STATE(1023)] = 29366, - [SMALL_STATE(1024)] = 29453, - [SMALL_STATE(1025)] = 29504, - [SMALL_STATE(1026)] = 29577, - [SMALL_STATE(1027)] = 29656, - [SMALL_STATE(1028)] = 29741, - [SMALL_STATE(1029)] = 29820, - [SMALL_STATE(1030)] = 29903, - [SMALL_STATE(1031)] = 29988, - [SMALL_STATE(1032)] = 30055, - [SMALL_STATE(1033)] = 30106, - [SMALL_STATE(1034)] = 30157, - [SMALL_STATE(1035)] = 30242, - [SMALL_STATE(1036)] = 30323, - [SMALL_STATE(1037)] = 30408, - [SMALL_STATE(1038)] = 30479, - [SMALL_STATE(1039)] = 30554, - [SMALL_STATE(1040)] = 30639, - [SMALL_STATE(1041)] = 30695, - [SMALL_STATE(1042)] = 30743, - [SMALL_STATE(1043)] = 30827, - [SMALL_STATE(1044)] = 30875, - [SMALL_STATE(1045)] = 30923, - [SMALL_STATE(1046)] = 31007, - [SMALL_STATE(1047)] = 31055, - [SMALL_STATE(1048)] = 31103, - [SMALL_STATE(1049)] = 31151, - [SMALL_STATE(1050)] = 31199, - [SMALL_STATE(1051)] = 31247, - [SMALL_STATE(1052)] = 31295, - [SMALL_STATE(1053)] = 31343, - [SMALL_STATE(1054)] = 31391, - [SMALL_STATE(1055)] = 31475, - [SMALL_STATE(1056)] = 31523, - [SMALL_STATE(1057)] = 31571, - [SMALL_STATE(1058)] = 31619, - [SMALL_STATE(1059)] = 31667, - [SMALL_STATE(1060)] = 31715, - [SMALL_STATE(1061)] = 31763, - [SMALL_STATE(1062)] = 31847, - [SMALL_STATE(1063)] = 31933, - [SMALL_STATE(1064)] = 32007, - [SMALL_STATE(1065)] = 32055, - [SMALL_STATE(1066)] = 32103, - [SMALL_STATE(1067)] = 32151, - [SMALL_STATE(1068)] = 32229, - [SMALL_STATE(1069)] = 32307, - [SMALL_STATE(1070)] = 32355, - [SMALL_STATE(1071)] = 32403, - [SMALL_STATE(1072)] = 32451, - [SMALL_STATE(1073)] = 32505, - [SMALL_STATE(1074)] = 32553, - [SMALL_STATE(1075)] = 32601, - [SMALL_STATE(1076)] = 32659, - [SMALL_STATE(1077)] = 32707, - [SMALL_STATE(1078)] = 32755, - [SMALL_STATE(1079)] = 32817, - [SMALL_STATE(1080)] = 32885, - [SMALL_STATE(1081)] = 32957, - [SMALL_STATE(1082)] = 33037, - [SMALL_STATE(1083)] = 33119, - [SMALL_STATE(1084)] = 33197, - [SMALL_STATE(1085)] = 33275, - [SMALL_STATE(1086)] = 33327, - [SMALL_STATE(1087)] = 33397, - [SMALL_STATE(1088)] = 33445, - [SMALL_STATE(1089)] = 33493, - [SMALL_STATE(1090)] = 33541, - [SMALL_STATE(1091)] = 33619, - [SMALL_STATE(1092)] = 33667, - [SMALL_STATE(1093)] = 33745, - [SMALL_STATE(1094)] = 33793, - [SMALL_STATE(1095)] = 33859, - [SMALL_STATE(1096)] = 33907, - [SMALL_STATE(1097)] = 33955, - [SMALL_STATE(1098)] = 34005, - [SMALL_STATE(1099)] = 34089, - [SMALL_STATE(1100)] = 34137, - [SMALL_STATE(1101)] = 34185, - [SMALL_STATE(1102)] = 34233, - [SMALL_STATE(1103)] = 34281, - [SMALL_STATE(1104)] = 34365, - [SMALL_STATE(1105)] = 34413, - [SMALL_STATE(1106)] = 34461, - [SMALL_STATE(1107)] = 34509, - [SMALL_STATE(1108)] = 34557, - [SMALL_STATE(1109)] = 34605, - [SMALL_STATE(1110)] = 34653, - [SMALL_STATE(1111)] = 34737, - [SMALL_STATE(1112)] = 34785, - [SMALL_STATE(1113)] = 34833, - [SMALL_STATE(1114)] = 34881, - [SMALL_STATE(1115)] = 34929, - [SMALL_STATE(1116)] = 34977, - [SMALL_STATE(1117)] = 35025, - [SMALL_STATE(1118)] = 35073, - [SMALL_STATE(1119)] = 35137, - [SMALL_STATE(1120)] = 35185, - [SMALL_STATE(1121)] = 35269, - [SMALL_STATE(1122)] = 35317, - [SMALL_STATE(1123)] = 35365, - [SMALL_STATE(1124)] = 35449, - [SMALL_STATE(1125)] = 35533, - [SMALL_STATE(1126)] = 35581, - [SMALL_STATE(1127)] = 35629, - [SMALL_STATE(1128)] = 35677, - [SMALL_STATE(1129)] = 35755, - [SMALL_STATE(1130)] = 35803, - [SMALL_STATE(1131)] = 35851, - [SMALL_STATE(1132)] = 35899, - [SMALL_STATE(1133)] = 35947, - [SMALL_STATE(1134)] = 35995, - [SMALL_STATE(1135)] = 36045, - [SMALL_STATE(1136)] = 36093, - [SMALL_STATE(1137)] = 36141, - [SMALL_STATE(1138)] = 36189, - [SMALL_STATE(1139)] = 36239, - [SMALL_STATE(1140)] = 36287, - [SMALL_STATE(1141)] = 36337, - [SMALL_STATE(1142)] = 36414, - [SMALL_STATE(1143)] = 36497, - [SMALL_STATE(1144)] = 36550, - [SMALL_STATE(1145)] = 36617, - [SMALL_STATE(1146)] = 36700, - [SMALL_STATE(1147)] = 36755, - [SMALL_STATE(1148)] = 36826, - [SMALL_STATE(1149)] = 36903, - [SMALL_STATE(1150)] = 36976, - [SMALL_STATE(1151)] = 37055, - [SMALL_STATE(1152)] = 37132, - [SMALL_STATE(1153)] = 37209, - [SMALL_STATE(1154)] = 37292, - [SMALL_STATE(1155)] = 37341, - [SMALL_STATE(1156)] = 37418, - [SMALL_STATE(1157)] = 37467, - [SMALL_STATE(1158)] = 37548, - [SMALL_STATE(1159)] = 37631, - [SMALL_STATE(1160)] = 37708, - [SMALL_STATE(1161)] = 37759, - [SMALL_STATE(1162)] = 37842, - [SMALL_STATE(1163)] = 37911, - [SMALL_STATE(1164)] = 37994, - [SMALL_STATE(1165)] = 38077, - [SMALL_STATE(1166)] = 38154, - [SMALL_STATE(1167)] = 38237, - [SMALL_STATE(1168)] = 38298, - [SMALL_STATE(1169)] = 38355, - [SMALL_STATE(1170)] = 38438, - [SMALL_STATE(1171)] = 38521, - [SMALL_STATE(1172)] = 38606, - [SMALL_STATE(1173)] = 38671, - [SMALL_STATE(1174)] = 38720, - [SMALL_STATE(1175)] = 38811, - [SMALL_STATE(1176)] = 38892, - [SMALL_STATE(1177)] = 38981, - [SMALL_STATE(1178)] = 39064, - [SMALL_STATE(1179)] = 39147, - [SMALL_STATE(1180)] = 39238, - [SMALL_STATE(1181)] = 39321, - [SMALL_STATE(1182)] = 39412, - [SMALL_STATE(1183)] = 39485, - [SMALL_STATE(1184)] = 39566, - [SMALL_STATE(1185)] = 39649, - [SMALL_STATE(1186)] = 39740, - [SMALL_STATE(1187)] = 39813, - [SMALL_STATE(1188)] = 39898, - [SMALL_STATE(1189)] = 39989, - [SMALL_STATE(1190)] = 40072, - [SMALL_STATE(1191)] = 40153, - [SMALL_STATE(1192)] = 40244, - [SMALL_STATE(1193)] = 40335, - [SMALL_STATE(1194)] = 40426, - [SMALL_STATE(1195)] = 40506, - [SMALL_STATE(1196)] = 40588, - [SMALL_STATE(1197)] = 40668, - [SMALL_STATE(1198)] = 40748, - [SMALL_STATE(1199)] = 40798, - [SMALL_STATE(1200)] = 40878, - [SMALL_STATE(1201)] = 40958, - [SMALL_STATE(1202)] = 41038, - [SMALL_STATE(1203)] = 41118, - [SMALL_STATE(1204)] = 41198, - [SMALL_STATE(1205)] = 41278, - [SMALL_STATE(1206)] = 41358, - [SMALL_STATE(1207)] = 41438, - [SMALL_STATE(1208)] = 41518, - [SMALL_STATE(1209)] = 41598, - [SMALL_STATE(1210)] = 41680, - [SMALL_STATE(1211)] = 41760, - [SMALL_STATE(1212)] = 41840, - [SMALL_STATE(1213)] = 41890, - [SMALL_STATE(1214)] = 41970, - [SMALL_STATE(1215)] = 42050, - [SMALL_STATE(1216)] = 42130, - [SMALL_STATE(1217)] = 42210, - [SMALL_STATE(1218)] = 42292, - [SMALL_STATE(1219)] = 42372, - [SMALL_STATE(1220)] = 42454, - [SMALL_STATE(1221)] = 42534, - [SMALL_STATE(1222)] = 42614, - [SMALL_STATE(1223)] = 42694, - [SMALL_STATE(1224)] = 42774, - [SMALL_STATE(1225)] = 42856, - [SMALL_STATE(1226)] = 42936, - [SMALL_STATE(1227)] = 43016, - [SMALL_STATE(1228)] = 43096, - [SMALL_STATE(1229)] = 43176, - [SMALL_STATE(1230)] = 43256, - [SMALL_STATE(1231)] = 43338, - [SMALL_STATE(1232)] = 43420, - [SMALL_STATE(1233)] = 43500, - [SMALL_STATE(1234)] = 43582, - [SMALL_STATE(1235)] = 43662, - [SMALL_STATE(1236)] = 43742, - [SMALL_STATE(1237)] = 43821, - [SMALL_STATE(1238)] = 43900, - [SMALL_STATE(1239)] = 43979, - [SMALL_STATE(1240)] = 44058, - [SMALL_STATE(1241)] = 44137, - [SMALL_STATE(1242)] = 44216, - [SMALL_STATE(1243)] = 44283, - [SMALL_STATE(1244)] = 44362, - [SMALL_STATE(1245)] = 44441, - [SMALL_STATE(1246)] = 44520, - [SMALL_STATE(1247)] = 44601, - [SMALL_STATE(1248)] = 44680, - [SMALL_STATE(1249)] = 44759, - [SMALL_STATE(1250)] = 44838, - [SMALL_STATE(1251)] = 44917, - [SMALL_STATE(1252)] = 44996, - [SMALL_STATE(1253)] = 45075, - [SMALL_STATE(1254)] = 45154, - [SMALL_STATE(1255)] = 45233, - [SMALL_STATE(1256)] = 45312, - [SMALL_STATE(1257)] = 45391, - [SMALL_STATE(1258)] = 45470, - [SMALL_STATE(1259)] = 45549, - [SMALL_STATE(1260)] = 45628, - [SMALL_STATE(1261)] = 45707, - [SMALL_STATE(1262)] = 45786, - [SMALL_STATE(1263)] = 45865, - [SMALL_STATE(1264)] = 45944, - [SMALL_STATE(1265)] = 46023, - [SMALL_STATE(1266)] = 46102, - [SMALL_STATE(1267)] = 46181, - [SMALL_STATE(1268)] = 46260, - [SMALL_STATE(1269)] = 46303, - [SMALL_STATE(1270)] = 46382, - [SMALL_STATE(1271)] = 46461, - [SMALL_STATE(1272)] = 46540, - [SMALL_STATE(1273)] = 46619, - [SMALL_STATE(1274)] = 46698, - [SMALL_STATE(1275)] = 46777, - [SMALL_STATE(1276)] = 46856, - [SMALL_STATE(1277)] = 46935, - [SMALL_STATE(1278)] = 47014, - [SMALL_STATE(1279)] = 47093, - [SMALL_STATE(1280)] = 47172, - [SMALL_STATE(1281)] = 47251, - [SMALL_STATE(1282)] = 47330, - [SMALL_STATE(1283)] = 47409, - [SMALL_STATE(1284)] = 47488, - [SMALL_STATE(1285)] = 47567, - [SMALL_STATE(1286)] = 47648, - [SMALL_STATE(1287)] = 47727, - [SMALL_STATE(1288)] = 47806, - [SMALL_STATE(1289)] = 47885, - [SMALL_STATE(1290)] = 47964, - [SMALL_STATE(1291)] = 48043, - [SMALL_STATE(1292)] = 48122, - [SMALL_STATE(1293)] = 48201, - [SMALL_STATE(1294)] = 48280, - [SMALL_STATE(1295)] = 48359, - [SMALL_STATE(1296)] = 48438, - [SMALL_STATE(1297)] = 48517, - [SMALL_STATE(1298)] = 48596, - [SMALL_STATE(1299)] = 48675, - [SMALL_STATE(1300)] = 48754, - [SMALL_STATE(1301)] = 48833, - [SMALL_STATE(1302)] = 48912, - [SMALL_STATE(1303)] = 48991, - [SMALL_STATE(1304)] = 49070, - [SMALL_STATE(1305)] = 49149, - [SMALL_STATE(1306)] = 49230, - [SMALL_STATE(1307)] = 49297, - [SMALL_STATE(1308)] = 49376, - [SMALL_STATE(1309)] = 49457, - [SMALL_STATE(1310)] = 49499, - [SMALL_STATE(1311)] = 49541, - [SMALL_STATE(1312)] = 49585, - [SMALL_STATE(1313)] = 49649, - [SMALL_STATE(1314)] = 49713, - [SMALL_STATE(1315)] = 49754, - [SMALL_STATE(1316)] = 49795, - [SMALL_STATE(1317)] = 49836, - [SMALL_STATE(1318)] = 49877, - [SMALL_STATE(1319)] = 49923, - [SMALL_STATE(1320)] = 49967, - [SMALL_STATE(1321)] = 50021, - [SMALL_STATE(1322)] = 50075, - [SMALL_STATE(1323)] = 50129, - [SMALL_STATE(1324)] = 50183, - [SMALL_STATE(1325)] = 50221, - [SMALL_STATE(1326)] = 50259, - [SMALL_STATE(1327)] = 50297, - [SMALL_STATE(1328)] = 50351, - [SMALL_STATE(1329)] = 50405, - [SMALL_STATE(1330)] = 50443, - [SMALL_STATE(1331)] = 50490, - [SMALL_STATE(1332)] = 50537, - [SMALL_STATE(1333)] = 50584, - [SMALL_STATE(1334)] = 50640, - [SMALL_STATE(1335)] = 50674, - [SMALL_STATE(1336)] = 50732, - [SMALL_STATE(1337)] = 50787, - [SMALL_STATE(1338)] = 50820, - [SMALL_STATE(1339)] = 50879, - [SMALL_STATE(1340)] = 50929, - [SMALL_STATE(1341)] = 50981, - [SMALL_STATE(1342)] = 51033, - [SMALL_STATE(1343)] = 51085, - [SMALL_STATE(1344)] = 51134, - [SMALL_STATE(1345)] = 51183, - [SMALL_STATE(1346)] = 51216, - [SMALL_STATE(1347)] = 51251, - [SMALL_STATE(1348)] = 51295, - [SMALL_STATE(1349)] = 51325, - [SMALL_STATE(1350)] = 51352, - [SMALL_STATE(1351)] = 51379, - [SMALL_STATE(1352)] = 51424, - [SMALL_STATE(1353)] = 51451, - [SMALL_STATE(1354)] = 51478, - [SMALL_STATE(1355)] = 51516, - [SMALL_STATE(1356)] = 51542, - [SMALL_STATE(1357)] = 51588, - [SMALL_STATE(1358)] = 51614, - [SMALL_STATE(1359)] = 51642, - [SMALL_STATE(1360)] = 51668, - [SMALL_STATE(1361)] = 51694, - [SMALL_STATE(1362)] = 51720, - [SMALL_STATE(1363)] = 51746, - [SMALL_STATE(1364)] = 51772, - [SMALL_STATE(1365)] = 51806, - [SMALL_STATE(1366)] = 51852, - [SMALL_STATE(1367)] = 51878, - [SMALL_STATE(1368)] = 51904, - [SMALL_STATE(1369)] = 51930, - [SMALL_STATE(1370)] = 51956, - [SMALL_STATE(1371)] = 52000, - [SMALL_STATE(1372)] = 52026, - [SMALL_STATE(1373)] = 52052, - [SMALL_STATE(1374)] = 52098, - [SMALL_STATE(1375)] = 52144, - [SMALL_STATE(1376)] = 52170, - [SMALL_STATE(1377)] = 52196, - [SMALL_STATE(1378)] = 52222, - [SMALL_STATE(1379)] = 52248, - [SMALL_STATE(1380)] = 52274, - [SMALL_STATE(1381)] = 52299, - [SMALL_STATE(1382)] = 52324, - [SMALL_STATE(1383)] = 52349, - [SMALL_STATE(1384)] = 52374, - [SMALL_STATE(1385)] = 52399, - [SMALL_STATE(1386)] = 52424, - [SMALL_STATE(1387)] = 52465, - [SMALL_STATE(1388)] = 52490, - [SMALL_STATE(1389)] = 52515, - [SMALL_STATE(1390)] = 52558, - [SMALL_STATE(1391)] = 52599, - [SMALL_STATE(1392)] = 52624, - [SMALL_STATE(1393)] = 52667, - [SMALL_STATE(1394)] = 52692, - [SMALL_STATE(1395)] = 52717, - [SMALL_STATE(1396)] = 52742, - [SMALL_STATE(1397)] = 52767, - [SMALL_STATE(1398)] = 52792, - [SMALL_STATE(1399)] = 52817, - [SMALL_STATE(1400)] = 52860, - [SMALL_STATE(1401)] = 52903, - [SMALL_STATE(1402)] = 52944, - [SMALL_STATE(1403)] = 52969, - [SMALL_STATE(1404)] = 52994, - [SMALL_STATE(1405)] = 53019, - [SMALL_STATE(1406)] = 53044, - [SMALL_STATE(1407)] = 53091, - [SMALL_STATE(1408)] = 53138, - [SMALL_STATE(1409)] = 53163, - [SMALL_STATE(1410)] = 53188, - [SMALL_STATE(1411)] = 53213, - [SMALL_STATE(1412)] = 53238, - [SMALL_STATE(1413)] = 53263, - [SMALL_STATE(1414)] = 53303, - [SMALL_STATE(1415)] = 53343, - [SMALL_STATE(1416)] = 53383, - [SMALL_STATE(1417)] = 53423, - [SMALL_STATE(1418)] = 53460, - [SMALL_STATE(1419)] = 53495, - [SMALL_STATE(1420)] = 53520, - [SMALL_STATE(1421)] = 53555, - [SMALL_STATE(1422)] = 53592, - [SMALL_STATE(1423)] = 53617, - [SMALL_STATE(1424)] = 53642, - [SMALL_STATE(1425)] = 53667, - [SMALL_STATE(1426)] = 53692, - [SMALL_STATE(1427)] = 53717, - [SMALL_STATE(1428)] = 53754, - [SMALL_STATE(1429)] = 53779, - [SMALL_STATE(1430)] = 53804, - [SMALL_STATE(1431)] = 53829, - [SMALL_STATE(1432)] = 53854, - [SMALL_STATE(1433)] = 53891, - [SMALL_STATE(1434)] = 53928, - [SMALL_STATE(1435)] = 53963, - [SMALL_STATE(1436)] = 53988, - [SMALL_STATE(1437)] = 54025, - [SMALL_STATE(1438)] = 54059, - [SMALL_STATE(1439)] = 54091, - [SMALL_STATE(1440)] = 54121, - [SMALL_STATE(1441)] = 54149, - [SMALL_STATE(1442)] = 54173, - [SMALL_STATE(1443)] = 54205, - [SMALL_STATE(1444)] = 54239, - [SMALL_STATE(1445)] = 54267, - [SMALL_STATE(1446)] = 54291, - [SMALL_STATE(1447)] = 54325, - [SMALL_STATE(1448)] = 54359, - [SMALL_STATE(1449)] = 54387, - [SMALL_STATE(1450)] = 54421, - [SMALL_STATE(1451)] = 54453, - [SMALL_STATE(1452)] = 54482, - [SMALL_STATE(1453)] = 54513, - [SMALL_STATE(1454)] = 54542, - [SMALL_STATE(1455)] = 54563, - [SMALL_STATE(1456)] = 54584, - [SMALL_STATE(1457)] = 54613, - [SMALL_STATE(1458)] = 54642, - [SMALL_STATE(1459)] = 54671, - [SMALL_STATE(1460)] = 54700, - [SMALL_STATE(1461)] = 54721, - [SMALL_STATE(1462)] = 54746, - [SMALL_STATE(1463)] = 54773, - [SMALL_STATE(1464)] = 54802, - [SMALL_STATE(1465)] = 54831, - [SMALL_STATE(1466)] = 54852, - [SMALL_STATE(1467)] = 54873, - [SMALL_STATE(1468)] = 54902, - [SMALL_STATE(1469)] = 54933, - [SMALL_STATE(1470)] = 54966, - [SMALL_STATE(1471)] = 54995, - [SMALL_STATE(1472)] = 55024, - [SMALL_STATE(1473)] = 55055, - [SMALL_STATE(1474)] = 55084, - [SMALL_STATE(1475)] = 55111, - [SMALL_STATE(1476)] = 55138, - [SMALL_STATE(1477)] = 55167, - [SMALL_STATE(1478)] = 55196, - [SMALL_STATE(1479)] = 55225, - [SMALL_STATE(1480)] = 55248, - [SMALL_STATE(1481)] = 55277, - [SMALL_STATE(1482)] = 55308, - [SMALL_STATE(1483)] = 55339, - [SMALL_STATE(1484)] = 55360, - [SMALL_STATE(1485)] = 55391, - [SMALL_STATE(1486)] = 55420, - [SMALL_STATE(1487)] = 55453, - [SMALL_STATE(1488)] = 55480, - [SMALL_STATE(1489)] = 55501, - [SMALL_STATE(1490)] = 55530, - [SMALL_STATE(1491)] = 55559, - [SMALL_STATE(1492)] = 55588, - [SMALL_STATE(1493)] = 55619, - [SMALL_STATE(1494)] = 55648, - [SMALL_STATE(1495)] = 55677, - [SMALL_STATE(1496)] = 55708, - [SMALL_STATE(1497)] = 55737, - [SMALL_STATE(1498)] = 55766, - [SMALL_STATE(1499)] = 55797, - [SMALL_STATE(1500)] = 55826, - [SMALL_STATE(1501)] = 55855, - [SMALL_STATE(1502)] = 55882, - [SMALL_STATE(1503)] = 55911, - [SMALL_STATE(1504)] = 55938, - [SMALL_STATE(1505)] = 55969, - [SMALL_STATE(1506)] = 56000, - [SMALL_STATE(1507)] = 56031, - [SMALL_STATE(1508)] = 56062, - [SMALL_STATE(1509)] = 56089, - [SMALL_STATE(1510)] = 56118, - [SMALL_STATE(1511)] = 56152, - [SMALL_STATE(1512)] = 56186, - [SMALL_STATE(1513)] = 56220, - [SMALL_STATE(1514)] = 56246, - [SMALL_STATE(1515)] = 56268, - [SMALL_STATE(1516)] = 56300, - [SMALL_STATE(1517)] = 56326, - [SMALL_STATE(1518)] = 56360, - [SMALL_STATE(1519)] = 56394, - [SMALL_STATE(1520)] = 56424, - [SMALL_STATE(1521)] = 56450, - [SMALL_STATE(1522)] = 56478, - [SMALL_STATE(1523)] = 56512, - [SMALL_STATE(1524)] = 56538, - [SMALL_STATE(1525)] = 56561, - [SMALL_STATE(1526)] = 56582, - [SMALL_STATE(1527)] = 56609, - [SMALL_STATE(1528)] = 56636, - [SMALL_STATE(1529)] = 56659, - [SMALL_STATE(1530)] = 56686, - [SMALL_STATE(1531)] = 56713, - [SMALL_STATE(1532)] = 56734, - [SMALL_STATE(1533)] = 56755, - [SMALL_STATE(1534)] = 56782, - [SMALL_STATE(1535)] = 56805, - [SMALL_STATE(1536)] = 56828, - [SMALL_STATE(1537)] = 56851, - [SMALL_STATE(1538)] = 56874, - [SMALL_STATE(1539)] = 56893, - [SMALL_STATE(1540)] = 56916, - [SMALL_STATE(1541)] = 56947, - [SMALL_STATE(1542)] = 56970, - [SMALL_STATE(1543)] = 56997, - [SMALL_STATE(1544)] = 57018, - [SMALL_STATE(1545)] = 57041, - [SMALL_STATE(1546)] = 57064, - [SMALL_STATE(1547)] = 57087, - [SMALL_STATE(1548)] = 57110, - [SMALL_STATE(1549)] = 57135, - [SMALL_STATE(1550)] = 57158, - [SMALL_STATE(1551)] = 57185, - [SMALL_STATE(1552)] = 57208, - [SMALL_STATE(1553)] = 57229, - [SMALL_STATE(1554)] = 57252, - [SMALL_STATE(1555)] = 57279, - [SMALL_STATE(1556)] = 57300, - [SMALL_STATE(1557)] = 57321, - [SMALL_STATE(1558)] = 57342, - [SMALL_STATE(1559)] = 57363, - [SMALL_STATE(1560)] = 57384, - [SMALL_STATE(1561)] = 57405, - [SMALL_STATE(1562)] = 57426, - [SMALL_STATE(1563)] = 57449, - [SMALL_STATE(1564)] = 57476, - [SMALL_STATE(1565)] = 57499, - [SMALL_STATE(1566)] = 57520, - [SMALL_STATE(1567)] = 57541, - [SMALL_STATE(1568)] = 57562, - [SMALL_STATE(1569)] = 57585, - [SMALL_STATE(1570)] = 57609, - [SMALL_STATE(1571)] = 57637, - [SMALL_STATE(1572)] = 57665, - [SMALL_STATE(1573)] = 57685, - [SMALL_STATE(1574)] = 57713, - [SMALL_STATE(1575)] = 57741, - [SMALL_STATE(1576)] = 57767, - [SMALL_STATE(1577)] = 57787, - [SMALL_STATE(1578)] = 57815, - [SMALL_STATE(1579)] = 57841, - [SMALL_STATE(1580)] = 57861, - [SMALL_STATE(1581)] = 57889, - [SMALL_STATE(1582)] = 57917, - [SMALL_STATE(1583)] = 57941, - [SMALL_STATE(1584)] = 57969, - [SMALL_STATE(1585)] = 57997, - [SMALL_STATE(1586)] = 58017, - [SMALL_STATE(1587)] = 58037, - [SMALL_STATE(1588)] = 58065, - [SMALL_STATE(1589)] = 58091, - [SMALL_STATE(1590)] = 58117, - [SMALL_STATE(1591)] = 58145, - [SMALL_STATE(1592)] = 58173, - [SMALL_STATE(1593)] = 58201, - [SMALL_STATE(1594)] = 58219, - [SMALL_STATE(1595)] = 58247, - [SMALL_STATE(1596)] = 58275, - [SMALL_STATE(1597)] = 58303, - [SMALL_STATE(1598)] = 58329, - [SMALL_STATE(1599)] = 58357, - [SMALL_STATE(1600)] = 58383, - [SMALL_STATE(1601)] = 58411, - [SMALL_STATE(1602)] = 58429, - [SMALL_STATE(1603)] = 58457, - [SMALL_STATE(1604)] = 58477, - [SMALL_STATE(1605)] = 58497, - [SMALL_STATE(1606)] = 58515, - [SMALL_STATE(1607)] = 58537, - [SMALL_STATE(1608)] = 58565, - [SMALL_STATE(1609)] = 58591, - [SMALL_STATE(1610)] = 58611, - [SMALL_STATE(1611)] = 58637, - [SMALL_STATE(1612)] = 58665, - [SMALL_STATE(1613)] = 58693, - [SMALL_STATE(1614)] = 58717, - [SMALL_STATE(1615)] = 58745, - [SMALL_STATE(1616)] = 58765, - [SMALL_STATE(1617)] = 58789, - [SMALL_STATE(1618)] = 58817, - [SMALL_STATE(1619)] = 58843, - [SMALL_STATE(1620)] = 58861, - [SMALL_STATE(1621)] = 58887, - [SMALL_STATE(1622)] = 58915, - [SMALL_STATE(1623)] = 58943, - [SMALL_STATE(1624)] = 58969, - [SMALL_STATE(1625)] = 58997, - [SMALL_STATE(1626)] = 59017, - [SMALL_STATE(1627)] = 59041, - [SMALL_STATE(1628)] = 59069, - [SMALL_STATE(1629)] = 59097, - [SMALL_STATE(1630)] = 59125, - [SMALL_STATE(1631)] = 59153, - [SMALL_STATE(1632)] = 59181, - [SMALL_STATE(1633)] = 59209, - [SMALL_STATE(1634)] = 59237, - [SMALL_STATE(1635)] = 59265, - [SMALL_STATE(1636)] = 59293, - [SMALL_STATE(1637)] = 59317, - [SMALL_STATE(1638)] = 59345, - [SMALL_STATE(1639)] = 59373, - [SMALL_STATE(1640)] = 59399, - [SMALL_STATE(1641)] = 59423, - [SMALL_STATE(1642)] = 59449, - [SMALL_STATE(1643)] = 59475, - [SMALL_STATE(1644)] = 59503, - [SMALL_STATE(1645)] = 59531, - [SMALL_STATE(1646)] = 59552, - [SMALL_STATE(1647)] = 59573, - [SMALL_STATE(1648)] = 59596, - [SMALL_STATE(1649)] = 59619, - [SMALL_STATE(1650)] = 59642, - [SMALL_STATE(1651)] = 59659, - [SMALL_STATE(1652)] = 59682, - [SMALL_STATE(1653)] = 59703, - [SMALL_STATE(1654)] = 59724, - [SMALL_STATE(1655)] = 59749, - [SMALL_STATE(1656)] = 59768, - [SMALL_STATE(1657)] = 59791, - [SMALL_STATE(1658)] = 59808, - [SMALL_STATE(1659)] = 59829, - [SMALL_STATE(1660)] = 59848, - [SMALL_STATE(1661)] = 59869, - [SMALL_STATE(1662)] = 59894, - [SMALL_STATE(1663)] = 59915, - [SMALL_STATE(1664)] = 59936, - [SMALL_STATE(1665)] = 59959, - [SMALL_STATE(1666)] = 59980, - [SMALL_STATE(1667)] = 60001, - [SMALL_STATE(1668)] = 60024, - [SMALL_STATE(1669)] = 60049, - [SMALL_STATE(1670)] = 60066, - [SMALL_STATE(1671)] = 60087, - [SMALL_STATE(1672)] = 60108, - [SMALL_STATE(1673)] = 60133, - [SMALL_STATE(1674)] = 60154, - [SMALL_STATE(1675)] = 60179, - [SMALL_STATE(1676)] = 60200, - [SMALL_STATE(1677)] = 60223, - [SMALL_STATE(1678)] = 60248, - [SMALL_STATE(1679)] = 60269, - [SMALL_STATE(1680)] = 60294, - [SMALL_STATE(1681)] = 60313, - [SMALL_STATE(1682)] = 60336, - [SMALL_STATE(1683)] = 60361, - [SMALL_STATE(1684)] = 60384, - [SMALL_STATE(1685)] = 60405, - [SMALL_STATE(1686)] = 60424, - [SMALL_STATE(1687)] = 60449, - [SMALL_STATE(1688)] = 60474, - [SMALL_STATE(1689)] = 60497, - [SMALL_STATE(1690)] = 60522, - [SMALL_STATE(1691)] = 60545, - [SMALL_STATE(1692)] = 60568, - [SMALL_STATE(1693)] = 60591, - [SMALL_STATE(1694)] = 60610, - [SMALL_STATE(1695)] = 60631, - [SMALL_STATE(1696)] = 60656, - [SMALL_STATE(1697)] = 60681, - [SMALL_STATE(1698)] = 60702, - [SMALL_STATE(1699)] = 60721, - [SMALL_STATE(1700)] = 60746, - [SMALL_STATE(1701)] = 60767, - [SMALL_STATE(1702)] = 60790, - [SMALL_STATE(1703)] = 60811, - [SMALL_STATE(1704)] = 60832, - [SMALL_STATE(1705)] = 60855, - [SMALL_STATE(1706)] = 60874, - [SMALL_STATE(1707)] = 60897, - [SMALL_STATE(1708)] = 60922, - [SMALL_STATE(1709)] = 60945, - [SMALL_STATE(1710)] = 60968, - [SMALL_STATE(1711)] = 60993, - [SMALL_STATE(1712)] = 61014, - [SMALL_STATE(1713)] = 61035, - [SMALL_STATE(1714)] = 61056, - [SMALL_STATE(1715)] = 61079, - [SMALL_STATE(1716)] = 61100, - [SMALL_STATE(1717)] = 61119, - [SMALL_STATE(1718)] = 61138, - [SMALL_STATE(1719)] = 61161, - [SMALL_STATE(1720)] = 61184, - [SMALL_STATE(1721)] = 61205, - [SMALL_STATE(1722)] = 61228, - [SMALL_STATE(1723)] = 61245, - [SMALL_STATE(1724)] = 61270, - [SMALL_STATE(1725)] = 61293, - [SMALL_STATE(1726)] = 61310, - [SMALL_STATE(1727)] = 61331, - [SMALL_STATE(1728)] = 61352, - [SMALL_STATE(1729)] = 61373, - [SMALL_STATE(1730)] = 61392, - [SMALL_STATE(1731)] = 61413, - [SMALL_STATE(1732)] = 61432, - [SMALL_STATE(1733)] = 61455, - [SMALL_STATE(1734)] = 61474, - [SMALL_STATE(1735)] = 61499, - [SMALL_STATE(1736)] = 61522, - [SMALL_STATE(1737)] = 61543, - [SMALL_STATE(1738)] = 61566, - [SMALL_STATE(1739)] = 61591, - [SMALL_STATE(1740)] = 61612, - [SMALL_STATE(1741)] = 61629, - [SMALL_STATE(1742)] = 61650, - [SMALL_STATE(1743)] = 61673, - [SMALL_STATE(1744)] = 61694, - [SMALL_STATE(1745)] = 61715, - [SMALL_STATE(1746)] = 61732, - [SMALL_STATE(1747)] = 61757, - [SMALL_STATE(1748)] = 61778, - [SMALL_STATE(1749)] = 61801, - [SMALL_STATE(1750)] = 61824, - [SMALL_STATE(1751)] = 61847, - [SMALL_STATE(1752)] = 61868, - [SMALL_STATE(1753)] = 61888, - [SMALL_STATE(1754)] = 61910, - [SMALL_STATE(1755)] = 61928, - [SMALL_STATE(1756)] = 61948, - [SMALL_STATE(1757)] = 61964, - [SMALL_STATE(1758)] = 61986, - [SMALL_STATE(1759)] = 62006, - [SMALL_STATE(1760)] = 62022, - [SMALL_STATE(1761)] = 62042, - [SMALL_STATE(1762)] = 62062, - [SMALL_STATE(1763)] = 62078, - [SMALL_STATE(1764)] = 62094, - [SMALL_STATE(1765)] = 62112, - [SMALL_STATE(1766)] = 62134, - [SMALL_STATE(1767)] = 62156, - [SMALL_STATE(1768)] = 62178, - [SMALL_STATE(1769)] = 62198, - [SMALL_STATE(1770)] = 62220, - [SMALL_STATE(1771)] = 62240, - [SMALL_STATE(1772)] = 62262, - [SMALL_STATE(1773)] = 62284, - [SMALL_STATE(1774)] = 62304, - [SMALL_STATE(1775)] = 62326, - [SMALL_STATE(1776)] = 62348, - [SMALL_STATE(1777)] = 62368, - [SMALL_STATE(1778)] = 62390, - [SMALL_STATE(1779)] = 62410, - [SMALL_STATE(1780)] = 62428, - [SMALL_STATE(1781)] = 62448, - [SMALL_STATE(1782)] = 62470, - [SMALL_STATE(1783)] = 62488, - [SMALL_STATE(1784)] = 62508, - [SMALL_STATE(1785)] = 62524, - [SMALL_STATE(1786)] = 62540, - [SMALL_STATE(1787)] = 62562, - [SMALL_STATE(1788)] = 62578, - [SMALL_STATE(1789)] = 62600, - [SMALL_STATE(1790)] = 62622, - [SMALL_STATE(1791)] = 62644, - [SMALL_STATE(1792)] = 62666, - [SMALL_STATE(1793)] = 62686, - [SMALL_STATE(1794)] = 62708, - [SMALL_STATE(1795)] = 62730, - [SMALL_STATE(1796)] = 62748, - [SMALL_STATE(1797)] = 62764, - [SMALL_STATE(1798)] = 62780, - [SMALL_STATE(1799)] = 62796, - [SMALL_STATE(1800)] = 62818, - [SMALL_STATE(1801)] = 62840, - [SMALL_STATE(1802)] = 62862, - [SMALL_STATE(1803)] = 62884, - [SMALL_STATE(1804)] = 62906, - [SMALL_STATE(1805)] = 62926, - [SMALL_STATE(1806)] = 62946, - [SMALL_STATE(1807)] = 62966, - [SMALL_STATE(1808)] = 62988, - [SMALL_STATE(1809)] = 63010, - [SMALL_STATE(1810)] = 63028, - [SMALL_STATE(1811)] = 63050, - [SMALL_STATE(1812)] = 63070, - [SMALL_STATE(1813)] = 63090, - [SMALL_STATE(1814)] = 63112, - [SMALL_STATE(1815)] = 63132, - [SMALL_STATE(1816)] = 63154, - [SMALL_STATE(1817)] = 63176, - [SMALL_STATE(1818)] = 63196, - [SMALL_STATE(1819)] = 63218, - [SMALL_STATE(1820)] = 63240, - [SMALL_STATE(1821)] = 63258, - [SMALL_STATE(1822)] = 63278, - [SMALL_STATE(1823)] = 63298, - [SMALL_STATE(1824)] = 63320, - [SMALL_STATE(1825)] = 63342, - [SMALL_STATE(1826)] = 63358, - [SMALL_STATE(1827)] = 63380, - [SMALL_STATE(1828)] = 63400, - [SMALL_STATE(1829)] = 63420, - [SMALL_STATE(1830)] = 63440, - [SMALL_STATE(1831)] = 63462, - [SMALL_STATE(1832)] = 63482, - [SMALL_STATE(1833)] = 63504, - [SMALL_STATE(1834)] = 63526, - [SMALL_STATE(1835)] = 63544, - [SMALL_STATE(1836)] = 63564, - [SMALL_STATE(1837)] = 63584, - [SMALL_STATE(1838)] = 63602, - [SMALL_STATE(1839)] = 63624, - [SMALL_STATE(1840)] = 63644, - [SMALL_STATE(1841)] = 63664, - [SMALL_STATE(1842)] = 63686, - [SMALL_STATE(1843)] = 63708, - [SMALL_STATE(1844)] = 63728, - [SMALL_STATE(1845)] = 63748, - [SMALL_STATE(1846)] = 63770, - [SMALL_STATE(1847)] = 63792, - [SMALL_STATE(1848)] = 63810, - [SMALL_STATE(1849)] = 63826, - [SMALL_STATE(1850)] = 63844, - [SMALL_STATE(1851)] = 63864, - [SMALL_STATE(1852)] = 63884, - [SMALL_STATE(1853)] = 63904, - [SMALL_STATE(1854)] = 63924, - [SMALL_STATE(1855)] = 63944, - [SMALL_STATE(1856)] = 63964, - [SMALL_STATE(1857)] = 63984, - [SMALL_STATE(1858)] = 64006, - [SMALL_STATE(1859)] = 64022, - [SMALL_STATE(1860)] = 64042, - [SMALL_STATE(1861)] = 64058, - [SMALL_STATE(1862)] = 64080, - [SMALL_STATE(1863)] = 64102, - [SMALL_STATE(1864)] = 64124, - [SMALL_STATE(1865)] = 64146, - [SMALL_STATE(1866)] = 64164, - [SMALL_STATE(1867)] = 64186, - [SMALL_STATE(1868)] = 64208, - [SMALL_STATE(1869)] = 64228, - [SMALL_STATE(1870)] = 64248, - [SMALL_STATE(1871)] = 64266, - [SMALL_STATE(1872)] = 64288, - [SMALL_STATE(1873)] = 64310, - [SMALL_STATE(1874)] = 64332, - [SMALL_STATE(1875)] = 64348, - [SMALL_STATE(1876)] = 64368, - [SMALL_STATE(1877)] = 64390, - [SMALL_STATE(1878)] = 64406, - [SMALL_STATE(1879)] = 64426, - [SMALL_STATE(1880)] = 64446, - [SMALL_STATE(1881)] = 64466, - [SMALL_STATE(1882)] = 64486, - [SMALL_STATE(1883)] = 64506, - [SMALL_STATE(1884)] = 64526, - [SMALL_STATE(1885)] = 64544, - [SMALL_STATE(1886)] = 64564, - [SMALL_STATE(1887)] = 64586, - [SMALL_STATE(1888)] = 64606, - [SMALL_STATE(1889)] = 64628, - [SMALL_STATE(1890)] = 64648, - [SMALL_STATE(1891)] = 64664, - [SMALL_STATE(1892)] = 64684, - [SMALL_STATE(1893)] = 64706, - [SMALL_STATE(1894)] = 64724, - [SMALL_STATE(1895)] = 64746, - [SMALL_STATE(1896)] = 64768, - [SMALL_STATE(1897)] = 64790, - [SMALL_STATE(1898)] = 64810, - [SMALL_STATE(1899)] = 64832, - [SMALL_STATE(1900)] = 64850, - [SMALL_STATE(1901)] = 64869, - [SMALL_STATE(1902)] = 64884, - [SMALL_STATE(1903)] = 64901, - [SMALL_STATE(1904)] = 64920, - [SMALL_STATE(1905)] = 64939, - [SMALL_STATE(1906)] = 64958, - [SMALL_STATE(1907)] = 64977, - [SMALL_STATE(1908)] = 64996, - [SMALL_STATE(1909)] = 65013, - [SMALL_STATE(1910)] = 65032, - [SMALL_STATE(1911)] = 65051, - [SMALL_STATE(1912)] = 65070, - [SMALL_STATE(1913)] = 65087, - [SMALL_STATE(1914)] = 65106, - [SMALL_STATE(1915)] = 65125, - [SMALL_STATE(1916)] = 65144, - [SMALL_STATE(1917)] = 65163, - [SMALL_STATE(1918)] = 65182, - [SMALL_STATE(1919)] = 65201, - [SMALL_STATE(1920)] = 65220, - [SMALL_STATE(1921)] = 65239, - [SMALL_STATE(1922)] = 65258, - [SMALL_STATE(1923)] = 65277, - [SMALL_STATE(1924)] = 65294, - [SMALL_STATE(1925)] = 65309, - [SMALL_STATE(1926)] = 65328, - [SMALL_STATE(1927)] = 65347, - [SMALL_STATE(1928)] = 65366, - [SMALL_STATE(1929)] = 65385, - [SMALL_STATE(1930)] = 65404, - [SMALL_STATE(1931)] = 65423, - [SMALL_STATE(1932)] = 65440, - [SMALL_STATE(1933)] = 65459, - [SMALL_STATE(1934)] = 65478, - [SMALL_STATE(1935)] = 65497, - [SMALL_STATE(1936)] = 65516, - [SMALL_STATE(1937)] = 65531, - [SMALL_STATE(1938)] = 65550, - [SMALL_STATE(1939)] = 65569, - [SMALL_STATE(1940)] = 65588, - [SMALL_STATE(1941)] = 65607, - [SMALL_STATE(1942)] = 65624, - [SMALL_STATE(1943)] = 65643, - [SMALL_STATE(1944)] = 65662, - [SMALL_STATE(1945)] = 65681, - [SMALL_STATE(1946)] = 65700, - [SMALL_STATE(1947)] = 65719, - [SMALL_STATE(1948)] = 65734, - [SMALL_STATE(1949)] = 65749, - [SMALL_STATE(1950)] = 65768, - [SMALL_STATE(1951)] = 65787, - [SMALL_STATE(1952)] = 65806, - [SMALL_STATE(1953)] = 65821, - [SMALL_STATE(1954)] = 65836, - [SMALL_STATE(1955)] = 65853, - [SMALL_STATE(1956)] = 65870, - [SMALL_STATE(1957)] = 65889, - [SMALL_STATE(1958)] = 65908, - [SMALL_STATE(1959)] = 65925, - [SMALL_STATE(1960)] = 65944, - [SMALL_STATE(1961)] = 65961, - [SMALL_STATE(1962)] = 65978, - [SMALL_STATE(1963)] = 65995, - [SMALL_STATE(1964)] = 66014, - [SMALL_STATE(1965)] = 66031, - [SMALL_STATE(1966)] = 66048, - [SMALL_STATE(1967)] = 66065, - [SMALL_STATE(1968)] = 66084, - [SMALL_STATE(1969)] = 66101, - [SMALL_STATE(1970)] = 66116, - [SMALL_STATE(1971)] = 66133, - [SMALL_STATE(1972)] = 66150, - [SMALL_STATE(1973)] = 66167, - [SMALL_STATE(1974)] = 66184, - [SMALL_STATE(1975)] = 66201, - [SMALL_STATE(1976)] = 66218, - [SMALL_STATE(1977)] = 66237, - [SMALL_STATE(1978)] = 66254, - [SMALL_STATE(1979)] = 66273, - [SMALL_STATE(1980)] = 66290, - [SMALL_STATE(1981)] = 66309, - [SMALL_STATE(1982)] = 66326, - [SMALL_STATE(1983)] = 66343, - [SMALL_STATE(1984)] = 66360, - [SMALL_STATE(1985)] = 66379, - [SMALL_STATE(1986)] = 66396, - [SMALL_STATE(1987)] = 66413, - [SMALL_STATE(1988)] = 66428, - [SMALL_STATE(1989)] = 66447, - [SMALL_STATE(1990)] = 66464, - [SMALL_STATE(1991)] = 66479, - [SMALL_STATE(1992)] = 66496, - [SMALL_STATE(1993)] = 66513, - [SMALL_STATE(1994)] = 66530, - [SMALL_STATE(1995)] = 66547, - [SMALL_STATE(1996)] = 66566, - [SMALL_STATE(1997)] = 66581, - [SMALL_STATE(1998)] = 66598, - [SMALL_STATE(1999)] = 66615, - [SMALL_STATE(2000)] = 66632, - [SMALL_STATE(2001)] = 66649, - [SMALL_STATE(2002)] = 66666, - [SMALL_STATE(2003)] = 66683, - [SMALL_STATE(2004)] = 66702, - [SMALL_STATE(2005)] = 66719, - [SMALL_STATE(2006)] = 66738, - [SMALL_STATE(2007)] = 66757, - [SMALL_STATE(2008)] = 66774, - [SMALL_STATE(2009)] = 66793, - [SMALL_STATE(2010)] = 66810, - [SMALL_STATE(2011)] = 66829, - [SMALL_STATE(2012)] = 66846, - [SMALL_STATE(2013)] = 66865, - [SMALL_STATE(2014)] = 66882, - [SMALL_STATE(2015)] = 66899, - [SMALL_STATE(2016)] = 66916, - [SMALL_STATE(2017)] = 66933, - [SMALL_STATE(2018)] = 66950, - [SMALL_STATE(2019)] = 66967, - [SMALL_STATE(2020)] = 66984, - [SMALL_STATE(2021)] = 67001, - [SMALL_STATE(2022)] = 67020, - [SMALL_STATE(2023)] = 67037, - [SMALL_STATE(2024)] = 67054, - [SMALL_STATE(2025)] = 67071, - [SMALL_STATE(2026)] = 67088, - [SMALL_STATE(2027)] = 67107, - [SMALL_STATE(2028)] = 67126, - [SMALL_STATE(2029)] = 67143, - [SMALL_STATE(2030)] = 67162, - [SMALL_STATE(2031)] = 67179, - [SMALL_STATE(2032)] = 67196, - [SMALL_STATE(2033)] = 67215, - [SMALL_STATE(2034)] = 67234, - [SMALL_STATE(2035)] = 67253, - [SMALL_STATE(2036)] = 67272, - [SMALL_STATE(2037)] = 67289, - [SMALL_STATE(2038)] = 67308, - [SMALL_STATE(2039)] = 67327, - [SMALL_STATE(2040)] = 67346, - [SMALL_STATE(2041)] = 67365, - [SMALL_STATE(2042)] = 67382, - [SMALL_STATE(2043)] = 67401, - [SMALL_STATE(2044)] = 67420, - [SMALL_STATE(2045)] = 67435, - [SMALL_STATE(2046)] = 67452, - [SMALL_STATE(2047)] = 67467, - [SMALL_STATE(2048)] = 67486, - [SMALL_STATE(2049)] = 67503, - [SMALL_STATE(2050)] = 67520, - [SMALL_STATE(2051)] = 67537, - [SMALL_STATE(2052)] = 67554, - [SMALL_STATE(2053)] = 67571, - [SMALL_STATE(2054)] = 67588, - [SMALL_STATE(2055)] = 67605, - [SMALL_STATE(2056)] = 67622, - [SMALL_STATE(2057)] = 67639, - [SMALL_STATE(2058)] = 67656, - [SMALL_STATE(2059)] = 67673, - [SMALL_STATE(2060)] = 67690, - [SMALL_STATE(2061)] = 67707, - [SMALL_STATE(2062)] = 67724, - [SMALL_STATE(2063)] = 67741, - [SMALL_STATE(2064)] = 67758, - [SMALL_STATE(2065)] = 67775, - [SMALL_STATE(2066)] = 67792, - [SMALL_STATE(2067)] = 67809, - [SMALL_STATE(2068)] = 67826, - [SMALL_STATE(2069)] = 67843, - [SMALL_STATE(2070)] = 67860, - [SMALL_STATE(2071)] = 67877, - [SMALL_STATE(2072)] = 67894, - [SMALL_STATE(2073)] = 67911, - [SMALL_STATE(2074)] = 67930, - [SMALL_STATE(2075)] = 67945, - [SMALL_STATE(2076)] = 67962, - [SMALL_STATE(2077)] = 67981, - [SMALL_STATE(2078)] = 68000, - [SMALL_STATE(2079)] = 68017, - [SMALL_STATE(2080)] = 68034, - [SMALL_STATE(2081)] = 68051, - [SMALL_STATE(2082)] = 68068, - [SMALL_STATE(2083)] = 68087, - [SMALL_STATE(2084)] = 68104, - [SMALL_STATE(2085)] = 68121, - [SMALL_STATE(2086)] = 68138, - [SMALL_STATE(2087)] = 68155, - [SMALL_STATE(2088)] = 68172, - [SMALL_STATE(2089)] = 68189, - [SMALL_STATE(2090)] = 68206, - [SMALL_STATE(2091)] = 68221, - [SMALL_STATE(2092)] = 68236, - [SMALL_STATE(2093)] = 68253, - [SMALL_STATE(2094)] = 68270, - [SMALL_STATE(2095)] = 68287, - [SMALL_STATE(2096)] = 68304, - [SMALL_STATE(2097)] = 68321, - [SMALL_STATE(2098)] = 68340, - [SMALL_STATE(2099)] = 68357, - [SMALL_STATE(2100)] = 68374, - [SMALL_STATE(2101)] = 68393, - [SMALL_STATE(2102)] = 68410, - [SMALL_STATE(2103)] = 68427, - [SMALL_STATE(2104)] = 68444, - [SMALL_STATE(2105)] = 68463, - [SMALL_STATE(2106)] = 68480, - [SMALL_STATE(2107)] = 68499, - [SMALL_STATE(2108)] = 68516, - [SMALL_STATE(2109)] = 68533, - [SMALL_STATE(2110)] = 68550, - [SMALL_STATE(2111)] = 68567, - [SMALL_STATE(2112)] = 68584, - [SMALL_STATE(2113)] = 68603, - [SMALL_STATE(2114)] = 68620, - [SMALL_STATE(2115)] = 68637, - [SMALL_STATE(2116)] = 68652, - [SMALL_STATE(2117)] = 68669, - [SMALL_STATE(2118)] = 68686, - [SMALL_STATE(2119)] = 68703, - [SMALL_STATE(2120)] = 68720, - [SMALL_STATE(2121)] = 68737, - [SMALL_STATE(2122)] = 68754, - [SMALL_STATE(2123)] = 68771, - [SMALL_STATE(2124)] = 68786, - [SMALL_STATE(2125)] = 68803, - [SMALL_STATE(2126)] = 68818, - [SMALL_STATE(2127)] = 68835, - [SMALL_STATE(2128)] = 68852, - [SMALL_STATE(2129)] = 68869, - [SMALL_STATE(2130)] = 68886, - [SMALL_STATE(2131)] = 68905, - [SMALL_STATE(2132)] = 68922, - [SMALL_STATE(2133)] = 68937, - [SMALL_STATE(2134)] = 68954, - [SMALL_STATE(2135)] = 68973, - [SMALL_STATE(2136)] = 68990, - [SMALL_STATE(2137)] = 69007, - [SMALL_STATE(2138)] = 69024, - [SMALL_STATE(2139)] = 69043, - [SMALL_STATE(2140)] = 69062, - [SMALL_STATE(2141)] = 69081, - [SMALL_STATE(2142)] = 69098, - [SMALL_STATE(2143)] = 69113, - [SMALL_STATE(2144)] = 69132, - [SMALL_STATE(2145)] = 69151, - [SMALL_STATE(2146)] = 69166, - [SMALL_STATE(2147)] = 69181, - [SMALL_STATE(2148)] = 69200, - [SMALL_STATE(2149)] = 69217, - [SMALL_STATE(2150)] = 69236, - [SMALL_STATE(2151)] = 69255, - [SMALL_STATE(2152)] = 69272, - [SMALL_STATE(2153)] = 69287, - [SMALL_STATE(2154)] = 69304, - [SMALL_STATE(2155)] = 69323, - [SMALL_STATE(2156)] = 69340, - [SMALL_STATE(2157)] = 69355, - [SMALL_STATE(2158)] = 69374, - [SMALL_STATE(2159)] = 69388, - [SMALL_STATE(2160)] = 69402, - [SMALL_STATE(2161)] = 69418, - [SMALL_STATE(2162)] = 69434, - [SMALL_STATE(2163)] = 69448, - [SMALL_STATE(2164)] = 69462, - [SMALL_STATE(2165)] = 69476, - [SMALL_STATE(2166)] = 69492, - [SMALL_STATE(2167)] = 69508, - [SMALL_STATE(2168)] = 69522, - [SMALL_STATE(2169)] = 69538, - [SMALL_STATE(2170)] = 69552, - [SMALL_STATE(2171)] = 69568, - [SMALL_STATE(2172)] = 69582, - [SMALL_STATE(2173)] = 69596, - [SMALL_STATE(2174)] = 69612, - [SMALL_STATE(2175)] = 69628, - [SMALL_STATE(2176)] = 69642, - [SMALL_STATE(2177)] = 69656, - [SMALL_STATE(2178)] = 69670, - [SMALL_STATE(2179)] = 69686, - [SMALL_STATE(2180)] = 69700, - [SMALL_STATE(2181)] = 69716, - [SMALL_STATE(2182)] = 69732, - [SMALL_STATE(2183)] = 69748, - [SMALL_STATE(2184)] = 69764, - [SMALL_STATE(2185)] = 69780, - [SMALL_STATE(2186)] = 69796, - [SMALL_STATE(2187)] = 69812, - [SMALL_STATE(2188)] = 69828, - [SMALL_STATE(2189)] = 69844, - [SMALL_STATE(2190)] = 69860, - [SMALL_STATE(2191)] = 69876, - [SMALL_STATE(2192)] = 69890, - [SMALL_STATE(2193)] = 69906, - [SMALL_STATE(2194)] = 69922, - [SMALL_STATE(2195)] = 69938, - [SMALL_STATE(2196)] = 69952, - [SMALL_STATE(2197)] = 69968, - [SMALL_STATE(2198)] = 69984, - [SMALL_STATE(2199)] = 70000, - [SMALL_STATE(2200)] = 70014, - [SMALL_STATE(2201)] = 70028, - [SMALL_STATE(2202)] = 70042, - [SMALL_STATE(2203)] = 70058, - [SMALL_STATE(2204)] = 70072, - [SMALL_STATE(2205)] = 70086, - [SMALL_STATE(2206)] = 70100, - [SMALL_STATE(2207)] = 70116, - [SMALL_STATE(2208)] = 70130, - [SMALL_STATE(2209)] = 70146, - [SMALL_STATE(2210)] = 70162, - [SMALL_STATE(2211)] = 70178, - [SMALL_STATE(2212)] = 70192, - [SMALL_STATE(2213)] = 70206, - [SMALL_STATE(2214)] = 70222, - [SMALL_STATE(2215)] = 70238, - [SMALL_STATE(2216)] = 70254, - [SMALL_STATE(2217)] = 70270, - [SMALL_STATE(2218)] = 70284, - [SMALL_STATE(2219)] = 70298, - [SMALL_STATE(2220)] = 70312, - [SMALL_STATE(2221)] = 70328, - [SMALL_STATE(2222)] = 70342, - [SMALL_STATE(2223)] = 70358, - [SMALL_STATE(2224)] = 70372, - [SMALL_STATE(2225)] = 70388, - [SMALL_STATE(2226)] = 70404, - [SMALL_STATE(2227)] = 70420, - [SMALL_STATE(2228)] = 70434, - [SMALL_STATE(2229)] = 70448, - [SMALL_STATE(2230)] = 70462, - [SMALL_STATE(2231)] = 70478, - [SMALL_STATE(2232)] = 70494, - [SMALL_STATE(2233)] = 70508, - [SMALL_STATE(2234)] = 70522, - [SMALL_STATE(2235)] = 70536, - [SMALL_STATE(2236)] = 70552, - [SMALL_STATE(2237)] = 70566, - [SMALL_STATE(2238)] = 70580, - [SMALL_STATE(2239)] = 70594, - [SMALL_STATE(2240)] = 70610, - [SMALL_STATE(2241)] = 70626, - [SMALL_STATE(2242)] = 70642, - [SMALL_STATE(2243)] = 70658, - [SMALL_STATE(2244)] = 70672, - [SMALL_STATE(2245)] = 70686, - [SMALL_STATE(2246)] = 70702, - [SMALL_STATE(2247)] = 70716, - [SMALL_STATE(2248)] = 70732, - [SMALL_STATE(2249)] = 70748, - [SMALL_STATE(2250)] = 70764, - [SMALL_STATE(2251)] = 70780, - [SMALL_STATE(2252)] = 70796, - [SMALL_STATE(2253)] = 70810, - [SMALL_STATE(2254)] = 70826, - [SMALL_STATE(2255)] = 70842, - [SMALL_STATE(2256)] = 70856, - [SMALL_STATE(2257)] = 70872, - [SMALL_STATE(2258)] = 70888, - [SMALL_STATE(2259)] = 70904, - [SMALL_STATE(2260)] = 70920, - [SMALL_STATE(2261)] = 70936, - [SMALL_STATE(2262)] = 70952, - [SMALL_STATE(2263)] = 70968, - [SMALL_STATE(2264)] = 70984, - [SMALL_STATE(2265)] = 71000, - [SMALL_STATE(2266)] = 71016, - [SMALL_STATE(2267)] = 71032, - [SMALL_STATE(2268)] = 71048, - [SMALL_STATE(2269)] = 71064, - [SMALL_STATE(2270)] = 71080, - [SMALL_STATE(2271)] = 71094, - [SMALL_STATE(2272)] = 71110, - [SMALL_STATE(2273)] = 71126, - [SMALL_STATE(2274)] = 71142, - [SMALL_STATE(2275)] = 71156, - [SMALL_STATE(2276)] = 71170, - [SMALL_STATE(2277)] = 71186, - [SMALL_STATE(2278)] = 71200, - [SMALL_STATE(2279)] = 71216, - [SMALL_STATE(2280)] = 71230, - [SMALL_STATE(2281)] = 71244, - [SMALL_STATE(2282)] = 71258, - [SMALL_STATE(2283)] = 71274, - [SMALL_STATE(2284)] = 71290, - [SMALL_STATE(2285)] = 71304, - [SMALL_STATE(2286)] = 71320, - [SMALL_STATE(2287)] = 71334, - [SMALL_STATE(2288)] = 71350, - [SMALL_STATE(2289)] = 71364, - [SMALL_STATE(2290)] = 71380, - [SMALL_STATE(2291)] = 71394, - [SMALL_STATE(2292)] = 71408, - [SMALL_STATE(2293)] = 71422, - [SMALL_STATE(2294)] = 71438, - [SMALL_STATE(2295)] = 71454, - [SMALL_STATE(2296)] = 71470, - [SMALL_STATE(2297)] = 71484, - [SMALL_STATE(2298)] = 71500, - [SMALL_STATE(2299)] = 71516, - [SMALL_STATE(2300)] = 71532, - [SMALL_STATE(2301)] = 71548, - [SMALL_STATE(2302)] = 71562, - [SMALL_STATE(2303)] = 71576, - [SMALL_STATE(2304)] = 71592, - [SMALL_STATE(2305)] = 71608, - [SMALL_STATE(2306)] = 71624, - [SMALL_STATE(2307)] = 71640, - [SMALL_STATE(2308)] = 71654, - [SMALL_STATE(2309)] = 71670, - [SMALL_STATE(2310)] = 71686, - [SMALL_STATE(2311)] = 71700, - [SMALL_STATE(2312)] = 71716, - [SMALL_STATE(2313)] = 71732, - [SMALL_STATE(2314)] = 71748, - [SMALL_STATE(2315)] = 71764, - [SMALL_STATE(2316)] = 71780, - [SMALL_STATE(2317)] = 71796, - [SMALL_STATE(2318)] = 71812, - [SMALL_STATE(2319)] = 71828, - [SMALL_STATE(2320)] = 71844, - [SMALL_STATE(2321)] = 71858, - [SMALL_STATE(2322)] = 71874, - [SMALL_STATE(2323)] = 71890, - [SMALL_STATE(2324)] = 71904, - [SMALL_STATE(2325)] = 71920, - [SMALL_STATE(2326)] = 71936, - [SMALL_STATE(2327)] = 71950, - [SMALL_STATE(2328)] = 71964, - [SMALL_STATE(2329)] = 71980, - [SMALL_STATE(2330)] = 71994, - [SMALL_STATE(2331)] = 72010, - [SMALL_STATE(2332)] = 72024, - [SMALL_STATE(2333)] = 72040, - [SMALL_STATE(2334)] = 72056, - [SMALL_STATE(2335)] = 72070, - [SMALL_STATE(2336)] = 72086, - [SMALL_STATE(2337)] = 72100, - [SMALL_STATE(2338)] = 72116, - [SMALL_STATE(2339)] = 72132, - [SMALL_STATE(2340)] = 72148, - [SMALL_STATE(2341)] = 72164, - [SMALL_STATE(2342)] = 72180, - [SMALL_STATE(2343)] = 72196, - [SMALL_STATE(2344)] = 72212, - [SMALL_STATE(2345)] = 72228, - [SMALL_STATE(2346)] = 72242, - [SMALL_STATE(2347)] = 72258, - [SMALL_STATE(2348)] = 72272, - [SMALL_STATE(2349)] = 72286, - [SMALL_STATE(2350)] = 72302, - [SMALL_STATE(2351)] = 72316, - [SMALL_STATE(2352)] = 72330, - [SMALL_STATE(2353)] = 72344, - [SMALL_STATE(2354)] = 72360, - [SMALL_STATE(2355)] = 72376, - [SMALL_STATE(2356)] = 72392, - [SMALL_STATE(2357)] = 72406, - [SMALL_STATE(2358)] = 72422, - [SMALL_STATE(2359)] = 72438, - [SMALL_STATE(2360)] = 72452, - [SMALL_STATE(2361)] = 72468, - [SMALL_STATE(2362)] = 72484, - [SMALL_STATE(2363)] = 72500, - [SMALL_STATE(2364)] = 72516, - [SMALL_STATE(2365)] = 72532, - [SMALL_STATE(2366)] = 72548, - [SMALL_STATE(2367)] = 72562, - [SMALL_STATE(2368)] = 72578, - [SMALL_STATE(2369)] = 72594, - [SMALL_STATE(2370)] = 72610, - [SMALL_STATE(2371)] = 72624, - [SMALL_STATE(2372)] = 72640, - [SMALL_STATE(2373)] = 72656, - [SMALL_STATE(2374)] = 72672, - [SMALL_STATE(2375)] = 72688, - [SMALL_STATE(2376)] = 72704, - [SMALL_STATE(2377)] = 72720, - [SMALL_STATE(2378)] = 72734, - [SMALL_STATE(2379)] = 72750, - [SMALL_STATE(2380)] = 72764, - [SMALL_STATE(2381)] = 72778, - [SMALL_STATE(2382)] = 72792, - [SMALL_STATE(2383)] = 72808, - [SMALL_STATE(2384)] = 72822, - [SMALL_STATE(2385)] = 72838, - [SMALL_STATE(2386)] = 72854, - [SMALL_STATE(2387)] = 72868, - [SMALL_STATE(2388)] = 72882, - [SMALL_STATE(2389)] = 72898, - [SMALL_STATE(2390)] = 72912, - [SMALL_STATE(2391)] = 72926, - [SMALL_STATE(2392)] = 72942, - [SMALL_STATE(2393)] = 72956, - [SMALL_STATE(2394)] = 72972, - [SMALL_STATE(2395)] = 72988, - [SMALL_STATE(2396)] = 73004, - [SMALL_STATE(2397)] = 73020, - [SMALL_STATE(2398)] = 73034, - [SMALL_STATE(2399)] = 73048, - [SMALL_STATE(2400)] = 73064, - [SMALL_STATE(2401)] = 73080, - [SMALL_STATE(2402)] = 73096, - [SMALL_STATE(2403)] = 73112, - [SMALL_STATE(2404)] = 73128, - [SMALL_STATE(2405)] = 73144, - [SMALL_STATE(2406)] = 73160, - [SMALL_STATE(2407)] = 73176, - [SMALL_STATE(2408)] = 73190, - [SMALL_STATE(2409)] = 73206, - [SMALL_STATE(2410)] = 73222, - [SMALL_STATE(2411)] = 73238, - [SMALL_STATE(2412)] = 73252, - [SMALL_STATE(2413)] = 73268, - [SMALL_STATE(2414)] = 73284, - [SMALL_STATE(2415)] = 73300, - [SMALL_STATE(2416)] = 73314, - [SMALL_STATE(2417)] = 73328, - [SMALL_STATE(2418)] = 73344, - [SMALL_STATE(2419)] = 73360, - [SMALL_STATE(2420)] = 73374, - [SMALL_STATE(2421)] = 73388, - [SMALL_STATE(2422)] = 73404, - [SMALL_STATE(2423)] = 73420, - [SMALL_STATE(2424)] = 73434, - [SMALL_STATE(2425)] = 73450, - [SMALL_STATE(2426)] = 73466, - [SMALL_STATE(2427)] = 73482, - [SMALL_STATE(2428)] = 73498, - [SMALL_STATE(2429)] = 73511, - [SMALL_STATE(2430)] = 73524, - [SMALL_STATE(2431)] = 73537, - [SMALL_STATE(2432)] = 73550, - [SMALL_STATE(2433)] = 73563, - [SMALL_STATE(2434)] = 73576, - [SMALL_STATE(2435)] = 73589, - [SMALL_STATE(2436)] = 73602, - [SMALL_STATE(2437)] = 73615, - [SMALL_STATE(2438)] = 73628, - [SMALL_STATE(2439)] = 73641, - [SMALL_STATE(2440)] = 73654, - [SMALL_STATE(2441)] = 73667, - [SMALL_STATE(2442)] = 73680, - [SMALL_STATE(2443)] = 73693, - [SMALL_STATE(2444)] = 73706, - [SMALL_STATE(2445)] = 73719, - [SMALL_STATE(2446)] = 73732, - [SMALL_STATE(2447)] = 73745, - [SMALL_STATE(2448)] = 73758, - [SMALL_STATE(2449)] = 73771, - [SMALL_STATE(2450)] = 73784, - [SMALL_STATE(2451)] = 73797, - [SMALL_STATE(2452)] = 73810, - [SMALL_STATE(2453)] = 73823, - [SMALL_STATE(2454)] = 73836, - [SMALL_STATE(2455)] = 73849, - [SMALL_STATE(2456)] = 73862, - [SMALL_STATE(2457)] = 73875, - [SMALL_STATE(2458)] = 73888, - [SMALL_STATE(2459)] = 73901, - [SMALL_STATE(2460)] = 73914, - [SMALL_STATE(2461)] = 73927, - [SMALL_STATE(2462)] = 73940, - [SMALL_STATE(2463)] = 73953, - [SMALL_STATE(2464)] = 73966, - [SMALL_STATE(2465)] = 73979, - [SMALL_STATE(2466)] = 73992, - [SMALL_STATE(2467)] = 74005, - [SMALL_STATE(2468)] = 74018, - [SMALL_STATE(2469)] = 74031, - [SMALL_STATE(2470)] = 74044, - [SMALL_STATE(2471)] = 74057, - [SMALL_STATE(2472)] = 74070, - [SMALL_STATE(2473)] = 74083, - [SMALL_STATE(2474)] = 74096, - [SMALL_STATE(2475)] = 74109, - [SMALL_STATE(2476)] = 74122, - [SMALL_STATE(2477)] = 74135, - [SMALL_STATE(2478)] = 74148, - [SMALL_STATE(2479)] = 74161, - [SMALL_STATE(2480)] = 74174, - [SMALL_STATE(2481)] = 74187, - [SMALL_STATE(2482)] = 74200, - [SMALL_STATE(2483)] = 74213, - [SMALL_STATE(2484)] = 74226, - [SMALL_STATE(2485)] = 74239, - [SMALL_STATE(2486)] = 74252, - [SMALL_STATE(2487)] = 74265, - [SMALL_STATE(2488)] = 74278, - [SMALL_STATE(2489)] = 74291, - [SMALL_STATE(2490)] = 74304, - [SMALL_STATE(2491)] = 74317, - [SMALL_STATE(2492)] = 74330, - [SMALL_STATE(2493)] = 74343, - [SMALL_STATE(2494)] = 74356, - [SMALL_STATE(2495)] = 74369, - [SMALL_STATE(2496)] = 74382, - [SMALL_STATE(2497)] = 74395, - [SMALL_STATE(2498)] = 74408, - [SMALL_STATE(2499)] = 74421, - [SMALL_STATE(2500)] = 74434, - [SMALL_STATE(2501)] = 74447, - [SMALL_STATE(2502)] = 74460, - [SMALL_STATE(2503)] = 74473, - [SMALL_STATE(2504)] = 74486, - [SMALL_STATE(2505)] = 74499, - [SMALL_STATE(2506)] = 74512, - [SMALL_STATE(2507)] = 74525, - [SMALL_STATE(2508)] = 74538, - [SMALL_STATE(2509)] = 74551, - [SMALL_STATE(2510)] = 74564, - [SMALL_STATE(2511)] = 74577, - [SMALL_STATE(2512)] = 74590, - [SMALL_STATE(2513)] = 74603, - [SMALL_STATE(2514)] = 74616, - [SMALL_STATE(2515)] = 74629, - [SMALL_STATE(2516)] = 74642, - [SMALL_STATE(2517)] = 74655, - [SMALL_STATE(2518)] = 74668, - [SMALL_STATE(2519)] = 74681, - [SMALL_STATE(2520)] = 74694, - [SMALL_STATE(2521)] = 74707, - [SMALL_STATE(2522)] = 74720, - [SMALL_STATE(2523)] = 74733, - [SMALL_STATE(2524)] = 74746, - [SMALL_STATE(2525)] = 74759, - [SMALL_STATE(2526)] = 74772, - [SMALL_STATE(2527)] = 74785, - [SMALL_STATE(2528)] = 74798, - [SMALL_STATE(2529)] = 74811, - [SMALL_STATE(2530)] = 74824, - [SMALL_STATE(2531)] = 74837, - [SMALL_STATE(2532)] = 74850, - [SMALL_STATE(2533)] = 74863, - [SMALL_STATE(2534)] = 74876, - [SMALL_STATE(2535)] = 74889, - [SMALL_STATE(2536)] = 74902, - [SMALL_STATE(2537)] = 74915, - [SMALL_STATE(2538)] = 74928, - [SMALL_STATE(2539)] = 74941, - [SMALL_STATE(2540)] = 74954, - [SMALL_STATE(2541)] = 74967, - [SMALL_STATE(2542)] = 74980, - [SMALL_STATE(2543)] = 74993, - [SMALL_STATE(2544)] = 75006, - [SMALL_STATE(2545)] = 75019, - [SMALL_STATE(2546)] = 75032, - [SMALL_STATE(2547)] = 75045, - [SMALL_STATE(2548)] = 75058, - [SMALL_STATE(2549)] = 75071, - [SMALL_STATE(2550)] = 75084, - [SMALL_STATE(2551)] = 75097, - [SMALL_STATE(2552)] = 75110, - [SMALL_STATE(2553)] = 75123, - [SMALL_STATE(2554)] = 75136, - [SMALL_STATE(2555)] = 75149, - [SMALL_STATE(2556)] = 75162, - [SMALL_STATE(2557)] = 75175, - [SMALL_STATE(2558)] = 75188, - [SMALL_STATE(2559)] = 75201, - [SMALL_STATE(2560)] = 75214, - [SMALL_STATE(2561)] = 75227, - [SMALL_STATE(2562)] = 75240, - [SMALL_STATE(2563)] = 75253, - [SMALL_STATE(2564)] = 75266, - [SMALL_STATE(2565)] = 75279, - [SMALL_STATE(2566)] = 75292, - [SMALL_STATE(2567)] = 75305, - [SMALL_STATE(2568)] = 75318, - [SMALL_STATE(2569)] = 75331, - [SMALL_STATE(2570)] = 75344, - [SMALL_STATE(2571)] = 75357, - [SMALL_STATE(2572)] = 75370, - [SMALL_STATE(2573)] = 75383, - [SMALL_STATE(2574)] = 75396, - [SMALL_STATE(2575)] = 75409, - [SMALL_STATE(2576)] = 75422, - [SMALL_STATE(2577)] = 75435, - [SMALL_STATE(2578)] = 75448, - [SMALL_STATE(2579)] = 75461, - [SMALL_STATE(2580)] = 75474, - [SMALL_STATE(2581)] = 75487, - [SMALL_STATE(2582)] = 75500, - [SMALL_STATE(2583)] = 75513, - [SMALL_STATE(2584)] = 75526, - [SMALL_STATE(2585)] = 75539, - [SMALL_STATE(2586)] = 75552, - [SMALL_STATE(2587)] = 75565, - [SMALL_STATE(2588)] = 75578, - [SMALL_STATE(2589)] = 75591, - [SMALL_STATE(2590)] = 75604, - [SMALL_STATE(2591)] = 75617, - [SMALL_STATE(2592)] = 75630, - [SMALL_STATE(2593)] = 75643, - [SMALL_STATE(2594)] = 75656, - [SMALL_STATE(2595)] = 75669, - [SMALL_STATE(2596)] = 75682, - [SMALL_STATE(2597)] = 75695, - [SMALL_STATE(2598)] = 75708, - [SMALL_STATE(2599)] = 75721, - [SMALL_STATE(2600)] = 75734, - [SMALL_STATE(2601)] = 75747, - [SMALL_STATE(2602)] = 75760, - [SMALL_STATE(2603)] = 75773, - [SMALL_STATE(2604)] = 75786, - [SMALL_STATE(2605)] = 75799, - [SMALL_STATE(2606)] = 75812, - [SMALL_STATE(2607)] = 75825, - [SMALL_STATE(2608)] = 75838, - [SMALL_STATE(2609)] = 75851, - [SMALL_STATE(2610)] = 75864, - [SMALL_STATE(2611)] = 75877, - [SMALL_STATE(2612)] = 75890, - [SMALL_STATE(2613)] = 75903, - [SMALL_STATE(2614)] = 75916, - [SMALL_STATE(2615)] = 75929, - [SMALL_STATE(2616)] = 75942, - [SMALL_STATE(2617)] = 75955, - [SMALL_STATE(2618)] = 75968, - [SMALL_STATE(2619)] = 75981, - [SMALL_STATE(2620)] = 75994, - [SMALL_STATE(2621)] = 76007, - [SMALL_STATE(2622)] = 76020, - [SMALL_STATE(2623)] = 76033, - [SMALL_STATE(2624)] = 76046, - [SMALL_STATE(2625)] = 76059, - [SMALL_STATE(2626)] = 76072, - [SMALL_STATE(2627)] = 76085, - [SMALL_STATE(2628)] = 76098, - [SMALL_STATE(2629)] = 76111, - [SMALL_STATE(2630)] = 76124, - [SMALL_STATE(2631)] = 76137, - [SMALL_STATE(2632)] = 76150, - [SMALL_STATE(2633)] = 76163, - [SMALL_STATE(2634)] = 76176, - [SMALL_STATE(2635)] = 76189, - [SMALL_STATE(2636)] = 76202, - [SMALL_STATE(2637)] = 76215, - [SMALL_STATE(2638)] = 76228, - [SMALL_STATE(2639)] = 76241, - [SMALL_STATE(2640)] = 76254, - [SMALL_STATE(2641)] = 76267, - [SMALL_STATE(2642)] = 76280, - [SMALL_STATE(2643)] = 76293, - [SMALL_STATE(2644)] = 76306, - [SMALL_STATE(2645)] = 76319, - [SMALL_STATE(2646)] = 76332, - [SMALL_STATE(2647)] = 76345, - [SMALL_STATE(2648)] = 76358, - [SMALL_STATE(2649)] = 76371, - [SMALL_STATE(2650)] = 76384, - [SMALL_STATE(2651)] = 76397, - [SMALL_STATE(2652)] = 76410, - [SMALL_STATE(2653)] = 76423, - [SMALL_STATE(2654)] = 76436, - [SMALL_STATE(2655)] = 76449, - [SMALL_STATE(2656)] = 76462, - [SMALL_STATE(2657)] = 76466, + [SMALL_STATE(568)] = 0, + [SMALL_STATE(569)] = 70, + [SMALL_STATE(570)] = 140, + [SMALL_STATE(571)] = 210, + [SMALL_STATE(572)] = 280, + [SMALL_STATE(573)] = 353, + [SMALL_STATE(574)] = 434, + [SMALL_STATE(575)] = 507, + [SMALL_STATE(576)] = 580, + [SMALL_STATE(577)] = 653, + [SMALL_STATE(578)] = 726, + [SMALL_STATE(579)] = 794, + [SMALL_STATE(580)] = 862, + [SMALL_STATE(581)] = 930, + [SMALL_STATE(582)] = 998, + [SMALL_STATE(583)] = 1066, + [SMALL_STATE(584)] = 1134, + [SMALL_STATE(585)] = 1202, + [SMALL_STATE(586)] = 1270, + [SMALL_STATE(587)] = 1338, + [SMALL_STATE(588)] = 1406, + [SMALL_STATE(589)] = 1474, + [SMALL_STATE(590)] = 1542, + [SMALL_STATE(591)] = 1610, + [SMALL_STATE(592)] = 1685, + [SMALL_STATE(593)] = 1764, + [SMALL_STATE(594)] = 1843, + [SMALL_STATE(595)] = 1921, + [SMALL_STATE(596)] = 1999, + [SMALL_STATE(597)] = 2068, + [SMALL_STATE(598)] = 2141, + [SMALL_STATE(599)] = 2210, + [SMALL_STATE(600)] = 2279, + [SMALL_STATE(601)] = 2356, + [SMALL_STATE(602)] = 2433, + [SMALL_STATE(603)] = 2510, + [SMALL_STATE(604)] = 2579, + [SMALL_STATE(605)] = 2648, + [SMALL_STATE(606)] = 2721, + [SMALL_STATE(607)] = 2798, + [SMALL_STATE(608)] = 2881, + [SMALL_STATE(609)] = 2959, + [SMALL_STATE(610)] = 3023, + [SMALL_STATE(611)] = 3087, + [SMALL_STATE(612)] = 3165, + [SMALL_STATE(613)] = 3229, + [SMALL_STATE(614)] = 3293, + [SMALL_STATE(615)] = 3357, + [SMALL_STATE(616)] = 3421, + [SMALL_STATE(617)] = 3485, + [SMALL_STATE(618)] = 3557, + [SMALL_STATE(619)] = 3621, + [SMALL_STATE(620)] = 3685, + [SMALL_STATE(621)] = 3761, + [SMALL_STATE(622)] = 3837, + [SMALL_STATE(623)] = 3909, + [SMALL_STATE(624)] = 3973, + [SMALL_STATE(625)] = 4037, + [SMALL_STATE(626)] = 4101, + [SMALL_STATE(627)] = 4165, + [SMALL_STATE(628)] = 4229, + [SMALL_STATE(629)] = 4293, + [SMALL_STATE(630)] = 4357, + [SMALL_STATE(631)] = 4435, + [SMALL_STATE(632)] = 4499, + [SMALL_STATE(633)] = 4570, + [SMALL_STATE(634)] = 4641, + [SMALL_STATE(635)] = 4712, + [SMALL_STATE(636)] = 4789, + [SMALL_STATE(637)] = 4860, + [SMALL_STATE(638)] = 4937, + [SMALL_STATE(639)] = 5009, + [SMALL_STATE(640)] = 5081, + [SMALL_STATE(641)] = 5151, + [SMALL_STATE(642)] = 5221, + [SMALL_STATE(643)] = 5293, + [SMALL_STATE(644)] = 5364, + [SMALL_STATE(645)] = 5425, + [SMALL_STATE(646)] = 5490, + [SMALL_STATE(647)] = 5587, + [SMALL_STATE(648)] = 5652, + [SMALL_STATE(649)] = 5711, + [SMALL_STATE(650)] = 5770, + [SMALL_STATE(651)] = 5867, + [SMALL_STATE(652)] = 5932, + [SMALL_STATE(653)] = 5991, + [SMALL_STATE(654)] = 6050, + [SMALL_STATE(655)] = 6115, + [SMALL_STATE(656)] = 6178, + [SMALL_STATE(657)] = 6237, + [SMALL_STATE(658)] = 6292, + [SMALL_STATE(659)] = 6346, + [SMALL_STATE(660)] = 6400, + [SMALL_STATE(661)] = 6454, + [SMALL_STATE(662)] = 6508, + [SMALL_STATE(663)] = 6562, + [SMALL_STATE(664)] = 6616, + [SMALL_STATE(665)] = 6670, + [SMALL_STATE(666)] = 6766, + [SMALL_STATE(667)] = 6820, + [SMALL_STATE(668)] = 6874, + [SMALL_STATE(669)] = 6928, + [SMALL_STATE(670)] = 6982, + [SMALL_STATE(671)] = 7036, + [SMALL_STATE(672)] = 7090, + [SMALL_STATE(673)] = 7186, + [SMALL_STATE(674)] = 7240, + [SMALL_STATE(675)] = 7298, + [SMALL_STATE(676)] = 7352, + [SMALL_STATE(677)] = 7406, + [SMALL_STATE(678)] = 7460, + [SMALL_STATE(679)] = 7514, + [SMALL_STATE(680)] = 7569, + [SMALL_STATE(681)] = 7626, + [SMALL_STATE(682)] = 7681, + [SMALL_STATE(683)] = 7736, + [SMALL_STATE(684)] = 7793, + [SMALL_STATE(685)] = 7852, + [SMALL_STATE(686)] = 7909, + [SMALL_STATE(687)] = 7966, + [SMALL_STATE(688)] = 8063, + [SMALL_STATE(689)] = 8120, + [SMALL_STATE(690)] = 8211, + [SMALL_STATE(691)] = 8268, + [SMALL_STATE(692)] = 8325, + [SMALL_STATE(693)] = 8384, + [SMALL_STATE(694)] = 8443, + [SMALL_STATE(695)] = 8500, + [SMALL_STATE(696)] = 8555, + [SMALL_STATE(697)] = 8612, + [SMALL_STATE(698)] = 8707, + [SMALL_STATE(699)] = 8762, + [SMALL_STATE(700)] = 8821, + [SMALL_STATE(701)] = 8918, + [SMALL_STATE(702)] = 8973, + [SMALL_STATE(703)] = 9068, + [SMALL_STATE(704)] = 9159, + [SMALL_STATE(705)] = 9218, + [SMALL_STATE(706)] = 9309, + [SMALL_STATE(707)] = 9368, + [SMALL_STATE(708)] = 9425, + [SMALL_STATE(709)] = 9482, + [SMALL_STATE(710)] = 9539, + [SMALL_STATE(711)] = 9596, + [SMALL_STATE(712)] = 9655, + [SMALL_STATE(713)] = 9714, + [SMALL_STATE(714)] = 9773, + [SMALL_STATE(715)] = 9832, + [SMALL_STATE(716)] = 9891, + [SMALL_STATE(717)] = 9950, + [SMALL_STATE(718)] = 10002, + [SMALL_STATE(719)] = 10054, + [SMALL_STATE(720)] = 10106, + [SMALL_STATE(721)] = 10158, + [SMALL_STATE(722)] = 10210, + [SMALL_STATE(723)] = 10302, + [SMALL_STATE(724)] = 10354, + [SMALL_STATE(725)] = 10448, + [SMALL_STATE(726)] = 10542, + [SMALL_STATE(727)] = 10594, + [SMALL_STATE(728)] = 10646, + [SMALL_STATE(729)] = 10698, + [SMALL_STATE(730)] = 10750, + [SMALL_STATE(731)] = 10802, + [SMALL_STATE(732)] = 10856, + [SMALL_STATE(733)] = 10950, + [SMALL_STATE(734)] = 11044, + [SMALL_STATE(735)] = 11096, + [SMALL_STATE(736)] = 11150, + [SMALL_STATE(737)] = 11202, + [SMALL_STATE(738)] = 11254, + [SMALL_STATE(739)] = 11306, + [SMALL_STATE(740)] = 11358, + [SMALL_STATE(741)] = 11410, + [SMALL_STATE(742)] = 11462, + [SMALL_STATE(743)] = 11514, + [SMALL_STATE(744)] = 11566, + [SMALL_STATE(745)] = 11618, + [SMALL_STATE(746)] = 11670, + [SMALL_STATE(747)] = 11722, + [SMALL_STATE(748)] = 11774, + [SMALL_STATE(749)] = 11826, + [SMALL_STATE(750)] = 11878, + [SMALL_STATE(751)] = 11930, + [SMALL_STATE(752)] = 11982, + [SMALL_STATE(753)] = 12034, + [SMALL_STATE(754)] = 12086, + [SMALL_STATE(755)] = 12138, + [SMALL_STATE(756)] = 12190, + [SMALL_STATE(757)] = 12242, + [SMALL_STATE(758)] = 12294, + [SMALL_STATE(759)] = 12346, + [SMALL_STATE(760)] = 12398, + [SMALL_STATE(761)] = 12450, + [SMALL_STATE(762)] = 12502, + [SMALL_STATE(763)] = 12557, + [SMALL_STATE(764)] = 12610, + [SMALL_STATE(765)] = 12667, + [SMALL_STATE(766)] = 12722, + [SMALL_STATE(767)] = 12777, + [SMALL_STATE(768)] = 12832, + [SMALL_STATE(769)] = 12887, + [SMALL_STATE(770)] = 12940, + [SMALL_STATE(771)] = 12993, + [SMALL_STATE(772)] = 13046, + [SMALL_STATE(773)] = 13107, + [SMALL_STATE(774)] = 13198, + [SMALL_STATE(775)] = 13253, + [SMALL_STATE(776)] = 13304, + [SMALL_STATE(777)] = 13355, + [SMALL_STATE(778)] = 13416, + [SMALL_STATE(779)] = 13475, + [SMALL_STATE(780)] = 13536, + [SMALL_STATE(781)] = 13597, + [SMALL_STATE(782)] = 13650, + [SMALL_STATE(783)] = 13712, + [SMALL_STATE(784)] = 13762, + [SMALL_STATE(785)] = 13812, + [SMALL_STATE(786)] = 13874, + [SMALL_STATE(787)] = 13924, + [SMALL_STATE(788)] = 13974, + [SMALL_STATE(789)] = 14024, + [SMALL_STATE(790)] = 14074, + [SMALL_STATE(791)] = 14124, + [SMALL_STATE(792)] = 14174, + [SMALL_STATE(793)] = 14224, + [SMALL_STATE(794)] = 14274, + [SMALL_STATE(795)] = 14324, + [SMALL_STATE(796)] = 14374, + [SMALL_STATE(797)] = 14424, + [SMALL_STATE(798)] = 14474, + [SMALL_STATE(799)] = 14524, + [SMALL_STATE(800)] = 14574, + [SMALL_STATE(801)] = 14636, + [SMALL_STATE(802)] = 14686, + [SMALL_STATE(803)] = 14736, + [SMALL_STATE(804)] = 14791, + [SMALL_STATE(805)] = 14842, + [SMALL_STATE(806)] = 14897, + [SMALL_STATE(807)] = 14950, + [SMALL_STATE(808)] = 15005, + [SMALL_STATE(809)] = 15056, + [SMALL_STATE(810)] = 15107, + [SMALL_STATE(811)] = 15190, + [SMALL_STATE(812)] = 15241, + [SMALL_STATE(813)] = 15324, + [SMALL_STATE(814)] = 15379, + [SMALL_STATE(815)] = 15428, + [SMALL_STATE(816)] = 15483, + [SMALL_STATE(817)] = 15538, + [SMALL_STATE(818)] = 15593, + [SMALL_STATE(819)] = 15646, + [SMALL_STATE(820)] = 15729, + [SMALL_STATE(821)] = 15782, + [SMALL_STATE(822)] = 15865, + [SMALL_STATE(823)] = 15914, + [SMALL_STATE(824)] = 15997, + [SMALL_STATE(825)] = 16050, + [SMALL_STATE(826)] = 16103, + [SMALL_STATE(827)] = 16186, + [SMALL_STATE(828)] = 16237, + [SMALL_STATE(829)] = 16292, + [SMALL_STATE(830)] = 16347, + [SMALL_STATE(831)] = 16398, + [SMALL_STATE(832)] = 16451, + [SMALL_STATE(833)] = 16504, + [SMALL_STATE(834)] = 16557, + [SMALL_STATE(835)] = 16612, + [SMALL_STATE(836)] = 16663, + [SMALL_STATE(837)] = 16746, + [SMALL_STATE(838)] = 16799, + [SMALL_STATE(839)] = 16852, + [SMALL_STATE(840)] = 16935, + [SMALL_STATE(841)] = 16990, + [SMALL_STATE(842)] = 17043, + [SMALL_STATE(843)] = 17098, + [SMALL_STATE(844)] = 17151, + [SMALL_STATE(845)] = 17234, + [SMALL_STATE(846)] = 17283, + [SMALL_STATE(847)] = 17366, + [SMALL_STATE(848)] = 17449, + [SMALL_STATE(849)] = 17532, + [SMALL_STATE(850)] = 17585, + [SMALL_STATE(851)] = 17668, + [SMALL_STATE(852)] = 17717, + [SMALL_STATE(853)] = 17800, + [SMALL_STATE(854)] = 17883, + [SMALL_STATE(855)] = 17931, + [SMALL_STATE(856)] = 17979, + [SMALL_STATE(857)] = 18027, + [SMALL_STATE(858)] = 18075, + [SMALL_STATE(859)] = 18123, + [SMALL_STATE(860)] = 18171, + [SMALL_STATE(861)] = 18219, + [SMALL_STATE(862)] = 18267, + [SMALL_STATE(863)] = 18315, + [SMALL_STATE(864)] = 18363, + [SMALL_STATE(865)] = 18411, + [SMALL_STATE(866)] = 18459, + [SMALL_STATE(867)] = 18507, + [SMALL_STATE(868)] = 18557, + [SMALL_STATE(869)] = 18605, + [SMALL_STATE(870)] = 18653, + [SMALL_STATE(871)] = 18701, + [SMALL_STATE(872)] = 18751, + [SMALL_STATE(873)] = 18799, + [SMALL_STATE(874)] = 18849, + [SMALL_STATE(875)] = 18897, + [SMALL_STATE(876)] = 18945, + [SMALL_STATE(877)] = 18997, + [SMALL_STATE(878)] = 19045, + [SMALL_STATE(879)] = 19093, + [SMALL_STATE(880)] = 19141, + [SMALL_STATE(881)] = 19189, + [SMALL_STATE(882)] = 19237, + [SMALL_STATE(883)] = 19285, + [SMALL_STATE(884)] = 19333, + [SMALL_STATE(885)] = 19381, + [SMALL_STATE(886)] = 19429, + [SMALL_STATE(887)] = 19477, + [SMALL_STATE(888)] = 19525, + [SMALL_STATE(889)] = 19573, + [SMALL_STATE(890)] = 19621, + [SMALL_STATE(891)] = 19669, + [SMALL_STATE(892)] = 19717, + [SMALL_STATE(893)] = 19765, + [SMALL_STATE(894)] = 19813, + [SMALL_STATE(895)] = 19861, + [SMALL_STATE(896)] = 19909, + [SMALL_STATE(897)] = 19958, + [SMALL_STATE(898)] = 20007, + [SMALL_STATE(899)] = 20056, + [SMALL_STATE(900)] = 20105, + [SMALL_STATE(901)] = 20154, + [SMALL_STATE(902)] = 20200, + [SMALL_STATE(903)] = 20246, + [SMALL_STATE(904)] = 20292, + [SMALL_STATE(905)] = 20338, + [SMALL_STATE(906)] = 20384, + [SMALL_STATE(907)] = 20430, + [SMALL_STATE(908)] = 20476, + [SMALL_STATE(909)] = 20522, + [SMALL_STATE(910)] = 20568, + [SMALL_STATE(911)] = 20614, + [SMALL_STATE(912)] = 20660, + [SMALL_STATE(913)] = 20706, + [SMALL_STATE(914)] = 20752, + [SMALL_STATE(915)] = 20798, + [SMALL_STATE(916)] = 20844, + [SMALL_STATE(917)] = 20890, + [SMALL_STATE(918)] = 20936, + [SMALL_STATE(919)] = 20982, + [SMALL_STATE(920)] = 21028, + [SMALL_STATE(921)] = 21074, + [SMALL_STATE(922)] = 21120, + [SMALL_STATE(923)] = 21168, + [SMALL_STATE(924)] = 21214, + [SMALL_STATE(925)] = 21260, + [SMALL_STATE(926)] = 21306, + [SMALL_STATE(927)] = 21352, + [SMALL_STATE(928)] = 21398, + [SMALL_STATE(929)] = 21444, + [SMALL_STATE(930)] = 21490, + [SMALL_STATE(931)] = 21536, + [SMALL_STATE(932)] = 21582, + [SMALL_STATE(933)] = 21628, + [SMALL_STATE(934)] = 21674, + [SMALL_STATE(935)] = 21720, + [SMALL_STATE(936)] = 21766, + [SMALL_STATE(937)] = 21812, + [SMALL_STATE(938)] = 21858, + [SMALL_STATE(939)] = 21904, + [SMALL_STATE(940)] = 21950, + [SMALL_STATE(941)] = 21996, + [SMALL_STATE(942)] = 22042, + [SMALL_STATE(943)] = 22088, + [SMALL_STATE(944)] = 22134, + [SMALL_STATE(945)] = 22180, + [SMALL_STATE(946)] = 22226, + [SMALL_STATE(947)] = 22272, + [SMALL_STATE(948)] = 22318, + [SMALL_STATE(949)] = 22364, + [SMALL_STATE(950)] = 22410, + [SMALL_STATE(951)] = 22456, + [SMALL_STATE(952)] = 22502, + [SMALL_STATE(953)] = 22548, + [SMALL_STATE(954)] = 22594, + [SMALL_STATE(955)] = 22640, + [SMALL_STATE(956)] = 22686, + [SMALL_STATE(957)] = 22732, + [SMALL_STATE(958)] = 22778, + [SMALL_STATE(959)] = 22824, + [SMALL_STATE(960)] = 22870, + [SMALL_STATE(961)] = 22916, + [SMALL_STATE(962)] = 22962, + [SMALL_STATE(963)] = 23008, + [SMALL_STATE(964)] = 23054, + [SMALL_STATE(965)] = 23100, + [SMALL_STATE(966)] = 23145, + [SMALL_STATE(967)] = 23190, + [SMALL_STATE(968)] = 23256, + [SMALL_STATE(969)] = 23320, + [SMALL_STATE(970)] = 23400, + [SMALL_STATE(971)] = 23480, + [SMALL_STATE(972)] = 23556, + [SMALL_STATE(973)] = 23630, + [SMALL_STATE(974)] = 23710, + [SMALL_STATE(975)] = 23784, + [SMALL_STATE(976)] = 23836, + [SMALL_STATE(977)] = 23916, + [SMALL_STATE(978)] = 23966, + [SMALL_STATE(979)] = 24020, + [SMALL_STATE(980)] = 24078, + [SMALL_STATE(981)] = 24140, + [SMALL_STATE(982)] = 24220, + [SMALL_STATE(983)] = 24288, + [SMALL_STATE(984)] = 24362, + [SMALL_STATE(985)] = 24444, + [SMALL_STATE(986)] = 24514, + [SMALL_STATE(987)] = 24594, + [SMALL_STATE(988)] = 24670, + [SMALL_STATE(989)] = 24750, + [SMALL_STATE(990)] = 24828, + [SMALL_STATE(991)] = 24908, + [SMALL_STATE(992)] = 24954, + [SMALL_STATE(993)] = 25034, + [SMALL_STATE(994)] = 25108, + [SMALL_STATE(995)] = 25182, + [SMALL_STATE(996)] = 25256, + [SMALL_STATE(997)] = 25330, + [SMALL_STATE(998)] = 25376, + [SMALL_STATE(999)] = 25424, + [SMALL_STATE(1000)] = 25470, + [SMALL_STATE(1001)] = 25550, + [SMALL_STATE(1002)] = 25595, + [SMALL_STATE(1003)] = 25668, + [SMALL_STATE(1004)] = 25747, + [SMALL_STATE(1005)] = 25826, + [SMALL_STATE(1006)] = 25899, + [SMALL_STATE(1007)] = 25978, + [SMALL_STATE(1008)] = 26057, + [SMALL_STATE(1009)] = 26102, + [SMALL_STATE(1010)] = 26149, + [SMALL_STATE(1011)] = 26224, + [SMALL_STATE(1012)] = 26303, + [SMALL_STATE(1013)] = 26354, + [SMALL_STATE(1014)] = 26427, + [SMALL_STATE(1015)] = 26472, + [SMALL_STATE(1016)] = 26545, + [SMALL_STATE(1017)] = 26618, + [SMALL_STATE(1018)] = 26697, + [SMALL_STATE(1019)] = 26754, + [SMALL_STATE(1020)] = 26833, + [SMALL_STATE(1021)] = 26896, + [SMALL_STATE(1022)] = 26949, + [SMALL_STATE(1023)] = 27016, + [SMALL_STATE(1024)] = 27095, + [SMALL_STATE(1025)] = 27174, + [SMALL_STATE(1026)] = 27243, + [SMALL_STATE(1027)] = 27292, + [SMALL_STATE(1028)] = 27369, + [SMALL_STATE(1029)] = 27430, + [SMALL_STATE(1030)] = 27503, + [SMALL_STATE(1031)] = 27568, + [SMALL_STATE(1032)] = 27641, + [SMALL_STATE(1033)] = 27722, + [SMALL_STATE(1034)] = 27801, + [SMALL_STATE(1035)] = 27843, + [SMALL_STATE(1036)] = 27885, + [SMALL_STATE(1037)] = 27963, + [SMALL_STATE(1038)] = 28005, + [SMALL_STATE(1039)] = 28047, + [SMALL_STATE(1040)] = 28089, + [SMALL_STATE(1041)] = 28131, + [SMALL_STATE(1042)] = 28173, + [SMALL_STATE(1043)] = 28215, + [SMALL_STATE(1044)] = 28257, + [SMALL_STATE(1045)] = 28299, + [SMALL_STATE(1046)] = 28341, + [SMALL_STATE(1047)] = 28383, + [SMALL_STATE(1048)] = 28425, + [SMALL_STATE(1049)] = 28467, + [SMALL_STATE(1050)] = 28509, + [SMALL_STATE(1051)] = 28551, + [SMALL_STATE(1052)] = 28593, + [SMALL_STATE(1053)] = 28635, + [SMALL_STATE(1054)] = 28677, + [SMALL_STATE(1055)] = 28719, + [SMALL_STATE(1056)] = 28761, + [SMALL_STATE(1057)] = 28803, + [SMALL_STATE(1058)] = 28881, + [SMALL_STATE(1059)] = 28937, + [SMALL_STATE(1060)] = 28979, + [SMALL_STATE(1061)] = 29021, + [SMALL_STATE(1062)] = 29101, + [SMALL_STATE(1063)] = 29143, + [SMALL_STATE(1064)] = 29185, + [SMALL_STATE(1065)] = 29227, + [SMALL_STATE(1066)] = 29269, + [SMALL_STATE(1067)] = 29347, + [SMALL_STATE(1068)] = 29419, + [SMALL_STATE(1069)] = 29491, + [SMALL_STATE(1070)] = 29533, + [SMALL_STATE(1071)] = 29575, + [SMALL_STATE(1072)] = 29653, + [SMALL_STATE(1073)] = 29731, + [SMALL_STATE(1074)] = 29809, + [SMALL_STATE(1075)] = 29851, + [SMALL_STATE(1076)] = 29929, + [SMALL_STATE(1077)] = 29971, + [SMALL_STATE(1078)] = 30013, + [SMALL_STATE(1079)] = 30057, + [SMALL_STATE(1080)] = 30099, + [SMALL_STATE(1081)] = 30141, + [SMALL_STATE(1082)] = 30183, + [SMALL_STATE(1083)] = 30227, + [SMALL_STATE(1084)] = 30269, + [SMALL_STATE(1085)] = 30319, + [SMALL_STATE(1086)] = 30367, + [SMALL_STATE(1087)] = 30419, + [SMALL_STATE(1088)] = 30475, + [SMALL_STATE(1089)] = 30519, + [SMALL_STATE(1090)] = 30581, + [SMALL_STATE(1091)] = 30647, + [SMALL_STATE(1092)] = 30715, + [SMALL_STATE(1093)] = 30757, + [SMALL_STATE(1094)] = 30799, + [SMALL_STATE(1095)] = 30873, + [SMALL_STATE(1096)] = 30949, + [SMALL_STATE(1097)] = 30991, + [SMALL_STATE(1098)] = 31063, + [SMALL_STATE(1099)] = 31135, + [SMALL_STATE(1100)] = 31177, + [SMALL_STATE(1101)] = 31219, + [SMALL_STATE(1102)] = 31291, + [SMALL_STATE(1103)] = 31337, + [SMALL_STATE(1104)] = 31401, + [SMALL_STATE(1105)] = 31443, + [SMALL_STATE(1106)] = 31485, + [SMALL_STATE(1107)] = 31545, + [SMALL_STATE(1108)] = 31587, + [SMALL_STATE(1109)] = 31629, + [SMALL_STATE(1110)] = 31671, + [SMALL_STATE(1111)] = 31713, + [SMALL_STATE(1112)] = 31755, + [SMALL_STATE(1113)] = 31797, + [SMALL_STATE(1114)] = 31841, + [SMALL_STATE(1115)] = 31919, + [SMALL_STATE(1116)] = 31997, + [SMALL_STATE(1117)] = 32039, + [SMALL_STATE(1118)] = 32081, + [SMALL_STATE(1119)] = 32123, + [SMALL_STATE(1120)] = 32165, + [SMALL_STATE(1121)] = 32207, + [SMALL_STATE(1122)] = 32249, + [SMALL_STATE(1123)] = 32291, + [SMALL_STATE(1124)] = 32333, + [SMALL_STATE(1125)] = 32375, + [SMALL_STATE(1126)] = 32417, + [SMALL_STATE(1127)] = 32495, + [SMALL_STATE(1128)] = 32537, + [SMALL_STATE(1129)] = 32579, + [SMALL_STATE(1130)] = 32621, + [SMALL_STATE(1131)] = 32663, + [SMALL_STATE(1132)] = 32705, + [SMALL_STATE(1133)] = 32777, + [SMALL_STATE(1134)] = 32849, + [SMALL_STATE(1135)] = 32912, + [SMALL_STATE(1136)] = 32957, + [SMALL_STATE(1137)] = 33028, + [SMALL_STATE(1138)] = 33105, + [SMALL_STATE(1139)] = 33152, + [SMALL_STATE(1140)] = 33207, + [SMALL_STATE(1141)] = 33256, + [SMALL_STATE(1142)] = 33333, + [SMALL_STATE(1143)] = 33404, + [SMALL_STATE(1144)] = 33481, + [SMALL_STATE(1145)] = 33558, + [SMALL_STATE(1146)] = 33635, + [SMALL_STATE(1147)] = 33712, + [SMALL_STATE(1148)] = 33789, + [SMALL_STATE(1149)] = 33864, + [SMALL_STATE(1150)] = 33935, + [SMALL_STATE(1151)] = 34014, + [SMALL_STATE(1152)] = 34057, + [SMALL_STATE(1153)] = 34130, + [SMALL_STATE(1154)] = 34201, + [SMALL_STATE(1155)] = 34266, + [SMALL_STATE(1156)] = 34309, + [SMALL_STATE(1157)] = 34386, + [SMALL_STATE(1158)] = 34429, + [SMALL_STATE(1159)] = 34490, + [SMALL_STATE(1160)] = 34541, + [SMALL_STATE(1161)] = 34612, + [SMALL_STATE(1162)] = 34683, + [SMALL_STATE(1163)] = 34742, + [SMALL_STATE(1164)] = 34809, + [SMALL_STATE(1165)] = 34880, + [SMALL_STATE(1166)] = 34957, + [SMALL_STATE(1167)] = 35034, + [SMALL_STATE(1168)] = 35111, + [SMALL_STATE(1169)] = 35188, + [SMALL_STATE(1170)] = 35263, + [SMALL_STATE(1171)] = 35338, + [SMALL_STATE(1172)] = 35413, + [SMALL_STATE(1173)] = 35488, + [SMALL_STATE(1174)] = 35567, + [SMALL_STATE(1175)] = 35642, + [SMALL_STATE(1176)] = 35707, + [SMALL_STATE(1177)] = 35782, + [SMALL_STATE(1178)] = 35857, + [SMALL_STATE(1179)] = 35934, + [SMALL_STATE(1180)] = 36009, + [SMALL_STATE(1181)] = 36084, + [SMALL_STATE(1182)] = 36161, + [SMALL_STATE(1183)] = 36236, + [SMALL_STATE(1184)] = 36311, + [SMALL_STATE(1185)] = 36388, + [SMALL_STATE(1186)] = 36453, + [SMALL_STATE(1187)] = 36528, + [SMALL_STATE(1188)] = 36604, + [SMALL_STATE(1189)] = 36678, + [SMALL_STATE(1190)] = 36752, + [SMALL_STATE(1191)] = 36826, + [SMALL_STATE(1192)] = 36900, + [SMALL_STATE(1193)] = 36974, + [SMALL_STATE(1194)] = 37048, + [SMALL_STATE(1195)] = 37122, + [SMALL_STATE(1196)] = 37196, + [SMALL_STATE(1197)] = 37270, + [SMALL_STATE(1198)] = 37344, + [SMALL_STATE(1199)] = 37418, + [SMALL_STATE(1200)] = 37492, + [SMALL_STATE(1201)] = 37566, + [SMALL_STATE(1202)] = 37642, + [SMALL_STATE(1203)] = 37718, + [SMALL_STATE(1204)] = 37792, + [SMALL_STATE(1205)] = 37866, + [SMALL_STATE(1206)] = 37940, + [SMALL_STATE(1207)] = 38014, + [SMALL_STATE(1208)] = 38088, + [SMALL_STATE(1209)] = 38162, + [SMALL_STATE(1210)] = 38236, + [SMALL_STATE(1211)] = 38310, + [SMALL_STATE(1212)] = 38384, + [SMALL_STATE(1213)] = 38460, + [SMALL_STATE(1214)] = 38536, + [SMALL_STATE(1215)] = 38610, + [SMALL_STATE(1216)] = 38684, + [SMALL_STATE(1217)] = 38760, + [SMALL_STATE(1218)] = 38834, + [SMALL_STATE(1219)] = 38908, + [SMALL_STATE(1220)] = 38982, + [SMALL_STATE(1221)] = 39026, + [SMALL_STATE(1222)] = 39100, + [SMALL_STATE(1223)] = 39176, + [SMALL_STATE(1224)] = 39250, + [SMALL_STATE(1225)] = 39326, + [SMALL_STATE(1226)] = 39400, + [SMALL_STATE(1227)] = 39474, + [SMALL_STATE(1228)] = 39548, + [SMALL_STATE(1229)] = 39592, + [SMALL_STATE(1230)] = 39665, + [SMALL_STATE(1231)] = 39738, + [SMALL_STATE(1232)] = 39811, + [SMALL_STATE(1233)] = 39884, + [SMALL_STATE(1234)] = 39957, + [SMALL_STATE(1235)] = 40030, + [SMALL_STATE(1236)] = 40103, + [SMALL_STATE(1237)] = 40162, + [SMALL_STATE(1238)] = 40235, + [SMALL_STATE(1239)] = 40308, + [SMALL_STATE(1240)] = 40345, + [SMALL_STATE(1241)] = 40418, + [SMALL_STATE(1242)] = 40483, + [SMALL_STATE(1243)] = 40542, + [SMALL_STATE(1244)] = 40615, + [SMALL_STATE(1245)] = 40680, + [SMALL_STATE(1246)] = 40745, + [SMALL_STATE(1247)] = 40818, + [SMALL_STATE(1248)] = 40891, + [SMALL_STATE(1249)] = 40964, + [SMALL_STATE(1250)] = 41037, + [SMALL_STATE(1251)] = 41110, + [SMALL_STATE(1252)] = 41183, + [SMALL_STATE(1253)] = 41256, + [SMALL_STATE(1254)] = 41329, + [SMALL_STATE(1255)] = 41402, + [SMALL_STATE(1256)] = 41475, + [SMALL_STATE(1257)] = 41548, + [SMALL_STATE(1258)] = 41621, + [SMALL_STATE(1259)] = 41694, + [SMALL_STATE(1260)] = 41767, + [SMALL_STATE(1261)] = 41840, + [SMALL_STATE(1262)] = 41913, + [SMALL_STATE(1263)] = 41986, + [SMALL_STATE(1264)] = 42059, + [SMALL_STATE(1265)] = 42132, + [SMALL_STATE(1266)] = 42205, + [SMALL_STATE(1267)] = 42278, + [SMALL_STATE(1268)] = 42351, + [SMALL_STATE(1269)] = 42424, + [SMALL_STATE(1270)] = 42497, + [SMALL_STATE(1271)] = 42570, + [SMALL_STATE(1272)] = 42643, + [SMALL_STATE(1273)] = 42716, + [SMALL_STATE(1274)] = 42789, + [SMALL_STATE(1275)] = 42862, + [SMALL_STATE(1276)] = 42935, + [SMALL_STATE(1277)] = 43000, + [SMALL_STATE(1278)] = 43073, + [SMALL_STATE(1279)] = 43146, + [SMALL_STATE(1280)] = 43219, + [SMALL_STATE(1281)] = 43292, + [SMALL_STATE(1282)] = 43365, + [SMALL_STATE(1283)] = 43438, + [SMALL_STATE(1284)] = 43511, + [SMALL_STATE(1285)] = 43584, + [SMALL_STATE(1286)] = 43657, + [SMALL_STATE(1287)] = 43730, + [SMALL_STATE(1288)] = 43803, + [SMALL_STATE(1289)] = 43876, + [SMALL_STATE(1290)] = 43949, + [SMALL_STATE(1291)] = 44022, + [SMALL_STATE(1292)] = 44095, + [SMALL_STATE(1293)] = 44168, + [SMALL_STATE(1294)] = 44241, + [SMALL_STATE(1295)] = 44314, + [SMALL_STATE(1296)] = 44387, + [SMALL_STATE(1297)] = 44460, + [SMALL_STATE(1298)] = 44533, + [SMALL_STATE(1299)] = 44606, + [SMALL_STATE(1300)] = 44671, + [SMALL_STATE(1301)] = 44744, + [SMALL_STATE(1302)] = 44817, + [SMALL_STATE(1303)] = 44853, + [SMALL_STATE(1304)] = 44891, + [SMALL_STATE(1305)] = 44947, + [SMALL_STATE(1306)] = 45003, + [SMALL_STATE(1307)] = 45039, + [SMALL_STATE(1308)] = 45074, + [SMALL_STATE(1309)] = 45109, + [SMALL_STATE(1310)] = 45147, + [SMALL_STATE(1311)] = 45185, + [SMALL_STATE(1312)] = 45217, + [SMALL_STATE(1313)] = 45263, + [SMALL_STATE(1314)] = 45309, + [SMALL_STATE(1315)] = 45355, + [SMALL_STATE(1316)] = 45401, + [SMALL_STATE(1317)] = 45447, + [SMALL_STATE(1318)] = 45479, + [SMALL_STATE(1319)] = 45525, + [SMALL_STATE(1320)] = 45557, + [SMALL_STATE(1321)] = 45598, + [SMALL_STATE(1322)] = 45639, + [SMALL_STATE(1323)] = 45680, + [SMALL_STATE(1324)] = 45728, + [SMALL_STATE(1325)] = 45776, + [SMALL_STATE(1326)] = 45804, + [SMALL_STATE(1327)] = 45849, + [SMALL_STATE(1328)] = 45876, + [SMALL_STATE(1329)] = 45925, + [SMALL_STATE(1330)] = 45967, + [SMALL_STATE(1331)] = 46009, + [SMALL_STATE(1332)] = 46051, + [SMALL_STATE(1333)] = 46093, + [SMALL_STATE(1334)] = 46132, + [SMALL_STATE(1335)] = 46159, + [SMALL_STATE(1336)] = 46186, + [SMALL_STATE(1337)] = 46225, + [SMALL_STATE(1338)] = 46249, + [SMALL_STATE(1339)] = 46285, + [SMALL_STATE(1340)] = 46320, + [SMALL_STATE(1341)] = 46341, + [SMALL_STATE(1342)] = 46362, + [SMALL_STATE(1343)] = 46383, + [SMALL_STATE(1344)] = 46403, + [SMALL_STATE(1345)] = 46423, + [SMALL_STATE(1346)] = 46453, + [SMALL_STATE(1347)] = 46475, + [SMALL_STATE(1348)] = 46495, + [SMALL_STATE(1349)] = 46515, + [SMALL_STATE(1350)] = 46543, + [SMALL_STATE(1351)] = 46563, + [SMALL_STATE(1352)] = 46583, + [SMALL_STATE(1353)] = 46603, + [SMALL_STATE(1354)] = 46623, + [SMALL_STATE(1355)] = 46643, + [SMALL_STATE(1356)] = 46663, + [SMALL_STATE(1357)] = 46683, + [SMALL_STATE(1358)] = 46703, + [SMALL_STATE(1359)] = 46723, + [SMALL_STATE(1360)] = 46759, + [SMALL_STATE(1361)] = 46779, + [SMALL_STATE(1362)] = 46799, + [SMALL_STATE(1363)] = 46835, + [SMALL_STATE(1364)] = 46855, + [SMALL_STATE(1365)] = 46891, + [SMALL_STATE(1366)] = 46911, + [SMALL_STATE(1367)] = 46931, + [SMALL_STATE(1368)] = 46967, + [SMALL_STATE(1369)] = 47003, + [SMALL_STATE(1370)] = 47038, + [SMALL_STATE(1371)] = 47057, + [SMALL_STATE(1372)] = 47076, + [SMALL_STATE(1373)] = 47095, + [SMALL_STATE(1374)] = 47128, + [SMALL_STATE(1375)] = 47161, + [SMALL_STATE(1376)] = 47180, + [SMALL_STATE(1377)] = 47199, + [SMALL_STATE(1378)] = 47218, + [SMALL_STATE(1379)] = 47237, + [SMALL_STATE(1380)] = 47278, + [SMALL_STATE(1381)] = 47297, + [SMALL_STATE(1382)] = 47316, + [SMALL_STATE(1383)] = 47351, + [SMALL_STATE(1384)] = 47370, + [SMALL_STATE(1385)] = 47403, + [SMALL_STATE(1386)] = 47422, + [SMALL_STATE(1387)] = 47441, + [SMALL_STATE(1388)] = 47460, + [SMALL_STATE(1389)] = 47479, + [SMALL_STATE(1390)] = 47520, + [SMALL_STATE(1391)] = 47539, + [SMALL_STATE(1392)] = 47572, + [SMALL_STATE(1393)] = 47591, + [SMALL_STATE(1394)] = 47610, + [SMALL_STATE(1395)] = 47643, + [SMALL_STATE(1396)] = 47662, + [SMALL_STATE(1397)] = 47681, + [SMALL_STATE(1398)] = 47700, + [SMALL_STATE(1399)] = 47734, + [SMALL_STATE(1400)] = 47768, + [SMALL_STATE(1401)] = 47802, + [SMALL_STATE(1402)] = 47836, + [SMALL_STATE(1403)] = 47865, + [SMALL_STATE(1404)] = 47896, + [SMALL_STATE(1405)] = 47927, + [SMALL_STATE(1406)] = 47946, + [SMALL_STATE(1407)] = 47965, + [SMALL_STATE(1408)] = 47994, + [SMALL_STATE(1409)] = 48013, + [SMALL_STATE(1410)] = 48032, + [SMALL_STATE(1411)] = 48061, + [SMALL_STATE(1412)] = 48080, + [SMALL_STATE(1413)] = 48099, + [SMALL_STATE(1414)] = 48118, + [SMALL_STATE(1415)] = 48137, + [SMALL_STATE(1416)] = 48168, + [SMALL_STATE(1417)] = 48199, + [SMALL_STATE(1418)] = 48230, + [SMALL_STATE(1419)] = 48261, + [SMALL_STATE(1420)] = 48280, + [SMALL_STATE(1421)] = 48302, + [SMALL_STATE(1422)] = 48330, + [SMALL_STATE(1423)] = 48356, + [SMALL_STATE(1424)] = 48384, + [SMALL_STATE(1425)] = 48410, + [SMALL_STATE(1426)] = 48432, + [SMALL_STATE(1427)] = 48460, + [SMALL_STATE(1428)] = 48486, + [SMALL_STATE(1429)] = 48504, + [SMALL_STATE(1430)] = 48526, + [SMALL_STATE(1431)] = 48554, + [SMALL_STATE(1432)] = 48582, + [SMALL_STATE(1433)] = 48606, + [SMALL_STATE(1434)] = 48627, + [SMALL_STATE(1435)] = 48652, + [SMALL_STATE(1436)] = 48675, + [SMALL_STATE(1437)] = 48690, + [SMALL_STATE(1438)] = 48713, + [SMALL_STATE(1439)] = 48734, + [SMALL_STATE(1440)] = 48757, + [SMALL_STATE(1441)] = 48780, + [SMALL_STATE(1442)] = 48803, + [SMALL_STATE(1443)] = 48828, + [SMALL_STATE(1444)] = 48851, + [SMALL_STATE(1445)] = 48866, + [SMALL_STATE(1446)] = 48891, + [SMALL_STATE(1447)] = 48916, + [SMALL_STATE(1448)] = 48941, + [SMALL_STATE(1449)] = 48962, + [SMALL_STATE(1450)] = 48985, + [SMALL_STATE(1451)] = 49010, + [SMALL_STATE(1452)] = 49033, + [SMALL_STATE(1453)] = 49048, + [SMALL_STATE(1454)] = 49071, + [SMALL_STATE(1455)] = 49096, + [SMALL_STATE(1456)] = 49119, + [SMALL_STATE(1457)] = 49142, + [SMALL_STATE(1458)] = 49161, + [SMALL_STATE(1459)] = 49184, + [SMALL_STATE(1460)] = 49201, + [SMALL_STATE(1461)] = 49224, + [SMALL_STATE(1462)] = 49239, + [SMALL_STATE(1463)] = 49254, + [SMALL_STATE(1464)] = 49279, + [SMALL_STATE(1465)] = 49304, + [SMALL_STATE(1466)] = 49327, + [SMALL_STATE(1467)] = 49350, + [SMALL_STATE(1468)] = 49373, + [SMALL_STATE(1469)] = 49396, + [SMALL_STATE(1470)] = 49419, + [SMALL_STATE(1471)] = 49440, + [SMALL_STATE(1472)] = 49461, + [SMALL_STATE(1473)] = 49484, + [SMALL_STATE(1474)] = 49507, + [SMALL_STATE(1475)] = 49530, + [SMALL_STATE(1476)] = 49553, + [SMALL_STATE(1477)] = 49578, + [SMALL_STATE(1478)] = 49601, + [SMALL_STATE(1479)] = 49624, + [SMALL_STATE(1480)] = 49649, + [SMALL_STATE(1481)] = 49674, + [SMALL_STATE(1482)] = 49701, + [SMALL_STATE(1483)] = 49724, + [SMALL_STATE(1484)] = 49747, + [SMALL_STATE(1485)] = 49770, + [SMALL_STATE(1486)] = 49791, + [SMALL_STATE(1487)] = 49814, + [SMALL_STATE(1488)] = 49835, + [SMALL_STATE(1489)] = 49862, + [SMALL_STATE(1490)] = 49887, + [SMALL_STATE(1491)] = 49915, + [SMALL_STATE(1492)] = 49943, + [SMALL_STATE(1493)] = 49963, + [SMALL_STATE(1494)] = 49983, + [SMALL_STATE(1495)] = 50011, + [SMALL_STATE(1496)] = 50039, + [SMALL_STATE(1497)] = 50059, + [SMALL_STATE(1498)] = 50087, + [SMALL_STATE(1499)] = 50109, + [SMALL_STATE(1500)] = 50129, + [SMALL_STATE(1501)] = 50155, + [SMALL_STATE(1502)] = 50183, + [SMALL_STATE(1503)] = 50205, + [SMALL_STATE(1504)] = 50222, + [SMALL_STATE(1505)] = 50241, + [SMALL_STATE(1506)] = 50256, + [SMALL_STATE(1507)] = 50269, + [SMALL_STATE(1508)] = 50284, + [SMALL_STATE(1509)] = 50303, + [SMALL_STATE(1510)] = 50324, + [SMALL_STATE(1511)] = 50341, + [SMALL_STATE(1512)] = 50366, + [SMALL_STATE(1513)] = 50383, + [SMALL_STATE(1514)] = 50404, + [SMALL_STATE(1515)] = 50421, + [SMALL_STATE(1516)] = 50436, + [SMALL_STATE(1517)] = 50453, + [SMALL_STATE(1518)] = 50470, + [SMALL_STATE(1519)] = 50487, + [SMALL_STATE(1520)] = 50504, + [SMALL_STATE(1521)] = 50525, + [SMALL_STATE(1522)] = 50542, + [SMALL_STATE(1523)] = 50559, + [SMALL_STATE(1524)] = 50576, + [SMALL_STATE(1525)] = 50593, + [SMALL_STATE(1526)] = 50608, + [SMALL_STATE(1527)] = 50629, + [SMALL_STATE(1528)] = 50644, + [SMALL_STATE(1529)] = 50661, + [SMALL_STATE(1530)] = 50678, + [SMALL_STATE(1531)] = 50693, + [SMALL_STATE(1532)] = 50708, + [SMALL_STATE(1533)] = 50723, + [SMALL_STATE(1534)] = 50742, + [SMALL_STATE(1535)] = 50763, + [SMALL_STATE(1536)] = 50782, + [SMALL_STATE(1537)] = 50799, + [SMALL_STATE(1538)] = 50814, + [SMALL_STATE(1539)] = 50829, + [SMALL_STATE(1540)] = 50846, + [SMALL_STATE(1541)] = 50861, + [SMALL_STATE(1542)] = 50876, + [SMALL_STATE(1543)] = 50893, + [SMALL_STATE(1544)] = 50914, + [SMALL_STATE(1545)] = 50931, + [SMALL_STATE(1546)] = 50946, + [SMALL_STATE(1547)] = 50968, + [SMALL_STATE(1548)] = 50982, + [SMALL_STATE(1549)] = 51004, + [SMALL_STATE(1550)] = 51024, + [SMALL_STATE(1551)] = 51046, + [SMALL_STATE(1552)] = 51068, + [SMALL_STATE(1553)] = 51090, + [SMALL_STATE(1554)] = 51112, + [SMALL_STATE(1555)] = 51134, + [SMALL_STATE(1556)] = 51152, + [SMALL_STATE(1557)] = 51174, + [SMALL_STATE(1558)] = 51196, + [SMALL_STATE(1559)] = 51214, + [SMALL_STATE(1560)] = 51232, + [SMALL_STATE(1561)] = 51246, + [SMALL_STATE(1562)] = 51268, + [SMALL_STATE(1563)] = 51280, + [SMALL_STATE(1564)] = 51292, + [SMALL_STATE(1565)] = 51314, + [SMALL_STATE(1566)] = 51332, + [SMALL_STATE(1567)] = 51346, + [SMALL_STATE(1568)] = 51364, + [SMALL_STATE(1569)] = 51378, + [SMALL_STATE(1570)] = 51400, + [SMALL_STATE(1571)] = 51422, + [SMALL_STATE(1572)] = 51444, + [SMALL_STATE(1573)] = 51466, + [SMALL_STATE(1574)] = 51478, + [SMALL_STATE(1575)] = 51496, + [SMALL_STATE(1576)] = 51518, + [SMALL_STATE(1577)] = 51540, + [SMALL_STATE(1578)] = 51554, + [SMALL_STATE(1579)] = 51576, + [SMALL_STATE(1580)] = 51594, + [SMALL_STATE(1581)] = 51612, + [SMALL_STATE(1582)] = 51634, + [SMALL_STATE(1583)] = 51656, + [SMALL_STATE(1584)] = 51670, + [SMALL_STATE(1585)] = 51692, + [SMALL_STATE(1586)] = 51710, + [SMALL_STATE(1587)] = 51732, + [SMALL_STATE(1588)] = 51754, + [SMALL_STATE(1589)] = 51772, + [SMALL_STATE(1590)] = 51794, + [SMALL_STATE(1591)] = 51816, + [SMALL_STATE(1592)] = 51838, + [SMALL_STATE(1593)] = 51858, + [SMALL_STATE(1594)] = 51880, + [SMALL_STATE(1595)] = 51902, + [SMALL_STATE(1596)] = 51924, + [SMALL_STATE(1597)] = 51946, + [SMALL_STATE(1598)] = 51968, + [SMALL_STATE(1599)] = 51988, + [SMALL_STATE(1600)] = 52004, + [SMALL_STATE(1601)] = 52026, + [SMALL_STATE(1602)] = 52048, + [SMALL_STATE(1603)] = 52070, + [SMALL_STATE(1604)] = 52092, + [SMALL_STATE(1605)] = 52106, + [SMALL_STATE(1606)] = 52124, + [SMALL_STATE(1607)] = 52142, + [SMALL_STATE(1608)] = 52164, + [SMALL_STATE(1609)] = 52184, + [SMALL_STATE(1610)] = 52206, + [SMALL_STATE(1611)] = 52228, + [SMALL_STATE(1612)] = 52242, + [SMALL_STATE(1613)] = 52260, + [SMALL_STATE(1614)] = 52278, + [SMALL_STATE(1615)] = 52300, + [SMALL_STATE(1616)] = 52320, + [SMALL_STATE(1617)] = 52342, + [SMALL_STATE(1618)] = 52360, + [SMALL_STATE(1619)] = 52375, + [SMALL_STATE(1620)] = 52392, + [SMALL_STATE(1621)] = 52409, + [SMALL_STATE(1622)] = 52424, + [SMALL_STATE(1623)] = 52443, + [SMALL_STATE(1624)] = 52462, + [SMALL_STATE(1625)] = 52477, + [SMALL_STATE(1626)] = 52492, + [SMALL_STATE(1627)] = 52505, + [SMALL_STATE(1628)] = 52522, + [SMALL_STATE(1629)] = 52537, + [SMALL_STATE(1630)] = 52552, + [SMALL_STATE(1631)] = 52571, + [SMALL_STATE(1632)] = 52582, + [SMALL_STATE(1633)] = 52601, + [SMALL_STATE(1634)] = 52620, + [SMALL_STATE(1635)] = 52635, + [SMALL_STATE(1636)] = 52654, + [SMALL_STATE(1637)] = 52667, + [SMALL_STATE(1638)] = 52686, + [SMALL_STATE(1639)] = 52703, + [SMALL_STATE(1640)] = 52718, + [SMALL_STATE(1641)] = 52733, + [SMALL_STATE(1642)] = 52750, + [SMALL_STATE(1643)] = 52769, + [SMALL_STATE(1644)] = 52786, + [SMALL_STATE(1645)] = 52805, + [SMALL_STATE(1646)] = 52822, + [SMALL_STATE(1647)] = 52839, + [SMALL_STATE(1648)] = 52854, + [SMALL_STATE(1649)] = 52873, + [SMALL_STATE(1650)] = 52888, + [SMALL_STATE(1651)] = 52905, + [SMALL_STATE(1652)] = 52922, + [SMALL_STATE(1653)] = 52939, + [SMALL_STATE(1654)] = 52954, + [SMALL_STATE(1655)] = 52971, + [SMALL_STATE(1656)] = 52990, + [SMALL_STATE(1657)] = 53005, + [SMALL_STATE(1658)] = 53016, + [SMALL_STATE(1659)] = 53033, + [SMALL_STATE(1660)] = 53048, + [SMALL_STATE(1661)] = 53067, + [SMALL_STATE(1662)] = 53082, + [SMALL_STATE(1663)] = 53099, + [SMALL_STATE(1664)] = 53114, + [SMALL_STATE(1665)] = 53133, + [SMALL_STATE(1666)] = 53152, + [SMALL_STATE(1667)] = 53167, + [SMALL_STATE(1668)] = 53182, + [SMALL_STATE(1669)] = 53197, + [SMALL_STATE(1670)] = 53212, + [SMALL_STATE(1671)] = 53231, + [SMALL_STATE(1672)] = 53246, + [SMALL_STATE(1673)] = 53263, + [SMALL_STATE(1674)] = 53278, + [SMALL_STATE(1675)] = 53295, + [SMALL_STATE(1676)] = 53312, + [SMALL_STATE(1677)] = 53327, + [SMALL_STATE(1678)] = 53342, + [SMALL_STATE(1679)] = 53353, + [SMALL_STATE(1680)] = 53368, + [SMALL_STATE(1681)] = 53385, + [SMALL_STATE(1682)] = 53404, + [SMALL_STATE(1683)] = 53419, + [SMALL_STATE(1684)] = 53434, + [SMALL_STATE(1685)] = 53445, + [SMALL_STATE(1686)] = 53462, + [SMALL_STATE(1687)] = 53481, + [SMALL_STATE(1688)] = 53496, + [SMALL_STATE(1689)] = 53511, + [SMALL_STATE(1690)] = 53526, + [SMALL_STATE(1691)] = 53541, + [SMALL_STATE(1692)] = 53556, + [SMALL_STATE(1693)] = 53573, + [SMALL_STATE(1694)] = 53588, + [SMALL_STATE(1695)] = 53607, + [SMALL_STATE(1696)] = 53624, + [SMALL_STATE(1697)] = 53643, + [SMALL_STATE(1698)] = 53658, + [SMALL_STATE(1699)] = 53675, + [SMALL_STATE(1700)] = 53694, + [SMALL_STATE(1701)] = 53709, + [SMALL_STATE(1702)] = 53726, + [SMALL_STATE(1703)] = 53745, + [SMALL_STATE(1704)] = 53764, + [SMALL_STATE(1705)] = 53779, + [SMALL_STATE(1706)] = 53790, + [SMALL_STATE(1707)] = 53805, + [SMALL_STATE(1708)] = 53820, + [SMALL_STATE(1709)] = 53835, + [SMALL_STATE(1710)] = 53850, + [SMALL_STATE(1711)] = 53865, + [SMALL_STATE(1712)] = 53878, + [SMALL_STATE(1713)] = 53895, + [SMALL_STATE(1714)] = 53910, + [SMALL_STATE(1715)] = 53927, + [SMALL_STATE(1716)] = 53944, + [SMALL_STATE(1717)] = 53959, + [SMALL_STATE(1718)] = 53974, + [SMALL_STATE(1719)] = 53990, + [SMALL_STATE(1720)] = 54004, + [SMALL_STATE(1721)] = 54016, + [SMALL_STATE(1722)] = 54032, + [SMALL_STATE(1723)] = 54042, + [SMALL_STATE(1724)] = 54052, + [SMALL_STATE(1725)] = 54062, + [SMALL_STATE(1726)] = 54072, + [SMALL_STATE(1727)] = 54086, + [SMALL_STATE(1728)] = 54098, + [SMALL_STATE(1729)] = 54112, + [SMALL_STATE(1730)] = 54126, + [SMALL_STATE(1731)] = 54140, + [SMALL_STATE(1732)] = 54154, + [SMALL_STATE(1733)] = 54170, + [SMALL_STATE(1734)] = 54184, + [SMALL_STATE(1735)] = 54198, + [SMALL_STATE(1736)] = 54214, + [SMALL_STATE(1737)] = 54230, + [SMALL_STATE(1738)] = 54240, + [SMALL_STATE(1739)] = 54250, + [SMALL_STATE(1740)] = 54264, + [SMALL_STATE(1741)] = 54278, + [SMALL_STATE(1742)] = 54292, + [SMALL_STATE(1743)] = 54308, + [SMALL_STATE(1744)] = 54322, + [SMALL_STATE(1745)] = 54338, + [SMALL_STATE(1746)] = 54352, + [SMALL_STATE(1747)] = 54362, + [SMALL_STATE(1748)] = 54378, + [SMALL_STATE(1749)] = 54394, + [SMALL_STATE(1750)] = 54410, + [SMALL_STATE(1751)] = 54424, + [SMALL_STATE(1752)] = 54440, + [SMALL_STATE(1753)] = 54454, + [SMALL_STATE(1754)] = 54470, + [SMALL_STATE(1755)] = 54480, + [SMALL_STATE(1756)] = 54490, + [SMALL_STATE(1757)] = 54506, + [SMALL_STATE(1758)] = 54522, + [SMALL_STATE(1759)] = 54538, + [SMALL_STATE(1760)] = 54554, + [SMALL_STATE(1761)] = 54570, + [SMALL_STATE(1762)] = 54586, + [SMALL_STATE(1763)] = 54602, + [SMALL_STATE(1764)] = 54618, + [SMALL_STATE(1765)] = 54634, + [SMALL_STATE(1766)] = 54648, + [SMALL_STATE(1767)] = 54658, + [SMALL_STATE(1768)] = 54672, + [SMALL_STATE(1769)] = 54682, + [SMALL_STATE(1770)] = 54698, + [SMALL_STATE(1771)] = 54708, + [SMALL_STATE(1772)] = 54718, + [SMALL_STATE(1773)] = 54732, + [SMALL_STATE(1774)] = 54748, + [SMALL_STATE(1775)] = 54760, + [SMALL_STATE(1776)] = 54776, + [SMALL_STATE(1777)] = 54790, + [SMALL_STATE(1778)] = 54804, + [SMALL_STATE(1779)] = 54818, + [SMALL_STATE(1780)] = 54834, + [SMALL_STATE(1781)] = 54850, + [SMALL_STATE(1782)] = 54866, + [SMALL_STATE(1783)] = 54880, + [SMALL_STATE(1784)] = 54894, + [SMALL_STATE(1785)] = 54904, + [SMALL_STATE(1786)] = 54918, + [SMALL_STATE(1787)] = 54934, + [SMALL_STATE(1788)] = 54950, + [SMALL_STATE(1789)] = 54964, + [SMALL_STATE(1790)] = 54980, + [SMALL_STATE(1791)] = 54992, + [SMALL_STATE(1792)] = 55006, + [SMALL_STATE(1793)] = 55022, + [SMALL_STATE(1794)] = 55036, + [SMALL_STATE(1795)] = 55052, + [SMALL_STATE(1796)] = 55068, + [SMALL_STATE(1797)] = 55084, + [SMALL_STATE(1798)] = 55098, + [SMALL_STATE(1799)] = 55112, + [SMALL_STATE(1800)] = 55128, + [SMALL_STATE(1801)] = 55142, + [SMALL_STATE(1802)] = 55152, + [SMALL_STATE(1803)] = 55168, + [SMALL_STATE(1804)] = 55184, + [SMALL_STATE(1805)] = 55200, + [SMALL_STATE(1806)] = 55214, + [SMALL_STATE(1807)] = 55230, + [SMALL_STATE(1808)] = 55242, + [SMALL_STATE(1809)] = 55258, + [SMALL_STATE(1810)] = 55274, + [SMALL_STATE(1811)] = 55290, + [SMALL_STATE(1812)] = 55304, + [SMALL_STATE(1813)] = 55318, + [SMALL_STATE(1814)] = 55332, + [SMALL_STATE(1815)] = 55346, + [SMALL_STATE(1816)] = 55362, + [SMALL_STATE(1817)] = 55376, + [SMALL_STATE(1818)] = 55392, + [SMALL_STATE(1819)] = 55408, + [SMALL_STATE(1820)] = 55422, + [SMALL_STATE(1821)] = 55436, + [SMALL_STATE(1822)] = 55450, + [SMALL_STATE(1823)] = 55464, + [SMALL_STATE(1824)] = 55478, + [SMALL_STATE(1825)] = 55492, + [SMALL_STATE(1826)] = 55506, + [SMALL_STATE(1827)] = 55522, + [SMALL_STATE(1828)] = 55536, + [SMALL_STATE(1829)] = 55550, + [SMALL_STATE(1830)] = 55564, + [SMALL_STATE(1831)] = 55580, + [SMALL_STATE(1832)] = 55590, + [SMALL_STATE(1833)] = 55604, + [SMALL_STATE(1834)] = 55618, + [SMALL_STATE(1835)] = 55632, + [SMALL_STATE(1836)] = 55648, + [SMALL_STATE(1837)] = 55662, + [SMALL_STATE(1838)] = 55678, + [SMALL_STATE(1839)] = 55694, + [SMALL_STATE(1840)] = 55710, + [SMALL_STATE(1841)] = 55724, + [SMALL_STATE(1842)] = 55740, + [SMALL_STATE(1843)] = 55756, + [SMALL_STATE(1844)] = 55770, + [SMALL_STATE(1845)] = 55784, + [SMALL_STATE(1846)] = 55798, + [SMALL_STATE(1847)] = 55814, + [SMALL_STATE(1848)] = 55828, + [SMALL_STATE(1849)] = 55842, + [SMALL_STATE(1850)] = 55858, + [SMALL_STATE(1851)] = 55872, + [SMALL_STATE(1852)] = 55886, + [SMALL_STATE(1853)] = 55902, + [SMALL_STATE(1854)] = 55916, + [SMALL_STATE(1855)] = 55932, + [SMALL_STATE(1856)] = 55946, + [SMALL_STATE(1857)] = 55960, + [SMALL_STATE(1858)] = 55976, + [SMALL_STATE(1859)] = 55992, + [SMALL_STATE(1860)] = 56006, + [SMALL_STATE(1861)] = 56022, + [SMALL_STATE(1862)] = 56038, + [SMALL_STATE(1863)] = 56049, + [SMALL_STATE(1864)] = 56058, + [SMALL_STATE(1865)] = 56069, + [SMALL_STATE(1866)] = 56082, + [SMALL_STATE(1867)] = 56095, + [SMALL_STATE(1868)] = 56108, + [SMALL_STATE(1869)] = 56121, + [SMALL_STATE(1870)] = 56134, + [SMALL_STATE(1871)] = 56147, + [SMALL_STATE(1872)] = 56160, + [SMALL_STATE(1873)] = 56173, + [SMALL_STATE(1874)] = 56184, + [SMALL_STATE(1875)] = 56197, + [SMALL_STATE(1876)] = 56210, + [SMALL_STATE(1877)] = 56223, + [SMALL_STATE(1878)] = 56236, + [SMALL_STATE(1879)] = 56249, + [SMALL_STATE(1880)] = 56262, + [SMALL_STATE(1881)] = 56275, + [SMALL_STATE(1882)] = 56288, + [SMALL_STATE(1883)] = 56301, + [SMALL_STATE(1884)] = 56312, + [SMALL_STATE(1885)] = 56325, + [SMALL_STATE(1886)] = 56334, + [SMALL_STATE(1887)] = 56347, + [SMALL_STATE(1888)] = 56360, + [SMALL_STATE(1889)] = 56373, + [SMALL_STATE(1890)] = 56386, + [SMALL_STATE(1891)] = 56397, + [SMALL_STATE(1892)] = 56410, + [SMALL_STATE(1893)] = 56423, + [SMALL_STATE(1894)] = 56436, + [SMALL_STATE(1895)] = 56449, + [SMALL_STATE(1896)] = 56462, + [SMALL_STATE(1897)] = 56475, + [SMALL_STATE(1898)] = 56488, + [SMALL_STATE(1899)] = 56497, + [SMALL_STATE(1900)] = 56510, + [SMALL_STATE(1901)] = 56523, + [SMALL_STATE(1902)] = 56536, + [SMALL_STATE(1903)] = 56549, + [SMALL_STATE(1904)] = 56562, + [SMALL_STATE(1905)] = 56575, + [SMALL_STATE(1906)] = 56588, + [SMALL_STATE(1907)] = 56601, + [SMALL_STATE(1908)] = 56614, + [SMALL_STATE(1909)] = 56627, + [SMALL_STATE(1910)] = 56636, + [SMALL_STATE(1911)] = 56645, + [SMALL_STATE(1912)] = 56658, + [SMALL_STATE(1913)] = 56671, + [SMALL_STATE(1914)] = 56680, + [SMALL_STATE(1915)] = 56689, + [SMALL_STATE(1916)] = 56700, + [SMALL_STATE(1917)] = 56713, + [SMALL_STATE(1918)] = 56726, + [SMALL_STATE(1919)] = 56737, + [SMALL_STATE(1920)] = 56750, + [SMALL_STATE(1921)] = 56761, + [SMALL_STATE(1922)] = 56774, + [SMALL_STATE(1923)] = 56787, + [SMALL_STATE(1924)] = 56796, + [SMALL_STATE(1925)] = 56809, + [SMALL_STATE(1926)] = 56820, + [SMALL_STATE(1927)] = 56831, + [SMALL_STATE(1928)] = 56842, + [SMALL_STATE(1929)] = 56853, + [SMALL_STATE(1930)] = 56864, + [SMALL_STATE(1931)] = 56877, + [SMALL_STATE(1932)] = 56888, + [SMALL_STATE(1933)] = 56901, + [SMALL_STATE(1934)] = 56912, + [SMALL_STATE(1935)] = 56923, + [SMALL_STATE(1936)] = 56934, + [SMALL_STATE(1937)] = 56947, + [SMALL_STATE(1938)] = 56958, + [SMALL_STATE(1939)] = 56969, + [SMALL_STATE(1940)] = 56980, + [SMALL_STATE(1941)] = 56991, + [SMALL_STATE(1942)] = 57000, + [SMALL_STATE(1943)] = 57013, + [SMALL_STATE(1944)] = 57024, + [SMALL_STATE(1945)] = 57033, + [SMALL_STATE(1946)] = 57044, + [SMALL_STATE(1947)] = 57057, + [SMALL_STATE(1948)] = 57070, + [SMALL_STATE(1949)] = 57081, + [SMALL_STATE(1950)] = 57094, + [SMALL_STATE(1951)] = 57103, + [SMALL_STATE(1952)] = 57116, + [SMALL_STATE(1953)] = 57129, + [SMALL_STATE(1954)] = 57140, + [SMALL_STATE(1955)] = 57151, + [SMALL_STATE(1956)] = 57162, + [SMALL_STATE(1957)] = 57173, + [SMALL_STATE(1958)] = 57186, + [SMALL_STATE(1959)] = 57197, + [SMALL_STATE(1960)] = 57210, + [SMALL_STATE(1961)] = 57223, + [SMALL_STATE(1962)] = 57234, + [SMALL_STATE(1963)] = 57247, + [SMALL_STATE(1964)] = 57258, + [SMALL_STATE(1965)] = 57271, + [SMALL_STATE(1966)] = 57282, + [SMALL_STATE(1967)] = 57295, + [SMALL_STATE(1968)] = 57306, + [SMALL_STATE(1969)] = 57317, + [SMALL_STATE(1970)] = 57328, + [SMALL_STATE(1971)] = 57339, + [SMALL_STATE(1972)] = 57350, + [SMALL_STATE(1973)] = 57363, + [SMALL_STATE(1974)] = 57374, + [SMALL_STATE(1975)] = 57385, + [SMALL_STATE(1976)] = 57396, + [SMALL_STATE(1977)] = 57407, + [SMALL_STATE(1978)] = 57418, + [SMALL_STATE(1979)] = 57431, + [SMALL_STATE(1980)] = 57442, + [SMALL_STATE(1981)] = 57453, + [SMALL_STATE(1982)] = 57466, + [SMALL_STATE(1983)] = 57477, + [SMALL_STATE(1984)] = 57488, + [SMALL_STATE(1985)] = 57501, + [SMALL_STATE(1986)] = 57512, + [SMALL_STATE(1987)] = 57525, + [SMALL_STATE(1988)] = 57538, + [SMALL_STATE(1989)] = 57551, + [SMALL_STATE(1990)] = 57564, + [SMALL_STATE(1991)] = 57575, + [SMALL_STATE(1992)] = 57588, + [SMALL_STATE(1993)] = 57601, + [SMALL_STATE(1994)] = 57614, + [SMALL_STATE(1995)] = 57627, + [SMALL_STATE(1996)] = 57638, + [SMALL_STATE(1997)] = 57651, + [SMALL_STATE(1998)] = 57660, + [SMALL_STATE(1999)] = 57669, + [SMALL_STATE(2000)] = 57680, + [SMALL_STATE(2001)] = 57693, + [SMALL_STATE(2002)] = 57706, + [SMALL_STATE(2003)] = 57719, + [SMALL_STATE(2004)] = 57732, + [SMALL_STATE(2005)] = 57743, + [SMALL_STATE(2006)] = 57754, + [SMALL_STATE(2007)] = 57765, + [SMALL_STATE(2008)] = 57776, + [SMALL_STATE(2009)] = 57787, + [SMALL_STATE(2010)] = 57798, + [SMALL_STATE(2011)] = 57809, + [SMALL_STATE(2012)] = 57820, + [SMALL_STATE(2013)] = 57831, + [SMALL_STATE(2014)] = 57842, + [SMALL_STATE(2015)] = 57853, + [SMALL_STATE(2016)] = 57864, + [SMALL_STATE(2017)] = 57875, + [SMALL_STATE(2018)] = 57886, + [SMALL_STATE(2019)] = 57897, + [SMALL_STATE(2020)] = 57908, + [SMALL_STATE(2021)] = 57919, + [SMALL_STATE(2022)] = 57930, + [SMALL_STATE(2023)] = 57941, + [SMALL_STATE(2024)] = 57952, + [SMALL_STATE(2025)] = 57963, + [SMALL_STATE(2026)] = 57974, + [SMALL_STATE(2027)] = 57985, + [SMALL_STATE(2028)] = 57998, + [SMALL_STATE(2029)] = 58009, + [SMALL_STATE(2030)] = 58020, + [SMALL_STATE(2031)] = 58033, + [SMALL_STATE(2032)] = 58046, + [SMALL_STATE(2033)] = 58057, + [SMALL_STATE(2034)] = 58068, + [SMALL_STATE(2035)] = 58079, + [SMALL_STATE(2036)] = 58090, + [SMALL_STATE(2037)] = 58103, + [SMALL_STATE(2038)] = 58114, + [SMALL_STATE(2039)] = 58123, + [SMALL_STATE(2040)] = 58134, + [SMALL_STATE(2041)] = 58145, + [SMALL_STATE(2042)] = 58156, + [SMALL_STATE(2043)] = 58167, + [SMALL_STATE(2044)] = 58178, + [SMALL_STATE(2045)] = 58191, + [SMALL_STATE(2046)] = 58202, + [SMALL_STATE(2047)] = 58213, + [SMALL_STATE(2048)] = 58224, + [SMALL_STATE(2049)] = 58237, + [SMALL_STATE(2050)] = 58248, + [SMALL_STATE(2051)] = 58259, + [SMALL_STATE(2052)] = 58272, + [SMALL_STATE(2053)] = 58283, + [SMALL_STATE(2054)] = 58294, + [SMALL_STATE(2055)] = 58303, + [SMALL_STATE(2056)] = 58312, + [SMALL_STATE(2057)] = 58323, + [SMALL_STATE(2058)] = 58334, + [SMALL_STATE(2059)] = 58345, + [SMALL_STATE(2060)] = 58356, + [SMALL_STATE(2061)] = 58369, + [SMALL_STATE(2062)] = 58380, + [SMALL_STATE(2063)] = 58391, + [SMALL_STATE(2064)] = 58402, + [SMALL_STATE(2065)] = 58413, + [SMALL_STATE(2066)] = 58424, + [SMALL_STATE(2067)] = 58435, + [SMALL_STATE(2068)] = 58446, + [SMALL_STATE(2069)] = 58457, + [SMALL_STATE(2070)] = 58468, + [SMALL_STATE(2071)] = 58479, + [SMALL_STATE(2072)] = 58490, + [SMALL_STATE(2073)] = 58501, + [SMALL_STATE(2074)] = 58512, + [SMALL_STATE(2075)] = 58523, + [SMALL_STATE(2076)] = 58532, + [SMALL_STATE(2077)] = 58543, + [SMALL_STATE(2078)] = 58554, + [SMALL_STATE(2079)] = 58565, + [SMALL_STATE(2080)] = 58578, + [SMALL_STATE(2081)] = 58591, + [SMALL_STATE(2082)] = 58602, + [SMALL_STATE(2083)] = 58613, + [SMALL_STATE(2084)] = 58624, + [SMALL_STATE(2085)] = 58635, + [SMALL_STATE(2086)] = 58646, + [SMALL_STATE(2087)] = 58657, + [SMALL_STATE(2088)] = 58668, + [SMALL_STATE(2089)] = 58681, + [SMALL_STATE(2090)] = 58692, + [SMALL_STATE(2091)] = 58701, + [SMALL_STATE(2092)] = 58710, + [SMALL_STATE(2093)] = 58723, + [SMALL_STATE(2094)] = 58734, + [SMALL_STATE(2095)] = 58743, + [SMALL_STATE(2096)] = 58754, + [SMALL_STATE(2097)] = 58767, + [SMALL_STATE(2098)] = 58778, + [SMALL_STATE(2099)] = 58791, + [SMALL_STATE(2100)] = 58804, + [SMALL_STATE(2101)] = 58815, + [SMALL_STATE(2102)] = 58828, + [SMALL_STATE(2103)] = 58841, + [SMALL_STATE(2104)] = 58850, + [SMALL_STATE(2105)] = 58863, + [SMALL_STATE(2106)] = 58876, + [SMALL_STATE(2107)] = 58885, + [SMALL_STATE(2108)] = 58898, + [SMALL_STATE(2109)] = 58911, + [SMALL_STATE(2110)] = 58922, + [SMALL_STATE(2111)] = 58935, + [SMALL_STATE(2112)] = 58944, + [SMALL_STATE(2113)] = 58953, + [SMALL_STATE(2114)] = 58966, + [SMALL_STATE(2115)] = 58979, + [SMALL_STATE(2116)] = 58990, + [SMALL_STATE(2117)] = 59003, + [SMALL_STATE(2118)] = 59012, + [SMALL_STATE(2119)] = 59025, + [SMALL_STATE(2120)] = 59038, + [SMALL_STATE(2121)] = 59048, + [SMALL_STATE(2122)] = 59056, + [SMALL_STATE(2123)] = 59064, + [SMALL_STATE(2124)] = 59072, + [SMALL_STATE(2125)] = 59082, + [SMALL_STATE(2126)] = 59092, + [SMALL_STATE(2127)] = 59100, + [SMALL_STATE(2128)] = 59108, + [SMALL_STATE(2129)] = 59118, + [SMALL_STATE(2130)] = 59126, + [SMALL_STATE(2131)] = 59134, + [SMALL_STATE(2132)] = 59142, + [SMALL_STATE(2133)] = 59152, + [SMALL_STATE(2134)] = 59162, + [SMALL_STATE(2135)] = 59172, + [SMALL_STATE(2136)] = 59180, + [SMALL_STATE(2137)] = 59188, + [SMALL_STATE(2138)] = 59196, + [SMALL_STATE(2139)] = 59206, + [SMALL_STATE(2140)] = 59216, + [SMALL_STATE(2141)] = 59226, + [SMALL_STATE(2142)] = 59236, + [SMALL_STATE(2143)] = 59246, + [SMALL_STATE(2144)] = 59256, + [SMALL_STATE(2145)] = 59266, + [SMALL_STATE(2146)] = 59276, + [SMALL_STATE(2147)] = 59286, + [SMALL_STATE(2148)] = 59296, + [SMALL_STATE(2149)] = 59306, + [SMALL_STATE(2150)] = 59316, + [SMALL_STATE(2151)] = 59326, + [SMALL_STATE(2152)] = 59336, + [SMALL_STATE(2153)] = 59346, + [SMALL_STATE(2154)] = 59356, + [SMALL_STATE(2155)] = 59366, + [SMALL_STATE(2156)] = 59376, + [SMALL_STATE(2157)] = 59384, + [SMALL_STATE(2158)] = 59394, + [SMALL_STATE(2159)] = 59402, + [SMALL_STATE(2160)] = 59410, + [SMALL_STATE(2161)] = 59418, + [SMALL_STATE(2162)] = 59426, + [SMALL_STATE(2163)] = 59434, + [SMALL_STATE(2164)] = 59442, + [SMALL_STATE(2165)] = 59452, + [SMALL_STATE(2166)] = 59462, + [SMALL_STATE(2167)] = 59470, + [SMALL_STATE(2168)] = 59480, + [SMALL_STATE(2169)] = 59488, + [SMALL_STATE(2170)] = 59498, + [SMALL_STATE(2171)] = 59508, + [SMALL_STATE(2172)] = 59516, + [SMALL_STATE(2173)] = 59526, + [SMALL_STATE(2174)] = 59534, + [SMALL_STATE(2175)] = 59544, + [SMALL_STATE(2176)] = 59554, + [SMALL_STATE(2177)] = 59564, + [SMALL_STATE(2178)] = 59572, + [SMALL_STATE(2179)] = 59580, + [SMALL_STATE(2180)] = 59590, + [SMALL_STATE(2181)] = 59598, + [SMALL_STATE(2182)] = 59606, + [SMALL_STATE(2183)] = 59614, + [SMALL_STATE(2184)] = 59624, + [SMALL_STATE(2185)] = 59632, + [SMALL_STATE(2186)] = 59640, + [SMALL_STATE(2187)] = 59648, + [SMALL_STATE(2188)] = 59656, + [SMALL_STATE(2189)] = 59666, + [SMALL_STATE(2190)] = 59676, + [SMALL_STATE(2191)] = 59684, + [SMALL_STATE(2192)] = 59694, + [SMALL_STATE(2193)] = 59704, + [SMALL_STATE(2194)] = 59712, + [SMALL_STATE(2195)] = 59722, + [SMALL_STATE(2196)] = 59732, + [SMALL_STATE(2197)] = 59740, + [SMALL_STATE(2198)] = 59750, + [SMALL_STATE(2199)] = 59760, + [SMALL_STATE(2200)] = 59770, + [SMALL_STATE(2201)] = 59778, + [SMALL_STATE(2202)] = 59788, + [SMALL_STATE(2203)] = 59798, + [SMALL_STATE(2204)] = 59808, + [SMALL_STATE(2205)] = 59818, + [SMALL_STATE(2206)] = 59828, + [SMALL_STATE(2207)] = 59836, + [SMALL_STATE(2208)] = 59846, + [SMALL_STATE(2209)] = 59856, + [SMALL_STATE(2210)] = 59866, + [SMALL_STATE(2211)] = 59876, + [SMALL_STATE(2212)] = 59884, + [SMALL_STATE(2213)] = 59892, + [SMALL_STATE(2214)] = 59900, + [SMALL_STATE(2215)] = 59910, + [SMALL_STATE(2216)] = 59920, + [SMALL_STATE(2217)] = 59930, + [SMALL_STATE(2218)] = 59938, + [SMALL_STATE(2219)] = 59948, + [SMALL_STATE(2220)] = 59958, + [SMALL_STATE(2221)] = 59968, + [SMALL_STATE(2222)] = 59978, + [SMALL_STATE(2223)] = 59988, + [SMALL_STATE(2224)] = 59998, + [SMALL_STATE(2225)] = 60006, + [SMALL_STATE(2226)] = 60016, + [SMALL_STATE(2227)] = 60026, + [SMALL_STATE(2228)] = 60034, + [SMALL_STATE(2229)] = 60044, + [SMALL_STATE(2230)] = 60052, + [SMALL_STATE(2231)] = 60062, + [SMALL_STATE(2232)] = 60072, + [SMALL_STATE(2233)] = 60082, + [SMALL_STATE(2234)] = 60092, + [SMALL_STATE(2235)] = 60102, + [SMALL_STATE(2236)] = 60112, + [SMALL_STATE(2237)] = 60122, + [SMALL_STATE(2238)] = 60132, + [SMALL_STATE(2239)] = 60140, + [SMALL_STATE(2240)] = 60150, + [SMALL_STATE(2241)] = 60158, + [SMALL_STATE(2242)] = 60168, + [SMALL_STATE(2243)] = 60176, + [SMALL_STATE(2244)] = 60186, + [SMALL_STATE(2245)] = 60194, + [SMALL_STATE(2246)] = 60204, + [SMALL_STATE(2247)] = 60212, + [SMALL_STATE(2248)] = 60222, + [SMALL_STATE(2249)] = 60230, + [SMALL_STATE(2250)] = 60238, + [SMALL_STATE(2251)] = 60246, + [SMALL_STATE(2252)] = 60256, + [SMALL_STATE(2253)] = 60264, + [SMALL_STATE(2254)] = 60274, + [SMALL_STATE(2255)] = 60284, + [SMALL_STATE(2256)] = 60294, + [SMALL_STATE(2257)] = 60302, + [SMALL_STATE(2258)] = 60312, + [SMALL_STATE(2259)] = 60322, + [SMALL_STATE(2260)] = 60332, + [SMALL_STATE(2261)] = 60340, + [SMALL_STATE(2262)] = 60350, + [SMALL_STATE(2263)] = 60358, + [SMALL_STATE(2264)] = 60368, + [SMALL_STATE(2265)] = 60376, + [SMALL_STATE(2266)] = 60384, + [SMALL_STATE(2267)] = 60394, + [SMALL_STATE(2268)] = 60404, + [SMALL_STATE(2269)] = 60414, + [SMALL_STATE(2270)] = 60422, + [SMALL_STATE(2271)] = 60432, + [SMALL_STATE(2272)] = 60442, + [SMALL_STATE(2273)] = 60452, + [SMALL_STATE(2274)] = 60462, + [SMALL_STATE(2275)] = 60470, + [SMALL_STATE(2276)] = 60480, + [SMALL_STATE(2277)] = 60490, + [SMALL_STATE(2278)] = 60498, + [SMALL_STATE(2279)] = 60506, + [SMALL_STATE(2280)] = 60516, + [SMALL_STATE(2281)] = 60524, + [SMALL_STATE(2282)] = 60532, + [SMALL_STATE(2283)] = 60542, + [SMALL_STATE(2284)] = 60550, + [SMALL_STATE(2285)] = 60558, + [SMALL_STATE(2286)] = 60568, + [SMALL_STATE(2287)] = 60576, + [SMALL_STATE(2288)] = 60586, + [SMALL_STATE(2289)] = 60596, + [SMALL_STATE(2290)] = 60604, + [SMALL_STATE(2291)] = 60614, + [SMALL_STATE(2292)] = 60624, + [SMALL_STATE(2293)] = 60634, + [SMALL_STATE(2294)] = 60644, + [SMALL_STATE(2295)] = 60654, + [SMALL_STATE(2296)] = 60664, + [SMALL_STATE(2297)] = 60674, + [SMALL_STATE(2298)] = 60684, + [SMALL_STATE(2299)] = 60694, + [SMALL_STATE(2300)] = 60704, + [SMALL_STATE(2301)] = 60714, + [SMALL_STATE(2302)] = 60724, + [SMALL_STATE(2303)] = 60734, + [SMALL_STATE(2304)] = 60744, + [SMALL_STATE(2305)] = 60754, + [SMALL_STATE(2306)] = 60762, + [SMALL_STATE(2307)] = 60770, + [SMALL_STATE(2308)] = 60780, + [SMALL_STATE(2309)] = 60788, + [SMALL_STATE(2310)] = 60796, + [SMALL_STATE(2311)] = 60804, + [SMALL_STATE(2312)] = 60814, + [SMALL_STATE(2313)] = 60824, + [SMALL_STATE(2314)] = 60834, + [SMALL_STATE(2315)] = 60842, + [SMALL_STATE(2316)] = 60852, + [SMALL_STATE(2317)] = 60862, + [SMALL_STATE(2318)] = 60870, + [SMALL_STATE(2319)] = 60880, + [SMALL_STATE(2320)] = 60890, + [SMALL_STATE(2321)] = 60900, + [SMALL_STATE(2322)] = 60910, + [SMALL_STATE(2323)] = 60920, + [SMALL_STATE(2324)] = 60930, + [SMALL_STATE(2325)] = 60940, + [SMALL_STATE(2326)] = 60950, + [SMALL_STATE(2327)] = 60960, + [SMALL_STATE(2328)] = 60970, + [SMALL_STATE(2329)] = 60978, + [SMALL_STATE(2330)] = 60988, + [SMALL_STATE(2331)] = 60998, + [SMALL_STATE(2332)] = 61008, + [SMALL_STATE(2333)] = 61018, + [SMALL_STATE(2334)] = 61028, + [SMALL_STATE(2335)] = 61038, + [SMALL_STATE(2336)] = 61046, + [SMALL_STATE(2337)] = 61054, + [SMALL_STATE(2338)] = 61062, + [SMALL_STATE(2339)] = 61072, + [SMALL_STATE(2340)] = 61082, + [SMALL_STATE(2341)] = 61090, + [SMALL_STATE(2342)] = 61100, + [SMALL_STATE(2343)] = 61110, + [SMALL_STATE(2344)] = 61118, + [SMALL_STATE(2345)] = 61126, + [SMALL_STATE(2346)] = 61134, + [SMALL_STATE(2347)] = 61144, + [SMALL_STATE(2348)] = 61152, + [SMALL_STATE(2349)] = 61160, + [SMALL_STATE(2350)] = 61170, + [SMALL_STATE(2351)] = 61178, + [SMALL_STATE(2352)] = 61188, + [SMALL_STATE(2353)] = 61198, + [SMALL_STATE(2354)] = 61208, + [SMALL_STATE(2355)] = 61218, + [SMALL_STATE(2356)] = 61226, + [SMALL_STATE(2357)] = 61236, + [SMALL_STATE(2358)] = 61246, + [SMALL_STATE(2359)] = 61256, + [SMALL_STATE(2360)] = 61266, + [SMALL_STATE(2361)] = 61276, + [SMALL_STATE(2362)] = 61286, + [SMALL_STATE(2363)] = 61294, + [SMALL_STATE(2364)] = 61304, + [SMALL_STATE(2365)] = 61312, + [SMALL_STATE(2366)] = 61320, + [SMALL_STATE(2367)] = 61330, + [SMALL_STATE(2368)] = 61338, + [SMALL_STATE(2369)] = 61346, + [SMALL_STATE(2370)] = 61356, + [SMALL_STATE(2371)] = 61366, + [SMALL_STATE(2372)] = 61376, + [SMALL_STATE(2373)] = 61386, + [SMALL_STATE(2374)] = 61396, + [SMALL_STATE(2375)] = 61406, + [SMALL_STATE(2376)] = 61414, + [SMALL_STATE(2377)] = 61424, + [SMALL_STATE(2378)] = 61434, + [SMALL_STATE(2379)] = 61444, + [SMALL_STATE(2380)] = 61454, + [SMALL_STATE(2381)] = 61464, + [SMALL_STATE(2382)] = 61474, + [SMALL_STATE(2383)] = 61484, + [SMALL_STATE(2384)] = 61492, + [SMALL_STATE(2385)] = 61499, + [SMALL_STATE(2386)] = 61506, + [SMALL_STATE(2387)] = 61513, + [SMALL_STATE(2388)] = 61520, + [SMALL_STATE(2389)] = 61527, + [SMALL_STATE(2390)] = 61534, + [SMALL_STATE(2391)] = 61541, + [SMALL_STATE(2392)] = 61548, + [SMALL_STATE(2393)] = 61555, + [SMALL_STATE(2394)] = 61562, + [SMALL_STATE(2395)] = 61569, + [SMALL_STATE(2396)] = 61576, + [SMALL_STATE(2397)] = 61583, + [SMALL_STATE(2398)] = 61590, + [SMALL_STATE(2399)] = 61597, + [SMALL_STATE(2400)] = 61604, + [SMALL_STATE(2401)] = 61611, + [SMALL_STATE(2402)] = 61618, + [SMALL_STATE(2403)] = 61625, + [SMALL_STATE(2404)] = 61632, + [SMALL_STATE(2405)] = 61639, + [SMALL_STATE(2406)] = 61646, + [SMALL_STATE(2407)] = 61653, + [SMALL_STATE(2408)] = 61660, + [SMALL_STATE(2409)] = 61667, + [SMALL_STATE(2410)] = 61674, + [SMALL_STATE(2411)] = 61681, + [SMALL_STATE(2412)] = 61688, + [SMALL_STATE(2413)] = 61695, + [SMALL_STATE(2414)] = 61702, + [SMALL_STATE(2415)] = 61709, + [SMALL_STATE(2416)] = 61716, + [SMALL_STATE(2417)] = 61723, + [SMALL_STATE(2418)] = 61730, + [SMALL_STATE(2419)] = 61737, + [SMALL_STATE(2420)] = 61744, + [SMALL_STATE(2421)] = 61751, + [SMALL_STATE(2422)] = 61758, + [SMALL_STATE(2423)] = 61765, + [SMALL_STATE(2424)] = 61772, + [SMALL_STATE(2425)] = 61779, + [SMALL_STATE(2426)] = 61786, + [SMALL_STATE(2427)] = 61793, + [SMALL_STATE(2428)] = 61800, + [SMALL_STATE(2429)] = 61807, + [SMALL_STATE(2430)] = 61814, + [SMALL_STATE(2431)] = 61821, + [SMALL_STATE(2432)] = 61828, + [SMALL_STATE(2433)] = 61835, + [SMALL_STATE(2434)] = 61842, + [SMALL_STATE(2435)] = 61849, + [SMALL_STATE(2436)] = 61856, + [SMALL_STATE(2437)] = 61863, + [SMALL_STATE(2438)] = 61870, + [SMALL_STATE(2439)] = 61877, + [SMALL_STATE(2440)] = 61884, + [SMALL_STATE(2441)] = 61891, + [SMALL_STATE(2442)] = 61898, + [SMALL_STATE(2443)] = 61905, + [SMALL_STATE(2444)] = 61912, + [SMALL_STATE(2445)] = 61919, + [SMALL_STATE(2446)] = 61926, + [SMALL_STATE(2447)] = 61933, + [SMALL_STATE(2448)] = 61940, + [SMALL_STATE(2449)] = 61947, + [SMALL_STATE(2450)] = 61954, + [SMALL_STATE(2451)] = 61961, + [SMALL_STATE(2452)] = 61968, + [SMALL_STATE(2453)] = 61975, + [SMALL_STATE(2454)] = 61982, + [SMALL_STATE(2455)] = 61989, + [SMALL_STATE(2456)] = 61996, + [SMALL_STATE(2457)] = 62003, + [SMALL_STATE(2458)] = 62010, + [SMALL_STATE(2459)] = 62017, + [SMALL_STATE(2460)] = 62024, + [SMALL_STATE(2461)] = 62031, + [SMALL_STATE(2462)] = 62038, + [SMALL_STATE(2463)] = 62045, + [SMALL_STATE(2464)] = 62052, + [SMALL_STATE(2465)] = 62059, + [SMALL_STATE(2466)] = 62066, + [SMALL_STATE(2467)] = 62073, + [SMALL_STATE(2468)] = 62080, + [SMALL_STATE(2469)] = 62087, + [SMALL_STATE(2470)] = 62094, + [SMALL_STATE(2471)] = 62101, + [SMALL_STATE(2472)] = 62108, + [SMALL_STATE(2473)] = 62115, + [SMALL_STATE(2474)] = 62122, + [SMALL_STATE(2475)] = 62129, + [SMALL_STATE(2476)] = 62136, + [SMALL_STATE(2477)] = 62143, + [SMALL_STATE(2478)] = 62150, + [SMALL_STATE(2479)] = 62157, + [SMALL_STATE(2480)] = 62164, + [SMALL_STATE(2481)] = 62171, + [SMALL_STATE(2482)] = 62178, + [SMALL_STATE(2483)] = 62185, + [SMALL_STATE(2484)] = 62192, + [SMALL_STATE(2485)] = 62199, + [SMALL_STATE(2486)] = 62206, + [SMALL_STATE(2487)] = 62213, + [SMALL_STATE(2488)] = 62220, + [SMALL_STATE(2489)] = 62227, + [SMALL_STATE(2490)] = 62234, + [SMALL_STATE(2491)] = 62241, + [SMALL_STATE(2492)] = 62248, + [SMALL_STATE(2493)] = 62255, + [SMALL_STATE(2494)] = 62262, + [SMALL_STATE(2495)] = 62269, + [SMALL_STATE(2496)] = 62276, + [SMALL_STATE(2497)] = 62283, + [SMALL_STATE(2498)] = 62290, + [SMALL_STATE(2499)] = 62297, + [SMALL_STATE(2500)] = 62304, + [SMALL_STATE(2501)] = 62311, + [SMALL_STATE(2502)] = 62318, + [SMALL_STATE(2503)] = 62325, + [SMALL_STATE(2504)] = 62332, + [SMALL_STATE(2505)] = 62339, + [SMALL_STATE(2506)] = 62346, + [SMALL_STATE(2507)] = 62353, + [SMALL_STATE(2508)] = 62360, + [SMALL_STATE(2509)] = 62367, + [SMALL_STATE(2510)] = 62374, + [SMALL_STATE(2511)] = 62381, + [SMALL_STATE(2512)] = 62388, + [SMALL_STATE(2513)] = 62395, + [SMALL_STATE(2514)] = 62402, + [SMALL_STATE(2515)] = 62409, + [SMALL_STATE(2516)] = 62416, + [SMALL_STATE(2517)] = 62423, + [SMALL_STATE(2518)] = 62430, + [SMALL_STATE(2519)] = 62437, + [SMALL_STATE(2520)] = 62444, + [SMALL_STATE(2521)] = 62451, + [SMALL_STATE(2522)] = 62458, + [SMALL_STATE(2523)] = 62465, + [SMALL_STATE(2524)] = 62472, + [SMALL_STATE(2525)] = 62479, + [SMALL_STATE(2526)] = 62486, + [SMALL_STATE(2527)] = 62493, + [SMALL_STATE(2528)] = 62500, + [SMALL_STATE(2529)] = 62507, + [SMALL_STATE(2530)] = 62514, + [SMALL_STATE(2531)] = 62521, + [SMALL_STATE(2532)] = 62528, + [SMALL_STATE(2533)] = 62535, + [SMALL_STATE(2534)] = 62542, + [SMALL_STATE(2535)] = 62549, + [SMALL_STATE(2536)] = 62556, + [SMALL_STATE(2537)] = 62563, + [SMALL_STATE(2538)] = 62570, + [SMALL_STATE(2539)] = 62577, + [SMALL_STATE(2540)] = 62584, + [SMALL_STATE(2541)] = 62591, + [SMALL_STATE(2542)] = 62598, + [SMALL_STATE(2543)] = 62605, + [SMALL_STATE(2544)] = 62612, + [SMALL_STATE(2545)] = 62619, + [SMALL_STATE(2546)] = 62626, + [SMALL_STATE(2547)] = 62633, + [SMALL_STATE(2548)] = 62640, + [SMALL_STATE(2549)] = 62647, + [SMALL_STATE(2550)] = 62654, + [SMALL_STATE(2551)] = 62661, + [SMALL_STATE(2552)] = 62668, + [SMALL_STATE(2553)] = 62675, + [SMALL_STATE(2554)] = 62682, + [SMALL_STATE(2555)] = 62689, + [SMALL_STATE(2556)] = 62696, + [SMALL_STATE(2557)] = 62703, + [SMALL_STATE(2558)] = 62710, + [SMALL_STATE(2559)] = 62717, + [SMALL_STATE(2560)] = 62724, + [SMALL_STATE(2561)] = 62731, + [SMALL_STATE(2562)] = 62738, + [SMALL_STATE(2563)] = 62745, + [SMALL_STATE(2564)] = 62752, + [SMALL_STATE(2565)] = 62759, + [SMALL_STATE(2566)] = 62766, + [SMALL_STATE(2567)] = 62773, + [SMALL_STATE(2568)] = 62780, + [SMALL_STATE(2569)] = 62787, + [SMALL_STATE(2570)] = 62794, + [SMALL_STATE(2571)] = 62801, + [SMALL_STATE(2572)] = 62808, + [SMALL_STATE(2573)] = 62815, + [SMALL_STATE(2574)] = 62822, + [SMALL_STATE(2575)] = 62829, + [SMALL_STATE(2576)] = 62836, + [SMALL_STATE(2577)] = 62843, + [SMALL_STATE(2578)] = 62850, + [SMALL_STATE(2579)] = 62857, + [SMALL_STATE(2580)] = 62864, + [SMALL_STATE(2581)] = 62871, + [SMALL_STATE(2582)] = 62878, + [SMALL_STATE(2583)] = 62885, + [SMALL_STATE(2584)] = 62892, + [SMALL_STATE(2585)] = 62899, + [SMALL_STATE(2586)] = 62906, + [SMALL_STATE(2587)] = 62913, + [SMALL_STATE(2588)] = 62920, + [SMALL_STATE(2589)] = 62927, + [SMALL_STATE(2590)] = 62934, + [SMALL_STATE(2591)] = 62941, + [SMALL_STATE(2592)] = 62948, + [SMALL_STATE(2593)] = 62955, + [SMALL_STATE(2594)] = 62962, + [SMALL_STATE(2595)] = 62969, + [SMALL_STATE(2596)] = 62976, + [SMALL_STATE(2597)] = 62983, + [SMALL_STATE(2598)] = 62990, + [SMALL_STATE(2599)] = 62997, + [SMALL_STATE(2600)] = 63004, + [SMALL_STATE(2601)] = 63011, + [SMALL_STATE(2602)] = 63018, + [SMALL_STATE(2603)] = 63025, + [SMALL_STATE(2604)] = 63032, + [SMALL_STATE(2605)] = 63039, + [SMALL_STATE(2606)] = 63046, + [SMALL_STATE(2607)] = 63053, + [SMALL_STATE(2608)] = 63060, + [SMALL_STATE(2609)] = 63067, + [SMALL_STATE(2610)] = 63074, + [SMALL_STATE(2611)] = 63081, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [13] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [15] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(787), - [18] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(466), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1434), - [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1902), - [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1661), - [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1390), - [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1486), - [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1616), - [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2166), - [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2644), - [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2642), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2639), - [56] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2638), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1268), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1310), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1337), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1334), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1842), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(93), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2636), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(192), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2634), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2631), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2173), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2628), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(195), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(199), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(274), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2180), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2624), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2623), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2185), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2192), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2193), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(291), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(293), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(293), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(568), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(312), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(678), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(839), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2619), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(757), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1432), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2197), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1356), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1903), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1392), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1708), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(354), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(355), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(357), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 126), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 126), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(785), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(475), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1410), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1864), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1622), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1369), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1488), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1567), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2125), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(61), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2604), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2602), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2601), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2598), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1239), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1306), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1327), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1325), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1802), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(89), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2596), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2593), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2592), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1038), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2132), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2588), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(186), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(185), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(201), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(368), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2134), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(82), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2584), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2582), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2139), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2144), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2151), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(377), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(378), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(378), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(565), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(380), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(665), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(810), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2576), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(101), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(731), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1403), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2152), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1359), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1866), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1384), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1654), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(87), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(408), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(409), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(412), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(414), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 126), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 126), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 126), [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 126), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2645), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2253), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2653), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2544), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2249), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(723), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(859), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2494), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2311), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2408), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(80), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2408), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(80), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 159), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 159), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 177), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 177), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(2408), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 163), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 163), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 10), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 10), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 144), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 144), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 179), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 179), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2599), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2209), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2607), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2611), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2203), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(875), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(737), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2451), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2267), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2363), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(81), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2363), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(81), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 177), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 177), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 159), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 159), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(2363), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 163), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 163), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 10), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 10), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 170), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 170), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 39), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 144), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 144), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 133), [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 169), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 170), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 170), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 50), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 90), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 90), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 8), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 8), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 16), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 16), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 43), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 43), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 91), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 91), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 16), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 16), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 142), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 142), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 179), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 179), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 83), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 83), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 25), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 25), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 123), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 123), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 160), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 160), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 43), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 43), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 50), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 50), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 82), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 82), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 99), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 99), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 170), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 170), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 101), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 101), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 169), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 169), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 163), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 163), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 160), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 160), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 58), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 58), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 10), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 10), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 85), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 85), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 132), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 132), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 133), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 133), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 168), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 168), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 144), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 144), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 145), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 145), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 16), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 16), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 179), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 179), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 132), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 132), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 39), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 10), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 179), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 179), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 8), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 8), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 160), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 160), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 50), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 50), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 82), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 82), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 16), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 43), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 43), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 16), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 16), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 25), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 25), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 145), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 145), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 58), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 58), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 170), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 170), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 90), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 90), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 43), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 43), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 42), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 91), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 91), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 142), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 142), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 83), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 83), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 99), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 99), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 16), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 16), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 123), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 123), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 101), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 101), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 163), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 163), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 10), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 144), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 144), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 10), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 10), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 10), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 10), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 16), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 16), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 39), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 160), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 160), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 85), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 85), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 168), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 168), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 58), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 169), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 169), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 132), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 132), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 133), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 133), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 85), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 85), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 39), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 9), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2545), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1418), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(757), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1905), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2166), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(96), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2566), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(116), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2401), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1374), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2077), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1706), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 162), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 162), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 17), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 17), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 129), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 129), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 130), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 130), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 161), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 161), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 48), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 48), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 87), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 87), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 88), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 88), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 89), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 89), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 98), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 98), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 106), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 106), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 118), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 118), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 16), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 16), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 41), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 41), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 105), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 105), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 137), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 137), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 141), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 141), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 147), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 147), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 178), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 178), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 164), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 164), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 165), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 165), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 166), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 166), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 167), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 167), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 23), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 41), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 23), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 94), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 22), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 94), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 7), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 56), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 56), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 134), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 135), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 135), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 55), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2508), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1402), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(731), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1868), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2125), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(91), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2526), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(115), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2379), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1364), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2048), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1680), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 17), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 17), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 162), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 162), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 161), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 161), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 130), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 130), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 129), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 129), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 15), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 15), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 89), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 89), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 88), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 88), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 87), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 87), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 15), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 48), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 48), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 15), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 138), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 141), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 141), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 166), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 166), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 78), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 77), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 164), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 164), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 45), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 76), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 147), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 147), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 64), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 165), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 165), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 63), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 62), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 57), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 140), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3, .production_id = 20), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 139), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 137), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 137), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 136), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 95), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 45), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 96), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 16), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 16), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 97), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 98), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 98), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 104), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 12), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 105), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 105), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 106), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 106), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 45), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 118), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 118), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 34), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 167), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 167), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 41), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 41), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 178), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 178), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 45), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 37), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 21), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 19), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 54), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 21), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 19), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1315), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1268), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1310), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1317), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1314), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1309), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1315), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1447), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1529), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1636), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1268), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1310), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1317), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1314), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1309), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1432), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 27), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 174), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 155), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 74), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 153), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 171), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 107), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 151), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 150), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 149), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 172), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 180), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 148), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 173), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 124), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 109), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 131), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 49), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 125), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 117), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 111), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1488), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1447), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1529), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2430), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1460), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1483), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1465), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1454), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1466), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1432), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1427), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(344), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1428), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1425), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1514), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1750), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1425), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1514), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(344), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1428), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1425), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1750), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1425), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1432), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1488), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1460), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1483), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1465), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1454), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1466), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 80), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1307), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1239), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1306), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1308), + [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1058), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1302), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1307), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1421), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1520), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1605), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1239), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1306), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1308), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(650), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1403), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 27), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 74), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 148), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 150), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 149), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 131), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 117), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 180), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 125), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 124), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 151), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 111), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 109), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 153), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 107), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 155), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 174), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 173), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 172), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 49), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 171), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1461), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1421), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1520), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2387), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1462), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1444), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1452), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1333), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1436), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1403), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1415), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_heredoc_body, 2), SHIFT(1339), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(257), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1331), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1412), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1339), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1692), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1412), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(257), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1332), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1412), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1692), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1412), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1403), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1461), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1462), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1444), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1452), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1338), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1436), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 156), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 8), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 157), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 120), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 156), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 157), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 25), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(374), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1525), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1567), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1567), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1724), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 8), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 79), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 9), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(415), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1579), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1579), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1691), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 158), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 176), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 158), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 181), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 175), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 175), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 81), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 81), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 70), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 81), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 38), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 119), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__new_line, 1), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__new_line, 1), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 80), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(418), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1368), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1507), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1507), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1645), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 158), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 158), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 176), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 9), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 175), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 81), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 79), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 181), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 81), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 70), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 81), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 119), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(401), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1394), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1394), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1620), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 175), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 38), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 23), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 6), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1, .production_id = 5), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2633), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2225), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2587), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2197), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(230), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2355), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(286), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2397), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1, .production_id = 5), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2365), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(84), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2365), - [3364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(84), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3389] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), SHIFT(1328), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2532), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc_body, 2), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1847), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), - [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), SHIFT_REPEAT(2406), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1323), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1320), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1322), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1321), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 11), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1899), - [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1327), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2532), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1437), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2545), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2532), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(2365), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(1884), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1540), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(2112), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1922), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1417), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1446), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1328), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1328), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1923), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1626), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 3), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(148), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 4), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 13), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(151), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 18), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 24), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 28), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 29), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 30), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), - [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 46), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 47), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(157), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 47), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(144), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1433), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 51), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 59), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 61), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 66), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 67), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(769), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 69), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 72), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(819), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 47), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(150), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 75), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 102), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 108), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 35), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 32), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 113), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 114), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), - [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(156), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(241), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 128), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1748), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 128), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 152), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1758), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2220), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 154), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 127), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [4360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2220), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 115), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 112), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 110), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2545), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 68), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 65), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 9), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 40), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 52), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 60), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 14), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 92), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 100), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 103), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4744] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 146), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(2279), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), SHIFT(79), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(2279), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 16), SHIFT(79), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_union_type, 1), REDUCE(sym_intersection_type, 1), SHIFT(1316), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2480), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(1638), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc_body, 2), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1318), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2480), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1312), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1426), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1315), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), SHIFT_REPEAT(2361), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 86), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 11), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2508), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 86), SHIFT_REPEAT(2279), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2480), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1314), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1313), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 33), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1558), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1423), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1316), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1418), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1883), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1882), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1511), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(2088), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1316), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 3), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(143), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 4), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 13), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(148), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 18), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 24), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 28), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 30), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 31), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 42), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 29), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 46), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 47), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(155), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(151), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1417), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 51), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 59), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 61), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 66), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 67), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(773), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 69), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 71), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 72), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 73), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 47), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(836), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 47), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(145), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 102), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 75), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 108), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 113), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 35), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 32), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 114), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 116), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 16), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(154), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(407), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 128), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 128), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1701), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 152), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1814), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2183), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 154), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2183), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 127), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 115), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 112), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 110), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2508), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 3), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 68), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 65), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 9), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 40), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 52), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 60), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 14), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 92), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 100), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 103), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4734] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 146), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), }; enum ts_external_scanner_symbol_identifiers { @@ -141188,7 +130525,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_sentinel_error] = sym_sentinel_error, }; -static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[14][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token_encapsed_string_chars] = true, @@ -141214,13 +130551,13 @@ static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_encapsed_string_chars_heredoc] = true, }, [5] = { - [ts_external_token_encapsed_string_chars] = true, - }, - [6] = { [ts_external_token_encapsed_string_chars_heredoc] = true, [ts_external_token_encapsed_string_chars_after_variable_heredoc] = true, [ts_external_token_heredoc_end] = true, }, + [6] = { + [ts_external_token_encapsed_string_chars] = true, + }, [7] = { [ts_external_token_execution_string_chars] = true, }, @@ -141233,19 +130570,16 @@ static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_execution_string_chars_after_variable] = true, }, [10] = { - [ts_external_token__eof] = true, + [ts_external_token_heredoc_end] = true, + [ts_external_token_nowdoc_string] = true, }, [11] = { [ts_external_token_heredoc_end] = true, }, [12] = { - [ts_external_token_heredoc_end] = true, - [ts_external_token_nowdoc_string] = true, - }, - [13] = { [ts_external_token_heredoc_start] = true, }, - [14] = { + [13] = { [ts_external_token_nowdoc_string] = true, }, }; diff --git a/php_only/test/corpus/php_only.txt b/php_only/test/corpus/php_only.txt new file mode 100644 index 00000000..e0b69825 --- /dev/null +++ b/php_only/test/corpus/php_only.txt @@ -0,0 +1,59 @@ +============================== +If statement +============================== + +if ($a==0) { + echo "bad"; +} elseif ($a==3) { + echo "bad"; +} else { + echo "good"; +} + +--- + +(program + (if_statement + condition: (parenthesized_expression (binary_expression + left: (variable_name (name)) + right: (integer))) + body: (compound_statement (echo_statement (encapsed_string (string_value)))) + alternative: (else_if_clause + condition: (parenthesized_expression (binary_expression + left: (variable_name (name)) + right: (integer))) + body: (compound_statement (echo_statement (encapsed_string (string_value))))) + alternative: (else_clause + body: (compound_statement (echo_statement (encapsed_string (string_value))))))) + +========================================= +Class +========================================= + +class A { + public function a() {} + abstract public function b(); +} + +--- + +(program + (class_declaration + (name) + (declaration_list + (method_declaration + (visibility_modifier) + (name) + (formal_parameters) + (compound_statement) + ) + (method_declaration + (abstract_modifier) + (visibility_modifier) + (name) + (formal_parameters) + ) + ) + ) +) +